diff -Nru kodi-pvr-vbox-8.1.2/azure-pipelines.yml kodi-pvr-vbox-19.0.0/azure-pipelines.yml --- kodi-pvr-vbox-8.1.2/azure-pipelines.yml 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/azure-pipelines.yml 2013-05-31 22:59:22.000000000 +0000 @@ -46,7 +46,7 @@ - script: | cd .. - git clone --branch master --depth=1 https://github.com/xbmc/xbmc.git kodi + git clone --branch Matrix --depth=1 https://github.com/xbmc/xbmc.git kodi cd $(Build.SourcesDirectory) mkdir build cd build diff -Nru kodi-pvr-vbox-8.1.2/debian/changelog kodi-pvr-vbox-19.0.0/debian/changelog --- kodi-pvr-vbox-8.1.2/debian/changelog 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/debian/changelog 2013-05-31 22:59:22.000000000 +0000 @@ -1,4 +1,4 @@ -kodi-pvr-vbox (8.1.2-1~bionic) bionic; urgency=low +kodi-pvr-vbox (19.0.0-1~bionic) bionic; urgency=low [ kodi ] * autogenerated dummy changelog diff -Nru kodi-pvr-vbox-8.1.2/debian/copyright kodi-pvr-vbox-19.0.0/debian/copyright --- kodi-pvr-vbox-8.1.2/debian/copyright 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/debian/copyright 2013-05-31 22:59:22.000000000 +0000 @@ -3,7 +3,7 @@ Source: https://github.com/kodi-pvr/pvr.vbox Files: * -Copyright: 2015-2020 Team Kodi +Copyright: 2015-2021 Team Kodi 2015 Sam Stenvall License: GPL-2+ This package is free software; you can redistribute it and/or modify @@ -24,7 +24,7 @@ Files: debian/* -Copyright: 2020 Team Kodi +Copyright: 2020-2021 Team Kodi 2013 Arne Morten Kvarving 2013 wsnipex License: GPL-2+ diff -Nru kodi-pvr-vbox-8.1.2/debian/rules kodi-pvr-vbox-19.0.0/debian/rules --- kodi-pvr-vbox-8.1.2/debian/rules 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/debian/rules 2013-05-31 22:59:22.000000000 +0000 @@ -10,13 +10,10 @@ #export DH_VERBOSE=1 %: - dh $@ + dh $@ override_dh_auto_configure: - dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1 -DUSE_LTO=1 - -override_dh_strip: - dh_strip -pkodi-pvr-vbox --dbg-package=kodi-pvr-vbox-dbg + dh_auto_configure -- -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_SHARED_LIBS=1 -DUSE_LTO=1 override_dh_installdocs: dh_installdocs --link-doc=kodi-pvr-vbox diff -Nru kodi-pvr-vbox-8.1.2/debian/source/format kodi-pvr-vbox-19.0.0/debian/source/format --- kodi-pvr-vbox-8.1.2/debian/source/format 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/debian/source/format 2013-05-31 22:59:22.000000000 +0000 @@ -1 +1 @@ -3.0 (quilt) +3.0 (native) diff -Nru kodi-pvr-vbox-8.1.2/.github/workflows/build.yml kodi-pvr-vbox-19.0.0/.github/workflows/build.yml --- kodi-pvr-vbox-8.1.2/.github/workflows/build.yml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/.github/workflows/build.yml 2013-05-31 22:59:22.000000000 +0000 @@ -0,0 +1,61 @@ +name: Build and run tests +on: [push, pull_request] +env: + app_id: pvr.vbox + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + include: + - name: "Debian package test" + os: ubuntu-18.04 + CC: gcc + CXX: g++ + DEBIAN_BUILD: true + #- os: ubuntu-18.04 + #CC: gcc + #CXX: g++ + #- os: ubuntu-18.04 + #CC: clang + #CXX: clang++ + #- os: macos-10.15 + steps: + - name: Install needed ubuntu depends + env: + DEBIAN_BUILD: ${{ matrix.DEBIAN_BUILD }} + run: | + if [[ $DEBIAN_BUILD == true ]]; then sudo add-apt-repository -y ppa:team-xbmc/ppa; fi + if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get update; fi + if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get install fakeroot; fi + - name: Checkout Kodi repo + uses: actions/checkout@v2 + with: + repository: xbmc/xbmc + ref: Matrix + path: xbmc + - name: Checkout pvr.vbox repo + uses: actions/checkout@v2 + with: + path: ${{ env.app_id }} + - name: Configure + env: + CC: ${{ matrix.CC }} + CXX: ${{ matrix.CXX }} + DEBIAN_BUILD: ${{ matrix.DEBIAN_BUILD }} + run: | + if [[ $DEBIAN_BUILD != true ]]; then cd ${app_id} && mkdir -p build && cd build; fi + if [[ $DEBIAN_BUILD != true ]]; then cmake -DADDONS_TO_BUILD=${app_id} -DADDON_SRC_PREFIX=${{ github.workspace }} -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/xbmc/addons -DPACKAGE_ZIP=1 ${{ github.workspace }}/xbmc/cmake/addons; fi + if [[ $DEBIAN_BUILD == true ]]; then wget https://raw.githubusercontent.com/xbmc/xbmc/Matrix/xbmc/addons/kodi-dev-kit/tools/debian-addon-package-test.sh && chmod +x ./debian-addon-package-test.sh; fi + if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get build-dep ${{ github.workspace }}/${app_id}; fi + - name: Build + env: + CC: ${{ matrix.CC }} + CXX: ${{ matrix.CXX }} + DEBIAN_BUILD: ${{ matrix.DEBIAN_BUILD }} + run: | + if [[ $DEBIAN_BUILD != true ]]; then cd ${app_id}/build; fi + if [[ $DEBIAN_BUILD != true ]]; then make; fi + if [[ $DEBIAN_BUILD == true ]]; then ./debian-addon-package-test.sh ${{ github.workspace }}/${app_id}; fi diff -Nru kodi-pvr-vbox-8.1.2/.github/workflows/changelog-and-release.yml kodi-pvr-vbox-19.0.0/.github/workflows/changelog-and-release.yml --- kodi-pvr-vbox-8.1.2/.github/workflows/changelog-and-release.yml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/.github/workflows/changelog-and-release.yml 2013-05-31 22:59:22.000000000 +0000 @@ -0,0 +1,149 @@ +name: Changelog and Release +# Update the changelog and news(optionally), bump the version, and create a release +# +# The release is created on the given branch, release and tag name format will be - and +# the body of the release will be created from the changelog.txt or news element in the addon.xml.in +# +# options: +# - version_type: 'minor' / 'micro' # whether to do a minor or micro version bump +# - changelog_text: string to add to the changelog and news +# - update_news: 'true' / 'false' # whether to update the news in the addon.xml.in +# - add_date: 'true' / 'false' # Add date to version number in changelog and news. ie. v1.0.1 (2021-7-17) + +on: + workflow_dispatch: + inputs: + version_type: + description: 'Create a ''minor'' or ''micro'' release?' + required: true + default: 'minor' + changelog_text: + description: 'Input the changes you''d like to add to the changelogs. Your text should be encapsulated in "''s with line feeds represented by literal \n''s. ie. "This is the first change\nThis is the second change"' + required: true + default: '' + update_news: + description: 'Update news in addon.xml.in? [true|false]' + required: true + default: 'true' + add_date: + description: 'Add date to version number in changelog and news. ie. "v1.0.1 (2021-7-17)" [true|false]' + required: true + default: 'false' + +jobs: + default: + runs-on: ubuntu-latest + name: Changelog and Release + + steps: + + # Checkout the current repository into a directory (repositories name) + - name: Checkout Repository + uses: actions/checkout@v2 + with: + fetch-depth: 0 + path: ${{ github.event.repository.name }} + + # Checkout the required scripts from kodi-pvr/pvr-scripts into the 'scripts' directory + - name: Checkout Scripts + uses: actions/checkout@v2 + with: + fetch-depth: 0 + repository: kodi-pvr/pvr-scripts + path: scripts + + # Install all dependencies required by the following steps + # - libxml2-utils, xmlstarlet: reading news and version from addon.xml.in + - name: Install dependencies + run: | + sudo apt-get install libxml2-utils xmlstarlet + + # Setup python version 3.9 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.9' + + # Run the python script to increment the version, changelog and news + - name: Increment version and update changelogs + run: | + arguments= + if [[ ${{ github.event.inputs.update_news }} == true ]] ; + then + arguments=$(echo $arguments && echo --update-news) + fi + if [[ ${{ github.event.inputs.add_date }} == true ]] ; + then + arguments=$(echo $arguments && echo --add-date) + fi + python3 ../scripts/changelog_and_release.py ${{ github.event.inputs.version_type }} ${{ github.event.inputs.changelog_text }} $arguments + working-directory: ${{ github.event.repository.name }} + + # Create the variables required by the following steps + # - steps.required-variables.outputs.changes: latest entry in the changelog.txt (if exists), or addon.xml.in news element + # - steps.required-variables.outputs.version: version element from addon.xml.in + # - steps.required-variables.outputs.branch: branch of the triggering ref + # - steps.required-variables.outputs.today: today's date in format '%Y-%m-%d' + - name: Get required variables + id: required-variables + run: | + changes=$(cat "$(find . -name changelog.txt)" | awk -v RS= 'NR==1') + if [ -z "$changes" ] ; + then + changes=$(xmlstarlet fo -R "$(find . -name addon.xml.in)" | xmlstarlet sel -t -v 'string(/addon/extension/news)' | awk -v RS= 'NR==1') + fi + changes="${changes//'%'/'%25'}" + changes="${changes//$'\n'/'%0A'}" + changes="${changes//$'\r'/'%0D'}" + changes="${changes//$'\\n'/'%0A'}" + changes="${changes//$'\\r'/'%0D'}" + echo ::set-output name=changes::$changes + version=$(xmlstarlet fo -R "$(find . -name addon.xml.in)" | xmlstarlet sel -t -v 'string(/addon/@version)') + echo ::set-output name=version::$version + branch=$(echo ${GITHUB_REF#refs/heads/}) + echo ::set-output name=branch::$branch + echo ::set-output name=today::$(date +'%Y-%m-%d') + working-directory: ${{ github.event.repository.name }} + + # Create a commit of the incremented version and changelog, news changes + # Commit message (add_date=false): changelog and version v{steps.required-variables.outputs.version} + # Commit message (add_date=true): changelog and version v{steps.required-variables.outputs.version} ({steps.required-variables.outputs.today}) + - name: Commit changes + run: | + git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + commit_message="changelog and version v${{ steps.required-variables.outputs.version }}" + if [[ ${{ github.event.inputs.add_date }} == true ]] ; + then + commit_message="$commit_message (${{ steps.required-variables.outputs.today }})" + fi + git commit -m "$commit_message" -a + working-directory: ${{ github.event.repository.name }} + + # Push the commit(s) created above to the triggering branch + - name: Push changes + uses: ad-m/github-push-action@master + with: + branch: ${{ github.ref }} + directory: ${{ github.event.repository.name }} + + # Sleep for 60 seconds to allow for any delays in the push + - name: Sleep for 60 seconds + run: sleep 60s + shell: bash + + # Create a release at {steps.required-variables.outputs.branch} + # - tag and release name format: {steps.required-variables.outputs.version}-{steps.required-variables.outputs.branch} ie. 1.0.0-Matrix + # - release body: {steps.required-variables.outputs.changes} + - name: Create Release + id: create-release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.required-variables.outputs.version }}-${{ steps.required-variables.outputs.branch }} + release_name: ${{ steps.required-variables.outputs.version }}-${{ steps.required-variables.outputs.branch }} + body: ${{ steps.required-variables.outputs.changes }} + draft: false + prerelease: false + commitish: ${{ steps.required-variables.outputs.branch }} diff -Nru kodi-pvr-vbox-8.1.2/.github/workflows/increment-version.yml kodi-pvr-vbox-19.0.0/.github/workflows/increment-version.yml --- kodi-pvr-vbox-8.1.2/.github/workflows/increment-version.yml 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/.github/workflows/increment-version.yml 2013-05-31 22:59:22.000000000 +0000 @@ -37,15 +37,26 @@ - name: Increment add-on version run: | - python3 ../scripts/binary/increment_version.py $HOME/files.json + python3 ../scripts/binary/increment_version.py $HOME/files.json -c -n + working-directory: ${{ github.event.repository.name }} + + - name: Install dependencies + run: | + sudo apt-get install libxml2-utils xmlstarlet + + - name: Get required variables + id: required-variables + run: | + version=$(xmlstarlet fo -R "$(find . -name addon.xml.in)" | xmlstarlet sel -t -v 'string(/addon/@version)') + echo ::set-output name=version::$version working-directory: ${{ github.event.repository.name }} - name: Create PR for incrementing add-on versions uses: peter-evans/create-pull-request@v3.10.0 with: - commit-message: Add-on version incremented - title: Add-on version incremented + commit-message: Add-on version incremented to ${{ steps.required-variables.outputs.version }} from Weblate + title: Add-on version incremented to ${{ steps.required-variables.outputs.version }} from Weblate body: Add-on version incremented triggered by ${{ github.sha }} branch: inc-ver delete-branch: true - path: ./${{ github.event.repository.name }} \ No newline at end of file + path: ./${{ github.event.repository.name }} diff -Nru kodi-pvr-vbox-8.1.2/.github/workflows/release.yml kodi-pvr-vbox-19.0.0/.github/workflows/release.yml --- kodi-pvr-vbox-8.1.2/.github/workflows/release.yml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/.github/workflows/release.yml 2013-05-31 22:59:22.000000000 +0000 @@ -0,0 +1,66 @@ +name: Make Release +# Create a release on the given branch +# Release and tag name format will be - +# The body of the release will be created from the changelog.txt or news element in the addon.xml.in + +on: workflow_dispatch + +jobs: + default: + runs-on: ubuntu-latest + name: Make Release + + steps: + + # Checkout the current repository into a directory (repositories name) + - name: Checkout Repository + uses: actions/checkout@v2 + with: + fetch-depth: 0 + path: ${{ github.event.repository.name }} + + # Install all dependencies required by the following steps + # - libxml2-utils, xmlstarlet: reading news and version from addon.xml.in + - name: Install dependencies + run: | + sudo apt-get install libxml2-utils xmlstarlet + + # Create the variables required by the following steps + # - steps.required-variables.outputs.changes: latest entry in the changelog.txt (if exists), or addon.xml.in news element + # - steps.required-variables.outputs.version: version element from addon.xml.in + # - steps.required-variables.outputs.branch: branch of the triggering ref + - name: Get required variables + id: required-variables + run: | + changes=$(cat "$(find . -name changelog.txt)" | awk -v RS= 'NR==1') + if [ -z "$changes" ] ; + then + changes=$(xmlstarlet fo -R "$(find . -name addon.xml.in)" | xmlstarlet sel -t -v 'string(/addon/extension/news)' | awk -v RS= 'NR==1') + fi + changes="${changes//'%'/'%25'}" + changes="${changes//$'\n'/'%0A'}" + changes="${changes//$'\r'/'%0D'}" + changes="${changes//$'\\n'/'%0A'}" + changes="${changes//$'\\r'/'%0D'}" + echo ::set-output name=changes::$changes + version=$(xmlstarlet fo -R "$(find . -name addon.xml.in)" | xmlstarlet sel -t -v 'string(/addon/@version)') + echo ::set-output name=version::$version + branch=$(echo ${GITHUB_REF#refs/heads/}) + echo ::set-output name=branch::$branch + working-directory: ${{ github.event.repository.name }} + + # Create a release at {steps.required-variables.outputs.branch} + # - tag and release name format: {steps.required-variables.outputs.version}-{steps.required-variables.outputs.branch} ie. 1.0.0-Matrix + # - release body: {steps.required-variables.outputs.changes} + - name: Create Release + id: create-release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.required-variables.outputs.version }}-${{ steps.required-variables.outputs.branch }} + release_name: ${{ steps.required-variables.outputs.version }}-${{ steps.required-variables.outputs.branch }} + body: ${{ steps.required-variables.outputs.changes }} + draft: false + prerelease: false + commitish: ${{ steps.required-variables.outputs.branch }} diff -Nru kodi-pvr-vbox-8.1.2/.github/workflows/sync-addon-metadata-translations.yml kodi-pvr-vbox-19.0.0/.github/workflows/sync-addon-metadata-translations.yml --- kodi-pvr-vbox-8.1.2/.github/workflows/sync-addon-metadata-translations.yml 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/.github/workflows/sync-addon-metadata-translations.yml 2013-05-31 22:59:22.000000000 +0000 @@ -4,7 +4,7 @@ push: branches: [ Matrix, Nexus ] paths: - - '**addon.xml' + - '**addon.xml.in' - '**resource.language.**strings.po' jobs: diff -Nru kodi-pvr-vbox-8.1.2/.gitignore kodi-pvr-vbox-19.0.0/.gitignore --- kodi-pvr-vbox-8.1.2/.gitignore 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/.gitignore 1970-01-01 00:00:00.000000000 +0000 @@ -1,50 +0,0 @@ -# build artifacts -build/ -pvr.*/addon.xml - -# Debian build files -debian/changelog -debian/files -debian/*.log -debian/*.substvars -debian/.debhelper/ -debian/tmp/ -debian/kodi-pvr-*/ -obj-x86_64-linux-gnu/ - -# commonly used editors -# vim -*.swp - -# Eclipse -*.project -*.cproject -.classpath -*.sublime-* -.settings/ - -# KDevelop 4 -*.kdev4 - -# gedit -*~ - -# CLion -/.idea - -# clion -.idea/ - -# to prevent add after a "git format-patch VALUE" and "git add ." call -/*.patch - -# Visual Studio Code -.vscode - -# to prevent add if project code opened by Visual Studio over CMake file -.vs/ - -# General MacOS -.DS_Store -.AppleDouble -.LSOverride diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/addon.xml.in kodi-pvr-vbox-19.0.0/pvr.vbox/addon.xml.in --- kodi-pvr-vbox-8.1.2/pvr.vbox/addon.xml.in 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/addon.xml.in 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ @@ -9,6 +9,20 @@ point="kodi.pvrclient" library_@PLATFORM@="@LIBRARY_FILENAME@"/> + @PLATFORM@ + GPL-2.0-or-later + https://github.com/kodi-pvr/pvr.vbox + https://forum.kodi.tv/forumdisplay.php?fid=233 + + icon.png + + +v19.0.0 +- Changed test builds to 'Kodi 19 Matrix' +- Increased version to 19.0.0 + - With start of Kodi 20 Nexus, takes addon as major the same version number as Kodi. + This done to know easier to which Kodi the addon works. + PVR byvoegsel vir VBox Home TV Gateways Клиент за ПВР за „VBox Home TV Gateways“ Doplněk PVR pro VBox Home TV Gateways @@ -93,16 +107,5 @@ Bu, VBox Communications'ın XTi TV Ağ Geçitleriyle arayüz oluşturmak için bir PVR eklentisidir. İzleme, kayıt ve zaman kayması gibi beklediğiniz tüm temel işlevleri destekler. Ayrıca, harici XMLTV verileri ile havadan kılavuz verilerinin artırılmasını da destekler. 此 PVR 插件是 VBox 通信的 XTi 电视网关的接口。它支持你所需要的所有基本功能,如观看、录像和时光平移,还支持通过外部 XMLTV 数据增强 OTA 指南数据。 這是為了與 VBox Communications XTi TV Gateways 界接而開發的 PVR 附加元件。它支援你想得到的基本功能,如觀賞、錄影及時間平移。另外它還支援即時節目表與外部 XMLTV 資料結合。 - @PLATFORM@ - GPL-2.0-or-later - https://github.com/kodi-pvr/pvr.vbox - https://forum.kodi.tv/forumdisplay.php?fid=233 - - icon.png - - -v8.1.2 -- Language update from Weblate - diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/changelog.txt kodi-pvr-vbox-19.0.0/pvr.vbox/changelog.txt --- kodi-pvr-vbox-8.1.2/pvr.vbox/changelog.txt 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/changelog.txt 2013-05-31 22:59:22.000000000 +0000 @@ -1,3 +1,9 @@ +v19.0.0 +- Changed test builds to 'Kodi 19 Matrix' +- Increased version to 19.0.0 + - With start of Kodi 20 Nexus, takes addon as major the same version number as Kodi. + This done to know easier to which Kodi the addon works. + v8.1.2 - Language update from Weblate diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.af_za/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.af_za/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.af_za/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.af_za/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR byvoegsel vir VBox Home TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Hierdie is 'n PVR byvoegsel om met VBox Communications' XTi TV Gateways te koppel. Dit ondersteun al die basiese funksionaliteit wat jy sal verwag, soos kyk, opneem en tydskuif. Addisioneel ondersteun dit die aanvul van die oor-die-lug gids data met eksterne XMLTV data." + msgctxt "#30000" msgid "Local network" msgstr "Lokale netwerk" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.am_et/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.am_et/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.am_et/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.am_et/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -17,6 +17,14 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.7\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "የ አካባቢ ኔትዎርክ" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ar_sa/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ar_sa/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ar_sa/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ar_sa/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "الشبكة المحلية" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.az_az/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.az_az/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.az_az/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.az_az/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + # ################## # ################## msgctxt "#30000" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.be_by/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.be_by/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.be_by/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.be_by/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Лакальная сетка" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.bg_bg/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.bg_bg/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.bg_bg/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.bg_bg/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Клиент за ПВР за „VBox Home TV Gateways“" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Това е добавка за ПВР за връзка с устройствата „XTi TV Gateway“ на „VBox Communications“. Тя поддържа цялата основна функционалност, която може да се очаква, като: гледане, записване и отместване във времето. Освен това, тя поддържа и обогатяване на справочника, достъпен чрез телевизионния сигнал, с данни от външен източник, използващ формата XMLTV." + msgctxt "#30000" msgid "Local network" msgstr "Локална мрежа" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.bs_ba/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.bs_ba/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.bs_ba/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.bs_ba/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Lokalna mreža" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ca_es/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ca_es/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ca_es/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ca_es/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Xarxa local" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.cs_cz/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.cs_cz/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.cs_cz/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.cs_cz/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Doplněk PVR pro VBox Home TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Toto je doplněk PVR addon pro propojení s VBox Communications' XTi TV Gateways. Podporuje všechny základní funkce, které byste očekávali, jako je sledování, nahrávání a časový posun. Navíc podporuje rozšíření vzduchem šířených dat televizního programu o externí data XMLTV." + msgctxt "#30000" msgid "Local network" msgstr "Místní síť" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.cy_gb/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.cy_gb/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.cy_gb/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.cy_gb/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Rhwydwaith lleol" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.da_dk/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.da_dk/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.da_dk/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.da_dk/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -7,14 +7,23 @@ "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/xbmc/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Kodi Translation Team\n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/kodi-main/language/da_DK/)\n" -"Language: da_DK\n" +"PO-Revision-Date: 2021-08-27 01:29+0000\n" +"Last-Translator: Christian Gade \n" +"Language-Team: Danish \n" +"Language: da_dk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.8\n" + +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR addon for VBOX Home Tv Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Dette er et PVR addon, der kommunikerer med VBox Communications' XTi TV Gateways. Det understøtter alle simple funktioner, så som at se, optage og tidsforskydelse. Derudover, understøtter det over-the-air tv-guide data med eksternt XMLTV data." msgctxt "#30000" msgid "Local network" @@ -34,11 +43,11 @@ msgctxt "#30004" msgid "Connection timeout" -msgstr "" +msgstr "Tidsfrist for forbindelse" msgctxt "#30005" msgid "HTTPS port (set to 0 to use plain HTTP)" -msgstr "" +msgstr "HTTPS-port (indstillet til 0 for at bruge almindelig HTTP)" msgctxt "#30006" msgid "Connection" @@ -51,7 +60,7 @@ # empty strings from id 30008 to 30019 msgctxt "#30020" msgid "Channel & EPG" -msgstr "" +msgstr "Kanal og EPG" msgctxt "#30021" msgid "Channels" @@ -67,11 +76,11 @@ msgctxt "#30024" msgid "LCN (Logical Channel Number) from backend" -msgstr "LCN (Logical Channel Number) fra motor" +msgstr "LCN (Logical Channel Number) fra backend" msgctxt "#30025" msgid "Channel index in backend" -msgstr "Kanalindeks i motor" +msgstr "Kanalindeks i backend" msgctxt "#30026" msgid "Reminder time (minutes before program starts)" @@ -79,7 +88,7 @@ msgctxt "#30027" msgid "Skip initial EPG load" -msgstr "" +msgstr "Spring den første indlæsning af EPG over" msgctxt "#30040" msgid "Timeshift" @@ -107,7 +116,7 @@ msgctxt "#30111" msgid "Manual reminder" -msgstr "Manuel huskeseddel" +msgstr "Manuel påmindelse" msgctxt "#30112" msgid "Cancel reminder (if exists)" @@ -121,11 +130,11 @@ # help info - Connection msgctxt "#30600" msgid "Contains settings for connecting to the VBox device from both your local network and from the internet. A local connection will be attempted first and if unsuccessful the internet settings will be used." -msgstr "" +msgstr "Indeholder indstillinger for tilslutning til VBox-enheden fra både dit lokale netværk og fra internettet. En lokal forbindelse vil først blive forsøgt, og hvis det ikke lykkes, vil internetindstillingerne blive brugt." msgctxt "#30601" msgid "The IP address or hostname of your VBox when accessed from the local network." -msgstr "" +msgstr "IP-adressen eller værtsnavnet på din VBox ved tilgang fra det lokale netværk." msgctxt "#30602" msgid "The port used to connect to your VBox when accessed from the local network. Default value is `80`." diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.de_de/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.de_de/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.de_de/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.de_de/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR Addon für VBox Home TV Zugang" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Mit diesem Addon ist es möglich sich mit VBox Kommunikation XTiTv Zugängen zu verbinden. Es unterstützt dabei die Grundeinstellungen, wie anschauen, Aufnahme und Timeshift. Zusätzlich wird das vergrößern der Over the air Programmdaten mit externen XMLTV Daten unterstützt." + msgctxt "#30000" msgid "Local network" msgstr "Lokales Netzwerk" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.el_gr/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.el_gr/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.el_gr/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.el_gr/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Πρόσθετο PVR για VBox Home TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Αυτό είναι ένα πρόσθετο του PVR για τη διασύνδεση με VBox Επικοινωνιών' XTi TV Gateways . Υποστηρίζει όλες τις βασικές λειτουργίες που θα περιμένατε , όπως η παρακολούθηση, καταγραφή και timeshifting . Επιπλέον, υποστηρίζει τα αυξητικά δεδομένα over-the-air οδηγού με τα εξωτερικά δεδομένα XMLTV ." + msgctxt "#30000" msgid "Local network" msgstr "Τοπικό δίκτυο" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.en_au/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.en_au/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.en_au/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.en_au/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Local network" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.en_gb/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.en_gb/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.en_gb/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.en_gb/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + ################### ################### diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.en_nz/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.en_nz/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.en_nz/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.en_nz/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR addon for VBox Home TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." + msgctxt "#30000" msgid "Local network" msgstr "Local network" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.en_us/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.en_us/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.en_us/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.en_us/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR addon for VBox Home TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." + msgctxt "#30000" msgid "Local network" msgstr "Local network" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.eo/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.eo/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.eo/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.eo/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "LAN" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.es_ar/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.es_ar/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.es_ar/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.es_ar/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Red local" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.es_es/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.es_es/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.es_es/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.es_es/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Add-on PVR para salidas VBox Home TV" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Este es un add-on PVR que sirve como interfaz para Equipos Communications' XTi TV. Soporta toda la funcionalidad básica como ver, grabar y timeshift. Adicionalmente, aumenta la información de la guía OTA con datos externos XMLTV." + msgctxt "#30000" msgid "Local network" msgstr "Red local" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.es_mx/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.es_mx/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.es_mx/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.es_mx/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR complemento para VBox Home TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Este es un complemento PVR para la interfaz con las pasarelas XTi TV de VBox Communications. Soporta todas las funciones básicas que se esperan, como ver, grabar y cambiar de tiempo. Además, soporta el aumento de los datos de guía de sobre el aire con datos XMLTV externos." + msgctxt "#30000" msgid "Local network" msgstr "Red Local" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.et_ee/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.et_ee/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.et_ee/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.et_ee/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR'i lisa VBox Home TV Gateways'le" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Kohtvõrk" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.eu_es/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.eu_es/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.eu_es/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.eu_es/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR addon-a VBox Home TV Gateway-entzako" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Sare lokala" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.fa_af/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.fa_af/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.fa_af/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.fa_af/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + # ################## # ################## msgctxt "#30000" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.fa_ir/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.fa_ir/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.fa_ir/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.fa_ir/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "شبکه محلی" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.fi_fi/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.fi_fi/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.fi_fi/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.fi_fi/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Kodin Vbox Home TV Gateway -asiakasohjelma" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Tämä PVR-lisäosa on tarkoitettu käytettäväksi VBox Communications XTi -laitteiden kanssa. Se tukee kaikkia perusominaisuuksia, kuten tv-lähetysten katsomista, tallentamista ja ajansiirtoa. Lisäksi se tukee XMLTV-formaatissa olevia ohjelmatietoja." + msgctxt "#30000" msgid "Local network" msgstr "Paikallisverkosta" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.fo_fo/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.fo_fo/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.fo_fo/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.fo_fo/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Lokalt net" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.fr_ca/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.fr_ca/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.fr_ca/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.fr_ca/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Addiciel de numériscope pour les passerelles «  Home TV » de VBox" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Un addiciel de numériscope assurant l’interface avec les passerelles «  XTi TV » de VBox Communications. Il prend en charge toutes les fonctions de base que vous pourriez attendre, telles que regarder, enregistrer, ainsi que le décalage temporel. De plus, il prend en charge l’augmentation des données du guide télédiffusé avec les données XMLTV." + msgctxt "#30000" msgid "Local network" msgstr "Réseau Local" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.fr_fr/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.fr_fr/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.fr_fr/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.fr_fr/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -17,6 +17,14 @@ "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.7\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Extension enregistreur vidéo (PVR) pour les passerelles de TV domestique VBox" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Ceci est une extension d'enregistreur vidéo (PVR) s'interfaçant avec les passerelles TV XTi de VBox Communications. L'extension permet les fonctionnalités attendues de base, comme le visionnage, l'enregistrement et le différé. De plus, elle propose d'ajouter des données externes XMLTV au guide électronique des programmes TV diffusé." + msgctxt "#30000" msgid "Local network" msgstr "Réseau local" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.gl_es/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.gl_es/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.gl_es/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.gl_es/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Engadido PVR para gateways de VBox Home" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Este engadido é un PVR para interactuar con gateways de VBox Communications' XTi TV. Soporte todas as funcionalidades básicas que poderías agardar, como ver, gravar e mudar o tempo. A maiores, tamén permite aumentar a guía en directo con datos externos XMLTV." + msgctxt "#30000" msgid "Local network" msgstr "Rede local" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.he_il/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.he_il/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.he_il/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.he_il/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "לקוח טלוויזיה חיה עבור VBox Home TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "לקוח טלוויזיה חיה זה מיועד להתממשקות עם XTi TV Gateways של VBox Communications. הלקוח כולל את כל היכולות הבסיסיות המתבקשות כמו צפייה בשידור חי ובהקלטות, תזמון הקלטות וטיימשיפט. ניתן אף לצרף מידע מלוח שידורים חיצוני בפורמט XMLTV בנוסף על המידע הנקלט עם הערוצים." + msgctxt "#30000" msgid "Local network" msgstr "רשת מקומית" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.hi_in/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.hi_in/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.hi_in/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.hi_in/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "स्थानीय नेटवर्क" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.hr_hr/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.hr_hr/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.hr_hr/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.hr_hr/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR dodatak za VBox Home TV pristup" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Ovo je PVR dodatak za interakciju s VBox Communications' XTi TV pristupnicima. Podržava osnovne funkcije koje su vam potrebne, poput gledanja, snimanja i premotavanja. Dodatno, podržava proširenje EPG vodiča s dodatnim XMLTV podacima." + msgctxt "#30000" msgid "Local network" msgstr "Lokalna mreža" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.hu_hu/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.hu_hu/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.hu_hu/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.hu_hu/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -17,6 +17,14 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR kiegészítő a VBox Home TV beltéri egységhez" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Ez a PVR kiegészítő összeköti a VBox Communications' XTi TV beltéri egységgel. Támogatja az alap funkciókat ami elvárható, úgymint adás, felvétel és csúsztatott felvétel. Támogatja még az elektronikus műsorújságot, az adás előtt kiegészítve az XMLTV adatokkal." + msgctxt "#30000" msgid "Local network" msgstr "Helyi hálózat" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.hy_am/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.hy_am/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.hy_am/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.hy_am/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Լոկալ ցանց" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.id_id/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.id_id/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.id_id/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.id_id/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -17,6 +17,14 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.7\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Addon PVR untuk VBox Depan TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Ini adalah addon PVR untuk berinteraksi dengan VBox Communications 'XTi TV Gateway. Mendukung semua fungsi dasar yang Anda harapkan, seperti menonton, merekam dan timeshifting. Selain itu, menambah dukungan panduan data melalui-the-air dengan data XMLTV eksternal." + msgctxt "#30000" msgid "Local network" msgstr "LAN" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.is_is/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.is_is/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.is_is/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.is_is/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR-upptökuviðbót fyrir VBox Home TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Þetta er upptöku-viðbót til að tengjast VBox Communications' XTi TV Gateways. Hún styður allar grunnaðgerðir sem þú gerir ráð fyrir, eins og að horfa á, taka upp og tímaflakk. Að auki styður það að bæta við dagskrárvísinn, sem kemur í gegnum loftnetið, upplýsingum frá útværum XMLTV gögnum." + msgctxt "#30000" msgid "Local network" msgstr "Staðarnet" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.it_it/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.it_it/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.it_it/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.it_it/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Add-on PVR per Gateway VBox Home TV" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Questo è un Add-on PVR per interfacciarsi con i Gateway XTi TV di VBox Communications. Supporta tutte le funzionalità base che ti aspetti, come guardare, registrare e mettere in pausa. In più, supporta l'integrazione dei dati della guida via radio con dati esterni XMLTV." + msgctxt "#30000" msgid "Local network" msgstr "Rete locale" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ja_jp/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ja_jp/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ja_jp/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ja_jp/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "ローカル ネットワーク" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ko_kr/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ko_kr/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ko_kr/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ko_kr/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -7,14 +7,23 @@ "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/xbmc/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Kodi Translation Team\n" -"Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/kodi-main/language/ko_KR/)\n" -"Language: ko_KR\n" +"PO-Revision-Date: 2021-08-27 01:29+0000\n" +"Last-Translator: Minho Park \n" +"Language-Team: Korean \n" +"Language: ko_kr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.8\n" + +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "VBox 홈 TV 게이트웨이용 PVR 애드온" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "VBox Communications의 XTi TV 게이트웨이와의 인터페이스를 위한 PVR 애드온입니다. 시청, 녹화와 타임 시프트등 기본적인 기능들은 모두 지원합니다. 추가로 Over-the-air 가이드 데이터에 외부 XMLTV 데이터를 더하는 것을 지원합니다." msgctxt "#30000" msgid "Local network" @@ -162,7 +171,7 @@ msgctxt "#30620" msgid "Settings related to Channels & EPG." -msgstr "채널과 EPG 관련 설정" +msgstr "채널과 EPG에 관련된 설정입니다." msgctxt "#30621" msgid "Channel numbers can be set via either of the following two options: [LCN (Logical Channel Number) from backend] The channel numbers as set on the backend; [Channel index in backend] Starting from 1 number the channels as per the order they appear on the backend." diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.lt_lt/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.lt_lt/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.lt_lt/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.lt_lt/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR priedas skirtas VBox namų televizijos tinklų sietuvams" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Tai yra PVR priedas, skirtas susieti su VBox Communications' XTi TV tinklų sietuvais. Jis palaiko visus pagrindinius funkcionalumus, kurių galite tikėtis, tokius kaip žiūrėjimas, įrašymas ir laiko paslinkimas. Papildomai jis palaiko oru perduodamus gido duomenis su išoriniais XMLTV duomenimis." + msgctxt "#30000" msgid "Local network" msgstr "Vietinis tinklas" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.lv_lv/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.lv_lv/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.lv_lv/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.lv_lv/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR pielikums uz VBox Home TV Gateway" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Šis ir PVR pielikums saskarnei ar VBox Communications XTi TV vārtejām. Tas atbalsta visu pamata funkcionalitāti, ko varētu sagaidīt, piemēram, skatīšanos, ierakstīšanu, laika nobīdi. Piedevām tas atbalsta pa gaisu saņemtu datu papildināšanu ar ārējiem XMLTV datiem." + msgctxt "#30000" msgid "Local network" msgstr "Lokālais tīkls" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.mi/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.mi/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.mi/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.mi/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Whatunga paetata" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.mk_mk/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.mk_mk/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.mk_mk/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.mk_mk/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Локална мрежа" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ml_in/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ml_in/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ml_in/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ml_in/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,8 +16,16 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -################### -################### +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + +# ################## +# ################## msgctxt "#30000" msgid "Local network" msgstr "" @@ -50,7 +58,7 @@ msgid "Internet" msgstr "" -#empty strings from id 30008 to 30019 +# empty strings from id 30008 to 30019 msgctxt "#30020" msgid "Channel & EPG" msgstr "" @@ -83,7 +91,7 @@ msgid "Skip initial EPG load" msgstr "" -#empty strings from id 30028 to 30039 +# empty strings from id 30028 to 30039 msgctxt "#30040" msgid "Timeshift" msgstr "" @@ -96,9 +104,9 @@ msgid "Timeshift buffer path" msgstr "" -#empty strings from id 30043 to 30105 -############# -############# +# empty strings from id 30043 to 30105 +# ############ +# ############ msgctxt "#30106" msgid "VBox device rescan of EPG (will take a while)" msgstr "" @@ -107,7 +115,7 @@ msgid "Sync EPG" msgstr "" -#empty strings from id 30108 to 30109 +# empty strings from id 30108 to 30109 msgctxt "#30110" msgid "Remind me" msgstr "" @@ -124,8 +132,8 @@ msgid "Cancel all the channel's reminders" msgstr "" -#empty strings from id 30114 to 30599 -#help info - Connection +# empty strings from id 30114 to 30599 +# help info - Connection msgctxt "#30600" msgid "Contains settings for connecting to the VBox device from both your local network and from the internet. A local connection will be attempted first and if unsuccessful the internet settings will be used." msgstr "" @@ -170,7 +178,7 @@ msgid "The value used (in seconds) to denote when a connection attempt has failed when accessed from the internet. Default value is `10`." msgstr "" -#empty strings from id 30611 to 30619 +# empty strings from id 30611 to 30619 msgctxt "#30620" msgid "Settings related to Channels & EPG." msgstr "" @@ -187,7 +195,7 @@ msgid "Ignore the initial EPG load. Enabled by default to prevent crash issues on LibreElec/CoreElec." msgstr "" -#empty strings from id 30624 to 30639 +# empty strings from id 30624 to 30639 msgctxt "#30640" msgid "Settings related to the timeshift." msgstr "" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.mn_mn/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.mn_mn/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.mn_mn/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.mn_mn/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Дотоод сүлжээ" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ms_my/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ms_my/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ms_my/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ms_my/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Tambahan PVR untuk " + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Ia adalah tambahan PVR untuk pengantaramukaan dengan VBox Communications' XTi TV Gateways. Ia menyokong semua kefungsian asas yang anda jangkakan, seperti menonton, merakam dan anjak masa. Selain itu, ia menyokong augmentasi menerusi data panduan ke-udara dengan data XMLTV luaran." + msgctxt "#30000" msgid "Local network" msgstr "Rangkaian setempat" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.mt_mt/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.mt_mt/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.mt_mt/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.mt_mt/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || ( n%100>1 && n%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "LAN" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.my_mm/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.my_mm/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.my_mm/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.my_mm/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Local network" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.nb_no/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.nb_no/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.nb_no/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.nb_no/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PRV utvidelse til VBox Hjemme-TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Dette er en PVR-utvidelse for grensesnitt med VBox Kommunikasjons'XTI TV Gateways. Den støtter all grunnleggende forventet funksjonalitet, som å se på, opptak og tidsforskyving. I tillegg støtter den forsterkning av direktesendt guide-informasjon med ekstern XMLTV-informasjon." + msgctxt "#30000" msgid "Local network" msgstr "Lokalt nettverk" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.nl_nl/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.nl_nl/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.nl_nl/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.nl_nl/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR-add-on voor VBox Home TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Dit is een PVR addon voor verbinden met VBox communications XTi TV Gateways. Het ondersteunt alle basisfunctionaliteiten die je mag verwachten, zoals kijken, opnemen en tijdsprongen. Overig, het ondersteunt de over-the-air gidsdata met externe XML TV data." + msgctxt "#30000" msgid "Local network" msgstr "Lokaal netwerk" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.pl_pl/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.pl_pl/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.pl_pl/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.pl_pl/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Klient telewizji dla bramek VBox Home TV " + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Klient telewizji współpracujący z bramkami VBox Communications' XTi TV. Obsługuje transmisję kanałów telewizyjnych, nagrywanie oraz funkcje przewodnika telewizyjnego. Dodatkowo umożliwia rozszerzanie informacji przewodnika nadawanych razem z sygnałem telewizyjnych o informacje z zewnętrznych źródeł XMLTV." + msgctxt "#30000" msgid "Local network" msgstr "Sieć lokalna" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.pt_br/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.pt_br/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.pt_br/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.pt_br/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Addon de PVR para VBox Home TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Este é um addon de PVR para interface com Gateway do VBox Communications XtI TV. Suporta as funcionalidades básicas que você espera, como assistir, gravar e timeshifting. Adicionalmente, podes obter dados do guia Over-the-air ou dados externos via arquivo XMLTV." + msgctxt "#30000" msgid "Local network" msgstr "Rede Local" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.pt_pt/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.pt_pt/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.pt_pt/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.pt_pt/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Add-on PVR para Acessos de TV VBox" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "O add-on de PVR é um interface de comunicação da VBox às Gateways XTi TV. Suporta todas as funcionalidades básicas esperadas pelo utilizador, tais como ver, gravar e ver mais tarde. Além disso suporta o aumento do over-the-air de dados de programação externos com o XMLTV." + msgctxt "#30000" msgid "Local network" msgstr "Rede local" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ro_ro/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ro_ro/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ro_ro/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ro_ro/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Supliment PVR pentru receptoarele VBox Home" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Acesta este un supliment PVR pentru conectarea cu receptoarele XTi ale celor de la VBox Communications. Suportă toate funcționalitățile de bază pe care le-ați aștepta, cum este privirea, înregistrarea și decalajul temporal. Adițional, suportă îmbunătățirea datelor ghidului venit prin aer cu cele dintr-un fișier XMLTV extern." + msgctxt "#30000" msgid "Local network" msgstr "Rețea locală" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ru_ru/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ru_ru/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ru_ru/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ru_ru/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR дополнение для VBox Home TV Gateways" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Это PVR дополнение для взаимодействия с VBox Communications' XTi TV Gateways. Поддерживает все базовые функции такие как просмотр, запись и таймшифт. Кроме того, поддерживает дополнение эфирной телепрограммы данными из внешнего XMLTV." + msgctxt "#30000" msgid "Local network" msgstr "Локальная сеть" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.si_lk/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.si_lk/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.si_lk/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.si_lk/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "ස්ථානික ජාලය" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.sk_sk/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.sk_sk/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.sk_sk/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.sk_sk/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR doplnok pre VBox Home TV" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Toto je doplnok PVR určenýn na prepojenie s bránami softvéru VBox Communications XTi TV. Podporuje všetky základné funkcie ako je sledovanie vysielania, nahrávanie a posun v čase. Okrem toho podporuje aj rozširovanie údajov vzduchom šíreného sprievodcu o externé údaje XMLTV." + msgctxt "#30000" msgid "Local network" msgstr "Miestna sieť" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.sl_si/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.sl_si/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.sl_si/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.sl_si/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Dodatek PVR za VBox Home TV Gateway" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "To je dodatek PVR za komunikacijo s TV prehodi XTi podjetja VBox Communications. Podpira vse temeljne funkcionalnosti, ki jih pričakujete, kot je gledanje, snemanje in časovni zamik. Poleg tega podpira bogatenje podatkov vodnika z zunanjimi podatki XMLTV." + msgctxt "#30000" msgid "Local network" msgstr "Krajevno omrežje" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.sq_al/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.sq_al/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.sq_al/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.sq_al/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Rrejti lokal" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.sr_rs/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.sr_rs/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.sr_rs/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.sr_rs/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR додатни програм за VBox Кућни ТВ Мрежни Пролаз" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Ово је PVR додатни програм за повезивање VBox Communications' XTi ТВ Мрежним Пролазима. Подржава све основне функционалности које бисте очекивали, као што је гледање, снимање и временски померај. Додатно, подржава увећање over-the-air података водича са спољашњим XMLTV подацима." + msgctxt "#30000" msgid "Local network" msgstr "Локална мрежа" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.sr_rs@latin/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.sr_rs@latin/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.sr_rs@latin/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.sr_rs@latin/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR dodatni program za VBox Kućni TV Mrežni Prolaz" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Ovo je PVR dodatni program za povezivanje VBox Communications' XTi TV Mrežnim Prolazima. Podržava sve osnovne funkcionalnosti koje biste očekivali, kao što je gledanje, snimanje i vremenski pomeraj. Dodatno, podržava uvećanje over-the-air podataka vodiča sa spoljašnjim XMLTV podacima." + msgctxt "#30000" msgid "Local network" msgstr "Lokalna mreža" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.sv_se/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.sv_se/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.sv_se/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.sv_se/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -17,6 +17,14 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "PVR-tillägg för VBox Home TV-gateway" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Detta är ett PVR-tillägg för kommunikation med XTi TV-gateways från VBox Communications. Det stöder all förväntad grundläggande funktionalitet, som visning, inspelning och timeshift. Det stöder dessutom förbättring av signalburen guidedata via extern XMLTV-data." + msgctxt "#30000" msgid "Local network" msgstr "Lokalt nätverk" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.szl/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.szl/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.szl/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.szl/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "Przidŏwka PVR dlŏ bram VBox Home TV" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "To je przidŏwka PVR do pojsrzedniczyniŏ ze XTi TV Gateway ôd VBox Communications. Podpiyrŏ wszyjske ajnfachowe funkcyje, kerych by szło ôczekiwać: ôbziyraniy, nagrywaniy, timeshifting. Ôkrōm tego, ôd przidŏwaniŏ zewnyntrznych datōw XMLTV podpiyrŏ rozszyrzowanie EPG ôd dostŏwcy." + msgctxt "#30000" msgid "Local network" msgstr "Lokalny nec" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ta_in/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ta_in/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.ta_in/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.ta_in/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "குறும்பரப்புப் பிணையம்" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.te_in/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.te_in/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.te_in/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.te_in/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + # ################## # ################## msgctxt "#30000" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.tg_tj/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.tg_tj/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.tg_tj/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.tg_tj/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Шабакаи маҳаллӣ" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.th_th/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.th_th/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.th_th/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.th_th/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "เครือข่ายท้องถิ่น" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.tr_tr/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.tr_tr/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.tr_tr/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.tr_tr/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "VBox Ev TV Ağ Geçitleri için PVR eklentisi" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "Bu, VBox Communications'ın XTi TV Ağ Geçitleriyle arayüz oluşturmak için bir PVR eklentisidir. İzleme, kayıt ve zaman kayması gibi beklediğiniz tüm temel işlevleri destekler. Ayrıca, harici XMLTV verileri ile havadan kılavuz verilerinin artırılmasını da destekler." + msgctxt "#30000" msgid "Local network" msgstr "Yerel ağ" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.uk_ua/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.uk_ua/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.uk_ua/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.uk_ua/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Локальна мережа" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.uz_uz/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.uz_uz/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.uz_uz/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.uz_uz/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Mahalliy tarmoq" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.vi_vn/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.vi_vn/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.vi_vn/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.vi_vn/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "" + msgctxt "#30000" msgid "Local network" msgstr "Mạng nội bộ" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.zh_cn/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.zh_cn/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.zh_cn/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.zh_cn/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "VBox 家庭电视网关的 PVR 插件" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "此 PVR 插件是 VBox 通信的 XTi 电视网关的接口。它支持你所需要的所有基本功能,如观看、录像和时光平移,还支持通过外部 XMLTV 数据增强 OTA 指南数据。" + msgctxt "#30000" msgid "Local network" msgstr "局域网" diff -Nru kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.zh_tw/strings.po kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.zh_tw/strings.po --- kodi-pvr-vbox-8.1.2/pvr.vbox/resources/language/resource.language.zh_tw/strings.po 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/pvr.vbox/resources/language/resource.language.zh_tw/strings.po 2013-05-31 22:59:22.000000000 +0000 @@ -16,6 +16,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "PVR addon for VBox Home TV Gateways" +msgstr "VBox Home TV Gateways 的 PVR 附加元件" + +msgctxt "Addon Description" +msgid "This is a PVR addon for interfacing with VBox Communications' XTi TV Gateways. It supports all the basic functionality you would expect, such as watching, recording and timeshifting. Additionally, it supports augmenting the over-the-air guide data with external XMLTV data." +msgstr "這是為了與 VBox Communications XTi TV Gateways 界接而開發的 PVR 附加元件。它支援你想得到的基本功能,如觀賞、錄影及時間平移。另外它還支援即時節目表與外部 XMLTV 資料結合。" + msgctxt "#30000" msgid "Local network" msgstr "區域網路" diff -Nru kodi-pvr-vbox-8.1.2/README.md kodi-pvr-vbox-19.0.0/README.md --- kodi-pvr-vbox-8.1.2/README.md 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/README.md 2013-05-31 22:59:22.000000000 +0000 @@ -1,5 +1,5 @@ [![License: GPL-2.0-or-later](https://img.shields.io/badge/License-GPL%20v2+-blue.svg)](LICENSE.md) -[![Build Status](https://travis-ci.org/kodi-pvr/pvr.vbox.svg?branch=Matrix)](https://travis-ci.org/kodi-pvr/pvr.vbox/branches) +[![Build and run tests](https://github.com/kodi-pvr/pvr.vbox/actions/workflows/build.yml/badge.svg?branch=Matrix)](https://github.com/kodi-pvr/pvr.vbox/actions/workflows/build.yml) [![Build Status](https://dev.azure.com/teamkodi/kodi-pvr/_apis/build/status/kodi-pvr.pvr.vbox?branchName=Matrix)](https://dev.azure.com/teamkodi/kodi-pvr/_build/latest?definitionId=70&branchName=Matrix) [![Build Status](https://jenkins.kodi.tv/view/Addons/job/kodi-pvr/job/pvr.vbox/job/Matrix/badge/icon)](https://jenkins.kodi.tv/blue/organizations/jenkins/kodi-pvr%2Fpvr.vbox/branches/) [![Coverity Scan Build Status](https://scan.coverity.com/projects/5120/badge.svg)](https://scan.coverity.com/projects/5120) @@ -12,8 +12,8 @@ ### Linux -1. `git clone --branch master https://github.com/xbmc/xbmc.git` -2. `git clone https://github.com/kodi-pvr/pvr.vbox.git` +1. `git clone --branch Matrix https://github.com/xbmc/xbmc.git` +2. `git clone --branch Matrix https://github.com/kodi-pvr/pvr.vbox.git` 3. `cd pvr.vbox && mkdir build && cd build` 4. `cmake -DADDONS_TO_BUILD=pvr.vbox -DADDON_SRC_PREFIX=../.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../../xbmc/kodi-build/addons -DPACKAGE_ZIP=1 ../../xbmc/cmake/addons` 5. `make` diff -Nru kodi-pvr-vbox-8.1.2/src/addon.cpp kodi-pvr-vbox-19.0.0/src/addon.cpp --- kodi-pvr-vbox-8.1.2/src/addon.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/addon.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/addon.h kodi-pvr-vbox-19.0.0/src/addon.h --- kodi-pvr-vbox-8.1.2/src/addon.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/addon.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/timeshift/Buffer.cpp kodi-pvr-vbox-19.0.0/src/timeshift/Buffer.cpp --- kodi-pvr-vbox-8.1.2/src/timeshift/Buffer.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/timeshift/Buffer.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,23 +1,10 @@ /* -* Copyright (C) 2015 Sam Stenvall -* -* This Program is free software; you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation; either version 2, or (at your option) -* any later version. -* -* This Program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with XBMC; see the file COPYING. If not, write to -* the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, -* MA 02110-1301 USA -* http://www.gnu.org/copyleft/gpl.html -* -*/ + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) + * Copyright (C) 2015 Sam Stenvall + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSE.md for more information. + */ #include "Buffer.h" diff -Nru kodi-pvr-vbox-8.1.2/src/timeshift/Buffer.h kodi-pvr-vbox-19.0.0/src/timeshift/Buffer.h --- kodi-pvr-vbox-8.1.2/src/timeshift/Buffer.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/timeshift/Buffer.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,24 +1,12 @@ -#pragma once /* -* Copyright (C) 2015 Sam Stenvall -* -* This Program is free software; you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation; either version 2, or (at your option) -* any later version. -* -* This Program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with XBMC; see the file COPYING. If not, write to -* the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, -* MA 02110-1301 USA -* http://www.gnu.org/copyleft/gpl.html -* -*/ + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) + * Copyright (C) 2015 Sam Stenvall + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSE.md for more information. + */ + +#pragma once #include #include diff -Nru kodi-pvr-vbox-8.1.2/src/timeshift/DummyBuffer.cpp kodi-pvr-vbox-19.0.0/src/timeshift/DummyBuffer.cpp --- kodi-pvr-vbox-8.1.2/src/timeshift/DummyBuffer.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/timeshift/DummyBuffer.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,23 +1,10 @@ /* -* Copyright (C) 2015 Sam Stenvall -* -* This Program is free software; you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation; either version 2, or (at your option) -* any later version. -* -* This Program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with XBMC; see the file COPYING. If not, write to -* the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, -* MA 02110-1301 USA -* http://www.gnu.org/copyleft/gpl.html -* -*/ + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) + * Copyright (C) 2015 Sam Stenvall + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSE.md for more information. + */ #include "DummyBuffer.h" diff -Nru kodi-pvr-vbox-8.1.2/src/timeshift/DummyBuffer.h kodi-pvr-vbox-19.0.0/src/timeshift/DummyBuffer.h --- kodi-pvr-vbox-8.1.2/src/timeshift/DummyBuffer.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/timeshift/DummyBuffer.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,24 +1,12 @@ -#pragma once /* -* Copyright (C) 2015 Sam Stenvall -* -* This Program is free software; you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation; either version 2, or (at your option) -* any later version. -* -* This Program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with XBMC; see the file COPYING. If not, write to -* the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, -* MA 02110-1301 USA -* http://www.gnu.org/copyleft/gpl.html -* -*/ + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) + * Copyright (C) 2015 Sam Stenvall + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSE.md for more information. + */ + +#pragma once #include "Buffer.h" diff -Nru kodi-pvr-vbox-8.1.2/src/timeshift/FilesystemBuffer.cpp kodi-pvr-vbox-19.0.0/src/timeshift/FilesystemBuffer.cpp --- kodi-pvr-vbox-8.1.2/src/timeshift/FilesystemBuffer.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/timeshift/FilesystemBuffer.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,23 +1,10 @@ /* -* Copyright (C) 2015 Sam Stenvall -* -* This Program is free software; you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation; either version 2, or (at your option) -* any later version. -* -* This Program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with XBMC; see the file COPYING. If not, write to -* the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, -* MA 02110-1301 USA -* http://www.gnu.org/copyleft/gpl.html -* -*/ + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) + * Copyright (C) 2015 Sam Stenvall + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSE.md for more information. + */ #include "FilesystemBuffer.h" diff -Nru kodi-pvr-vbox-8.1.2/src/timeshift/FilesystemBuffer.h kodi-pvr-vbox-19.0.0/src/timeshift/FilesystemBuffer.h --- kodi-pvr-vbox-8.1.2/src/timeshift/FilesystemBuffer.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/timeshift/FilesystemBuffer.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,24 +1,12 @@ -#pragma once /* -* Copyright (C) 2015 Sam Stenvall -* -* This Program is free software; you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation; either version 2, or (at your option) -* any later version. -* -* This Program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with XBMC; see the file COPYING. If not, write to -* the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, -* MA 02110-1301 USA -* http://www.gnu.org/copyleft/gpl.html -* -*/ + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) + * Copyright (C) 2015 Sam Stenvall + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSE.md for more information. + */ + +#pragma once #include "Buffer.h" diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/CategoryGenreMapper.cpp kodi-pvr-vbox-19.0.0/src/vbox/CategoryGenreMapper.cpp --- kodi-pvr-vbox-8.1.2/src/vbox/CategoryGenreMapper.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/CategoryGenreMapper.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/CategoryGenreMapper.h kodi-pvr-vbox-19.0.0/src/vbox/CategoryGenreMapper.h --- kodi-pvr-vbox-8.1.2/src/vbox/CategoryGenreMapper.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/CategoryGenreMapper.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/Channel.h kodi-pvr-vbox-19.0.0/src/vbox/Channel.h --- kodi-pvr-vbox-8.1.2/src/vbox/Channel.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/Channel.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/ChannelStreamingStatus.cpp kodi-pvr-vbox-19.0.0/src/vbox/ChannelStreamingStatus.cpp --- kodi-pvr-vbox-8.1.2/src/vbox/ChannelStreamingStatus.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/ChannelStreamingStatus.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/ChannelStreamingStatus.h kodi-pvr-vbox-19.0.0/src/vbox/ChannelStreamingStatus.h --- kodi-pvr-vbox-8.1.2/src/vbox/ChannelStreamingStatus.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/ChannelStreamingStatus.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/ContentIdentifier.h kodi-pvr-vbox-19.0.0/src/vbox/ContentIdentifier.h --- kodi-pvr-vbox-8.1.2/src/vbox/ContentIdentifier.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/ContentIdentifier.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/Exceptions.h kodi-pvr-vbox-19.0.0/src/vbox/Exceptions.h --- kodi-pvr-vbox-8.1.2/src/vbox/Exceptions.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/Exceptions.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/GuideChannelMapper.cpp kodi-pvr-vbox-19.0.0/src/vbox/GuideChannelMapper.cpp --- kodi-pvr-vbox-8.1.2/src/vbox/GuideChannelMapper.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/GuideChannelMapper.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/GuideChannelMapper.h kodi-pvr-vbox-19.0.0/src/vbox/GuideChannelMapper.h --- kodi-pvr-vbox-8.1.2/src/vbox/GuideChannelMapper.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/GuideChannelMapper.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/Recording.cpp kodi-pvr-vbox-19.0.0/src/vbox/Recording.cpp --- kodi-pvr-vbox-8.1.2/src/vbox/Recording.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/Recording.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/Recording.h kodi-pvr-vbox-19.0.0/src/vbox/Recording.h --- kodi-pvr-vbox-8.1.2/src/vbox/Recording.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/Recording.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/RecordingReader.cpp kodi-pvr-vbox-19.0.0/src/vbox/RecordingReader.cpp --- kodi-pvr-vbox-8.1.2/src/vbox/RecordingReader.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/RecordingReader.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/RecordingReader.h kodi-pvr-vbox-19.0.0/src/vbox/RecordingReader.h --- kodi-pvr-vbox-8.1.2/src/vbox/RecordingReader.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/RecordingReader.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/request/ApiRequest.cpp kodi-pvr-vbox-19.0.0/src/vbox/request/ApiRequest.cpp --- kodi-pvr-vbox-8.1.2/src/vbox/request/ApiRequest.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/request/ApiRequest.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/request/ApiRequest.h kodi-pvr-vbox-19.0.0/src/vbox/request/ApiRequest.h --- kodi-pvr-vbox-8.1.2/src/vbox/request/ApiRequest.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/request/ApiRequest.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/request/FileRequest.h kodi-pvr-vbox-19.0.0/src/vbox/request/FileRequest.h --- kodi-pvr-vbox-8.1.2/src/vbox/request/FileRequest.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/request/FileRequest.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/request/Request.h kodi-pvr-vbox-19.0.0/src/vbox/request/Request.h --- kodi-pvr-vbox-8.1.2/src/vbox/request/Request.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/request/Request.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/response/Content.cpp kodi-pvr-vbox-19.0.0/src/vbox/response/Content.cpp --- kodi-pvr-vbox-8.1.2/src/vbox/response/Content.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/response/Content.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/response/Content.h kodi-pvr-vbox-19.0.0/src/vbox/response/Content.h --- kodi-pvr-vbox-8.1.2/src/vbox/response/Content.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/response/Content.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/response/Factory.h kodi-pvr-vbox-19.0.0/src/vbox/response/Factory.h --- kodi-pvr-vbox-8.1.2/src/vbox/response/Factory.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/response/Factory.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/response/Response.cpp kodi-pvr-vbox-19.0.0/src/vbox/response/Response.cpp --- kodi-pvr-vbox-8.1.2/src/vbox/response/Response.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/response/Response.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/response/Response.h kodi-pvr-vbox-19.0.0/src/vbox/response/Response.h --- kodi-pvr-vbox-8.1.2/src/vbox/response/Response.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/response/Response.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/SeriesRecording.cpp kodi-pvr-vbox-19.0.0/src/vbox/SeriesRecording.cpp --- kodi-pvr-vbox-8.1.2/src/vbox/SeriesRecording.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/SeriesRecording.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/SeriesRecording.h kodi-pvr-vbox-19.0.0/src/vbox/SeriesRecording.h --- kodi-pvr-vbox-8.1.2/src/vbox/SeriesRecording.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/SeriesRecording.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/Settings.h kodi-pvr-vbox-19.0.0/src/vbox/Settings.h --- kodi-pvr-vbox-8.1.2/src/vbox/Settings.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/Settings.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/SoftwareVersion.cpp kodi-pvr-vbox-19.0.0/src/vbox/SoftwareVersion.cpp --- kodi-pvr-vbox-8.1.2/src/vbox/SoftwareVersion.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/SoftwareVersion.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/SoftwareVersion.h kodi-pvr-vbox-19.0.0/src/vbox/SoftwareVersion.h --- kodi-pvr-vbox-8.1.2/src/vbox/SoftwareVersion.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/SoftwareVersion.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/StartupStateHandler.cpp kodi-pvr-vbox-19.0.0/src/vbox/StartupStateHandler.cpp --- kodi-pvr-vbox-8.1.2/src/vbox/StartupStateHandler.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/StartupStateHandler.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/StartupStateHandler.h kodi-pvr-vbox-19.0.0/src/vbox/StartupStateHandler.h --- kodi-pvr-vbox-8.1.2/src/vbox/StartupStateHandler.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/StartupStateHandler.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/Utilities.h kodi-pvr-vbox-19.0.0/src/vbox/Utilities.h --- kodi-pvr-vbox-8.1.2/src/vbox/Utilities.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/Utilities.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/VBox.cpp kodi-pvr-vbox-19.0.0/src/vbox/VBox.cpp --- kodi-pvr-vbox-8.1.2/src/vbox/VBox.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/VBox.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/vbox/VBox.h kodi-pvr-vbox-19.0.0/src/vbox/VBox.h --- kodi-pvr-vbox-8.1.2/src/vbox/VBox.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/vbox/VBox.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/VBoxInstance.cpp kodi-pvr-vbox-19.0.0/src/VBoxInstance.cpp --- kodi-pvr-vbox-8.1.2/src/VBoxInstance.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/VBoxInstance.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/VBoxInstance.h kodi-pvr-vbox-19.0.0/src/VBoxInstance.h --- kodi-pvr-vbox-8.1.2/src/VBoxInstance.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/VBoxInstance.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/xmltv/Channel.cpp kodi-pvr-vbox-19.0.0/src/xmltv/Channel.cpp --- kodi-pvr-vbox-8.1.2/src/xmltv/Channel.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/xmltv/Channel.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/xmltv/Channel.h kodi-pvr-vbox-19.0.0/src/xmltv/Channel.h --- kodi-pvr-vbox-8.1.2/src/xmltv/Channel.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/xmltv/Channel.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/xmltv/Guide.cpp kodi-pvr-vbox-19.0.0/src/xmltv/Guide.cpp --- kodi-pvr-vbox-8.1.2/src/xmltv/Guide.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/xmltv/Guide.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/xmltv/Guide.h kodi-pvr-vbox-19.0.0/src/xmltv/Guide.h --- kodi-pvr-vbox-8.1.2/src/xmltv/Guide.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/xmltv/Guide.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/xmltv/Programme.cpp kodi-pvr-vbox-19.0.0/src/xmltv/Programme.cpp --- kodi-pvr-vbox-8.1.2/src/xmltv/Programme.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/xmltv/Programme.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/xmltv/Programme.h kodi-pvr-vbox-19.0.0/src/xmltv/Programme.h --- kodi-pvr-vbox-8.1.2/src/xmltv/Programme.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/xmltv/Programme.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/xmltv/Schedule.cpp kodi-pvr-vbox-19.0.0/src/xmltv/Schedule.cpp --- kodi-pvr-vbox-8.1.2/src/xmltv/Schedule.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/xmltv/Schedule.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/xmltv/Schedule.h kodi-pvr-vbox-19.0.0/src/xmltv/Schedule.h --- kodi-pvr-vbox-8.1.2/src/xmltv/Schedule.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/xmltv/Schedule.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/xmltv/Utilities.cpp kodi-pvr-vbox-19.0.0/src/xmltv/Utilities.cpp --- kodi-pvr-vbox-8.1.2/src/xmltv/Utilities.cpp 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/xmltv/Utilities.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/src/xmltv/Utilities.h kodi-pvr-vbox-19.0.0/src/xmltv/Utilities.h --- kodi-pvr-vbox-8.1.2/src/xmltv/Utilities.h 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/src/xmltv/Utilities.h 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,6 @@ /* - * Copyright (C) 2015-2020 Team Kodi + * Copyright (C) 2015-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2015 Sam Stenvall - * https://kodi.tv * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. diff -Nru kodi-pvr-vbox-8.1.2/.travis.yml kodi-pvr-vbox-19.0.0/.travis.yml --- kodi-pvr-vbox-8.1.2/.travis.yml 2021-07-03 20:24:31.000000000 +0000 +++ kodi-pvr-vbox-19.0.0/.travis.yml 2013-05-31 22:59:22.000000000 +0000 @@ -33,7 +33,7 @@ osx_image: xcode10.2 before_install: - - if [[ $DEBIAN_BUILD == true ]]; then sudo add-apt-repository -y ppa:team-xbmc/xbmc-nightly; fi + - if [[ $DEBIAN_BUILD == true ]]; then sudo add-apt-repository -y ppa:team-xbmc/ppa; fi - if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get update; fi - if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get install fakeroot; fi @@ -43,12 +43,12 @@ # before_script: - if [[ $DEBIAN_BUILD != true ]]; then cd $TRAVIS_BUILD_DIR/..; fi - - if [[ $DEBIAN_BUILD != true ]]; then git clone --branch master --depth=1 https://github.com/xbmc/xbmc.git; fi + - if [[ $DEBIAN_BUILD != true ]]; then git clone --branch Matrix --depth=1 https://github.com/xbmc/xbmc.git; fi - if [[ $DEBIAN_BUILD != true ]]; then cd ${app_id} && mkdir build && cd build; fi - if [[ $DEBIAN_BUILD != true ]]; then mkdir -p definition/${app_id}; fi - if [[ $DEBIAN_BUILD != true ]]; then echo ${app_id} $TRAVIS_BUILD_DIR $TRAVIS_COMMIT > definition/${app_id}/${app_id}.txt; fi - if [[ $DEBIAN_BUILD != true ]]; then cmake -DADDONS_TO_BUILD=${app_id} -DADDON_SRC_PREFIX=$TRAVIS_BUILD_DIR/.. -DADDONS_DEFINITION_DIR=$TRAVIS_BUILD_DIR/build/definition -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=$TRAVIS_BUILD_DIR/../xbmc/addons -DPACKAGE_ZIP=1 $TRAVIS_BUILD_DIR/../xbmc/cmake/addons; fi - - if [[ $DEBIAN_BUILD == true ]]; then wget https://raw.githubusercontent.com/xbmc/xbmc/master/xbmc/addons/kodi-dev-kit/tools/debian-addon-package-test.sh && chmod +x ./debian-addon-package-test.sh; fi + - if [[ $DEBIAN_BUILD == true ]]; then wget https://raw.githubusercontent.com/xbmc/xbmc/Matrix/xbmc/addons/kodi-dev-kit/tools/debian-addon-package-test.sh && chmod +x ./debian-addon-package-test.sh; fi - if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get build-dep $TRAVIS_BUILD_DIR; fi script: