diff -Nru kodi-pvr-njoy-3.4.2/azure-pipelines.yml kodi-pvr-njoy-20.3.0/azure-pipelines.yml --- kodi-pvr-njoy-3.4.2/azure-pipelines.yml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/azure-pipelines.yml 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,65 @@ +variables: + app_id: 'pvr.njoy' + +trigger: + branches: + include: + - Nexus + - releases/* + paths: + include: + - '*' + exclude: + - 'debian/*' + +jobs: + - job: Windows + + pool: + vmImage: 'windows-2022' + + strategy: + matrix: + Win32: + GENERATOR: "Visual Studio 17 2022" + ARCHITECTURE: Win32 + CONFIGURATION: Release + Win64: + GENERATOR: "Visual Studio 17 2022" + ARCHITECTURE: x64 + CONFIGURATION: Release + Win64-UWP: + GENERATOR: "Visual Studio 17 2022" + ARCHITECTURE: x64 + CONFIGURATION: Release + WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0" + ARM64-UWP: + GENERATOR: "Visual Studio 17 2022" + ARCHITECTURE: ARM64 + CONFIGURATION: Release + WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0" + + workspace: + clean: all + + steps: + + - script: | + cd .. + git clone --branch master --depth=1 https://github.com/xbmc/xbmc.git kodi + cd $(Build.SourcesDirectory) + mkdir build + cd build + mkdir "definition/$(app_id)" + echo $(app_id) . . > definition/$(app_id)/$(app_id).txt + mklink /J "$(Pipeline.Workspace)/$(app_id)" "$(Build.SourcesDirectory)" + + - task: CMake@1 + inputs: + workingDirectory: 'build' + cmakeArgs: '-T host=x64 -G "$(GENERATOR)" -A $(ARCHITECTURE) $(WINSTORE) -DADDONS_TO_BUILD=$(app_id) -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DADDONS_DEFINITION_DIR=$(Pipeline.Workspace)/$(app_id)/build/definition -DADDON_SRC_PREFIX=../.. -DCMAKE_INSTALL_PREFIX=../../kodi/addons -DPACKAGE_ZIP=1 ../../kodi/cmake/addons' + + - task: CMake@1 + inputs: + workingDirectory: 'build' + cmakeArgs: '--build . --config $(CONFIGURATION) --target $(app_id)' diff -Nru kodi-pvr-njoy-3.4.2/.clang-format kodi-pvr-njoy-20.3.0/.clang-format --- kodi-pvr-njoy-3.4.2/.clang-format 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/.clang-format 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,88 @@ +--- +# BasedOnStyle: LLVM +AccessModifierOffset: -2 +AlignAfterOpenBracket: Align +AlignConsecutiveAssignments: false +AlignConsecutiveDeclarations: false +AlignEscapedNewlines: DontAlign +AlignOperands: true +AlignTrailingComments: false +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortBlocksOnASingleLine: false +AllowShortCaseLabelsOnASingleLine: false +AllowShortFunctionsOnASingleLine: InlineOnly +AllowShortIfStatementsOnASingleLine: false +AllowShortLoopsOnASingleLine: false +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: false +AlwaysBreakTemplateDeclarations: true +BinPackArguments: true +BinPackParameters: false +BreakBeforeBinaryOperators: None +BreakBeforeBraces: Allman +BreakBeforeTernaryOperators: true +BreakConstructorInitializersBeforeComma: false +BreakConstructorInitializers: BeforeColon +BreakAfterJavaFieldAnnotations: false +BreakStringLiterals: true +ColumnLimit: 100 +CommentPragmas: '^ IWYU pragma:' +ConstructorInitializerAllOnOneLineOrOnePerLine: true +ConstructorInitializerIndentWidth: 2 +ContinuationIndentWidth: 4 +Cpp11BracedListStyle: true +DerivePointerAlignment: false +DisableFormat: false +ExperimentalAutoDetectBinPacking: false +ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] +IncludeBlocks: Regroup +IncludeCategories: + - Regex: '^<[a-z0-9_]+>$' + Priority: 3 + - Regex: '^<(assert|complex|ctype|errno|fenv|float|inttypes|iso646|limits|locale|math|setjmp|signal|stdalign|stdarg|stdatomic|stdbool|stddef|stdint|stdio|stdlib|stdnoreturn|string|tgmath|threads|time|uchar|wchar|wctype)\.h>$' + Priority: 3 + - Regex: '^<' + Priority: 3 + - Regex: '^["<](kodi|p8-platform)\/.*\.h[">]$' + Priority: 2 + - Regex: '.*' + Priority: 1 +IncludeIsMainRegex: '$' +IndentCaseLabels: true +IndentWidth: 2 +IndentWrappedFunctionNames: false +JavaScriptQuotes: Leave +JavaScriptWrapImports: true +KeepEmptyLinesAtTheStartOfBlocks: true +MacroBlockBegin: '' +MacroBlockEnd: '' +MaxEmptyLinesToKeep: 2 +NamespaceIndentation: None +ObjCBlockIndentWidth: 2 +ObjCSpaceAfterProperty: false +ObjCSpaceBeforeProtocolList: true +PenaltyBreakBeforeFirstCallParameter: 19 +PenaltyBreakComment: 300 +PenaltyBreakFirstLessLess: 120 +PenaltyBreakString: 1000 +PenaltyExcessCharacter: 1000000 +PenaltyReturnTypeOnItsOwnLine: 60000 +PointerAlignment: Left +ReflowComments: false +SortIncludes: true +SpaceAfterCStyleCast: false +SpaceAfterTemplateKeyword: false +SpaceBeforeAssignmentOperators: true +SpaceBeforeParens: ControlStatements +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 1 +SpacesInAngles: false +SpacesInContainerLiterals: true +SpacesInCStyleCastParentheses: false +SpacesInParentheses: false +SpacesInSquareBrackets: false +Standard: Cpp11 +TabWidth: 8 +UseTab: Never +... diff -Nru kodi-pvr-njoy-3.4.2/CMakeLists.txt kodi-pvr-njoy-20.3.0/CMakeLists.txt --- kodi-pvr-njoy-3.4.2/CMakeLists.txt 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/CMakeLists.txt 2022-09-16 13:47:09.000000000 +0000 @@ -1,32 +1,19 @@ +cmake_minimum_required(VERSION 3.5) project(pvr.njoy) -cmake_minimum_required(VERSION 2.6) - set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}) -enable_language(CXX) +find_package(Kodi REQUIRED) +find_package(TinyXML REQUIRED) + +include_directories(${TINYXML_INCLUDE_DIR} + ${KODI_INCLUDE_DIR}/..) # Hack way with "/..", need bigger Kodi cmake rework to match right include ways -option(PACKAGE_ZIP "Package Zip file?" OFF) +set(NJOY_SOURCES src/N7Xml.cpp) -find_package(TinyXML REQUIRED) -find_package(Kodi REQUIRED) -find_package(kodiplatform REQUIRED) -find_package(p8-platform REQUIRED) +set(NJOY_HEADERS src/N7Xml.h) -include_directories(${kodiplatform_INCLUDE_DIRS} - ${p8-platform_INCLUDE_DIRS} - ${TINYXML_INCLUDE_DIR} - ${KODI_INCLUDE_DIR}) - -set(NJOY_SOURCES src/client.cpp - src/N7Xml.cpp) - -set(NJOY_HEADERS src/client.h - src/N7Xml.h) - -set(DEPLIBS ${kodiplatform_LIBRARIES} - ${p8-platform_LIBRARIES} - ${TINYXML_LIBRARIES}) +set(DEPLIBS ${TINYXML_LIBRARIES}) build_addon(pvr.njoy NJOY DEPLIBS) diff -Nru kodi-pvr-njoy-3.4.2/debian/changelog kodi-pvr-njoy-20.3.0/debian/changelog --- kodi-pvr-njoy-3.4.2/debian/changelog 2020-03-21 15:38:27.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/debian/changelog 2023-01-09 16:30:09.000000000 +0000 @@ -1,61 +1,53 @@ -kodi-pvr-njoy (3.4.2-1) unstable; urgency=medium - - [ Ondřej Nový ] - * d/copyright: Use https protocol in Format field - * d/control: Deprecating priority extra as per policy 4.0.1 - * d/control: Set Vcs-* to salsa.debian.org - - [ Felipe Sateler ] - * Change maintainer address to debian-multimedia@lists.debian.org - - [ Balint Reczey ] - * Add basic Salsa CI configuration - * Add debian/watch - * New upstream version 3.4.2 - * Reresh patches - * Bump libkodiplatform-dev and kodi-addons-dev build-dependency versions - - -- Balint Reczey Sat, 21 Mar 2020 16:38:27 +0100 - -kodi-pvr-njoy (2.4.0+git20160518-2) unstable; urgency=medium - - * Really depend on PVR API version of Kodi we built the addon with - * Adapt to Kodi PVR api change - SeekTime - - -- Balint Reczey Sat, 24 Dec 2016 03:51:34 +0100 - -kodi-pvr-njoy (2.4.0+git20160518-1) unstable; urgency=medium - - * Imported Upstream version 2.4.0+git20160518 - * Build-depend on latest libkodiplatform-dev and kodi-addons-dev - * Build-depend on kodi-addons-dev version which has all the needed headers - (Closes: #844969) - * Drop hack to build with p8-platform - * Drop unused obsoleted patch - * Depend on PVR API version of Kodi we built the addon with - * Bump standards version to 3.9.8 - - -- Balint Reczey Sat, 19 Nov 2016 08:49:49 +0100 - -kodi-pvr-njoy (1.11.9+git20160210-1) unstable; urgency=medium - - * Imported Upstream version 1.11.9+git20160210 - * Bump standards version to 3.9.7 - * Switch to p8-platform from (cec-)platform - * Extend package description (Closes: #808750) - - -- Balint Reczey Thu, 03 Mar 2016 14:34:28 +0100 - -kodi-pvr-njoy (1.10.7+git20150717-1) unstable; urgency=medium - - * Create packaging compliant to Debian Policy - - -- Balint Reczey Sat, 12 Dec 2015 20:31:53 +0100 - -kodi-pvr-njoy (1.9.27-1~trusty) trusty; urgency=low +kodi-pvr-njoy (20.3.0-1~focal) focal; urgency=low [ kodi ] * autogenerated dummy changelog - -- Nobody Sat, 01 Jun 2013 00:59:22 +0200 + [ wsnipex ] + * v20.3.0 - Kodi inputstream API update to version 3.2.0 - Kodi PVR + API update to version 8.0.2 v20.2.0 - Translation updates by Weblate + - Kodi main API update to version 2.0.0 v20.1.0 - Kodi API to 8.0.0 + v20.0.0 - Translations updates from Weblate - To allow also + addon.xml content update by Weblate - Changed test builds to 'Kodi + 20 Nexus' - Increased version to 20.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. v7.1.1 - Language + update from Weblate v7.1.0 - Update PVR API 7.1.0 v7.0.0 - Update + PVR API 7.0.2 v6.0.0 - Update PVR API 7.0.0 - Rework addon to + support new API interface - Code cleanup v5.0.0 - Update PVR API + 6.5.1 - Update Global API 1.2.0 v4.1.5 - Update PVR API 6.5.0 v4.1.4 + - Update PVR API 6.4.0 - Minor cleanups v4.1.3 - Update PVR API + 6.3.0 v4.1.2 - Update Debian build code - Update with some minor + cleanups - Update settings.xml to use new format - Cleanup source + copyright to 2020, use Kodi as name and to match SPDX - Add license + name forum url and source url to addon.xml - Add GPL2 license file + and show GPL2 on README.md v4.1.1 - Update PVR API 6.2.0 v4.1.0 - + Recompile for 6.1.0 PVR Addon API compatibility v4.0.1 - Update + build system version and cleanup - Fix package check for TinyXML - + Added AppVeyor for Windows related build tests v4.0.0 - Update to + PVR addon API v6.0.0 v3.4.2 - Updated Language files from Transifex + v3.4.1 - Updated to PVR addon API v5.10.1 v3.4.0 - Updated to PVR + addon API v5.10.0 v3.3.1 - Updated to PVR addon API v5.9.0 v3.3.0 - + Updated to PVR addon API v5.8.0 v3.2.1 - Remove StdString usage + v3.2.0 - Updated to PVR addon API v5.7.0 v3.1.0 - Updated to PVR + addon API v5.3.0 v3.0.4 - Remove of never used addon interface + function v3.0.3 - Update Debian package control - PVR addon callback + way changes v3.0.2 - Removed old no more needed version functions + 3.0.1 - set dependency versions automatic during build - removed + never used kodi to addon functions - build system fixes 3.0.0 - + Initial Kodi v18 version 2.4.0 - Cmake: rename find_package kodi to + Kodi 2.3.1 - Fix includes 2.3.0 - Updated to PVR addon API v5.2.0 + 2.2.0 - Updated to PVR addon API v5.1.0 2.1.0 - Updated to PVR addon + API v5.0.0 2.0.0 - Initial Kodi Krypton version. 1.11.9 - Updated + Language files from Transifex 1.11.8 - Updated Language files from + Transifex 1.11.7 - Updated Language files from Transifex 1.11.6 - + Updated to PVR API v4.1.0 1.11.5 - Updated to PVR API v4.0.0 1.11.4 - + Updated to PVR API v3.0.0 (API 1.9.7 compatibility mode) 1.11.3 - + Updated to PVR API v2.1.0 - Automatically fill in platform and + library name 1.11.2 - Debian packaging: fix library install path - + Miscellaneous backend fixes 1.11.1 - Updated to API 2.0.0 1.11.0 - + Updated to API 1.9.7 1.10.5 - Updated Language files from Transifex + v1.10.4 - Updated to use new libplatform-dev 1.10.3 - Updated to API + 1.9.6 1.10.2 - Updated to API 1.9.5 + -- wsnipex Mon, 09 Jan 2023 17:30:09 +0100 diff -Nru kodi-pvr-njoy-3.4.2/debian/changelog.tmp kodi-pvr-njoy-20.3.0/debian/changelog.tmp --- kodi-pvr-njoy-3.4.2/debian/changelog.tmp 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/debian/changelog.tmp 2023-01-09 16:30:02.000000000 +0000 @@ -0,0 +1,7 @@ +kodi-pvr-njoy (20.3.0-1~#DIST#) #DIST#; urgency=low + + [ kodi ] + * autogenerated dummy changelog + + -- Nobody Sat, 01 Jun 2013 00:59:22 +0200 + diff -Nru kodi-pvr-njoy-3.4.2/debian/control kodi-pvr-njoy-20.3.0/debian/control --- kodi-pvr-njoy-3.4.2/debian/control 2020-03-21 15:38:27.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/debian/control 2022-09-16 13:47:09.000000000 +0000 @@ -1,28 +1,22 @@ Source: kodi-pvr-njoy -Maintainer: Debian Multimedia Maintainers -Uploaders: Balint Reczey +Priority: extra +Maintainer: Nobody +Build-Depends: debhelper (>= 9.0.0), cmake, libtinyxml-dev, + kodi-addon-dev +Standards-Version: 4.1.2 Section: libs -Priority: optional -Build-Depends: debhelper (>= 9.0.0), - cmake, - kodi-addons-dev (>= 2:18~), - libkodiplatform-dev (>= 20180302), - libtinyxml-dev -Standards-Version: 3.9.8 -Vcs-Browser: https://salsa.debian.org/multimedia-team/kodi-pvr-njoy -Vcs-Git: https://salsa.debian.org/multimedia-team/kodi-pvr-njoy.git -Homepage: https://github.com/kodi-pvr/pvr.njoy.git Package: kodi-pvr-njoy +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: NJOY PVR for Kodi + NJOY PVR for Kodi + +Package: kodi-pvr-njoy-dbg +Section: debug Architecture: any -Depends: ${shlibs:Depends}, - ${misc:Depends}, - ${kodi:PVRAPI} -Description: NJOY PVR Addon for Kodi - Njoy Digital is a company that makes "Njoy Digital N7" network attached - DVB TV tuners for Digital Cable, Terrestrial or Satellite TV - television broadcasts compatible with XBMC's PVR frontend clients. - . - This package contains the NJOY PVR (Personal Video Recorder) Addon for Kodi, - the award winning free and open source software media-player and entertainment - hub for all your digital media. +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: debug symbols for NJOY PVR for Kodi + debug symbols for NJOY PVR for Kodi + diff -Nru kodi-pvr-njoy-3.4.2/debian/copyright kodi-pvr-njoy-20.3.0/debian/copyright --- kodi-pvr-njoy-3.4.2/debian/copyright 2020-03-21 15:38:27.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/debian/copyright 2022-09-16 13:47:09.000000000 +0000 @@ -1,20 +1,45 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: xbmc-pvr-addons +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: pvr.njoy Source: https://github.com/kodi-pvr/pvr.njoy Files: * -Copyright: 2005-2013 Team XBMC +Copyright: 2005-2021 Team Kodi License: GPL-2+ + This package 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 of the License, or + (at your option) any later version. + . + This package 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 this program. If not, see + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". -Files: debian/* -Copyright: 2015 Balint Reczey -License: GPL-2+ +Files: debian/* +Copyright: 2021 Team Kodi + 2013 Arne Morten Kvarving + 2013 wsnipex License: GPL-2+ - This program is free software; you can redistribute it and/or modify + This package 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; version 2 dated June, 1991, or (at - your option) any later version. + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + This package 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. . - On Debian systems, the complete text of version 2 of the GNU General - Public License can be found in '/usr/share/common-licenses/GPL-2'. + You should have received a copy of the GNU General Public License + along with this program. If not, see + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". + diff -Nru kodi-pvr-njoy-3.4.2/debian/gitlab-ci.yml kodi-pvr-njoy-20.3.0/debian/gitlab-ci.yml --- kodi-pvr-njoy-3.4.2/debian/gitlab-ci.yml 2020-03-21 15:38:27.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/debian/gitlab-ci.yml 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -include: - - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml - - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml diff -Nru kodi-pvr-njoy-3.4.2/debian/kodi-pvr-njoy.install kodi-pvr-njoy-20.3.0/debian/kodi-pvr-njoy.install --- kodi-pvr-njoy-3.4.2/debian/kodi-pvr-njoy.install 2020-03-21 15:38:27.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/debian/kodi-pvr-njoy.install 2023-01-09 16:30:02.000000000 +0000 @@ -0,0 +1,2 @@ +usr/lib +usr/share diff -Nru kodi-pvr-njoy-3.4.2/debian/rules kodi-pvr-njoy-20.3.0/debian/rules --- kodi-pvr-njoy-3.4.2/debian/rules 2020-03-21 15:38:27.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/debian/rules 2022-09-16 13:47:09.000000000 +0000 @@ -1,21 +1,20 @@ #!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -# This has to be exported to make some magic below work. -export DH_OPTIONS - -DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) - %: - dh $@ --with kodiaddon + dh $@ override_dh_auto_configure: - dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1 -DCMAKE_INSTALL_LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH)/kodi -DUSE_LTO=1 + dh_auto_configure -- -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_SHARED_LIBS=1 -DUSE_LTO=1 override_dh_installdocs: dh_installdocs --link-doc=kodi-pvr-njoy -override_dh_makeshlibs: - dh_makeshlibs -n diff -Nru kodi-pvr-njoy-3.4.2/debian/source/format kodi-pvr-njoy-20.3.0/debian/source/format --- kodi-pvr-njoy-3.4.2/debian/source/format 2020-03-21 15:38:27.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/debian/source/format 2022-09-16 13:47:09.000000000 +0000 @@ -1 +1 @@ -3.0 (quilt) +3.0 (native) diff -Nru kodi-pvr-njoy-3.4.2/debian/watch kodi-pvr-njoy-20.3.0/debian/watch --- kodi-pvr-njoy-3.4.2/debian/watch 2020-03-21 15:38:27.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/debian/watch 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -version=4 -https://github.com/kodi-pvr/pvr.njoy/releases /kodi-pvr/.*/archive/?(\d\S*)-[A-Za-z]*\.tar\.gz diff -Nru kodi-pvr-njoy-3.4.2/depends/common/tinyxml/CMakeLists.txt kodi-pvr-njoy-20.3.0/depends/common/tinyxml/CMakeLists.txt --- kodi-pvr-njoy-3.4.2/depends/common/tinyxml/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/depends/common/tinyxml/CMakeLists.txt 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,22 @@ +cmake_minimum_required(VERSION 3.5) +project(tinyxml) + +set(SOURCES src/tinystr.cpp + src/tinyxml.cpp + src/tinyxmlerror.cpp + src/tinyxmlparser.cpp) + +if(WIN32) + add_definitions(-DWIN32 -D_LIB) +endif() +add_definitions(-DTIXML_USE_STL) + +add_library(tinyxml ${SOURCES}) + +include_directories(${PROJECT_SOURCE_DIR}/include) + +set(HEADERS ${PROJECT_SOURCE_DIR}/include/tinystr.h + ${PROJECT_SOURCE_DIR}/include/tinyxml.h) + +install(FILES ${HEADERS} DESTINATION ${CMAKE_INSTALL_PREFIX}/include) +install(TARGETS tinyxml DESTINATION ${CMAKE_INSTALL_PREFIX}/lib) diff -Nru kodi-pvr-njoy-3.4.2/depends/common/tinyxml/tinyxml.sha256 kodi-pvr-njoy-20.3.0/depends/common/tinyxml/tinyxml.sha256 --- kodi-pvr-njoy-3.4.2/depends/common/tinyxml/tinyxml.sha256 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/depends/common/tinyxml/tinyxml.sha256 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1 @@ +8164c9ad48b9028667768a584d62f7760cfbfb90d0dd6214ad174403058da10c diff -Nru kodi-pvr-njoy-3.4.2/depends/common/tinyxml/tinyxml.txt kodi-pvr-njoy-20.3.0/depends/common/tinyxml/tinyxml.txt --- kodi-pvr-njoy-3.4.2/depends/common/tinyxml/tinyxml.txt 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/depends/common/tinyxml/tinyxml.txt 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1 @@ +tinyxml http://mirrors.kodi.tv/build-deps/sources/tinyxml-2.6.2_2.tar.gz diff -Nru kodi-pvr-njoy-3.4.2/FindTinyXML.cmake kodi-pvr-njoy-20.3.0/FindTinyXML.cmake --- kodi-pvr-njoy-3.4.2/FindTinyXML.cmake 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/FindTinyXML.cmake 2022-09-16 13:47:09.000000000 +0000 @@ -6,22 +6,19 @@ # TINYXML_LIBRARIES - List of libraries when using TinyXML. # +find_package(PkgConfig) if(PKG_CONFIG_FOUND) - pkg_check_modules (TINYXML tinyxml) - list(APPEND TINYXML_INCLUDE_DIRS ${TINYXML_INCLUDEDIR}) + pkg_check_modules(PC_TINYXML tinyxml QUIET) endif() -if(NOT TINYXML_FOUND) - find_path( TINYXML_INCLUDE_DIRS "tinyxml.h" - PATH_SUFFIXES "tinyxml" ) - find_library( TINYXML_LIBRARIES - NAMES "tinyxml" - PATH_SUFFIXES "tinyxml" ) -endif() +find_path(TINYXML_INCLUDE_DIRS NAMES tinyxml.h + PATHS ${PC_TINYXML_INCLUDEDIR} + PATH_SUFFIXES tinyxml) +find_library(TINYXML_LIBRARIES NAMES tinyxml + PATHS ${PC_TINYXML_LIBDIR} + PATH_SUFFIXES tinyxml) -# handle the QUIETLY and REQUIRED arguments and set TINYXML_FOUND to TRUE if -# all listed variables are TRUE -include( "FindPackageHandleStandardArgs" ) -find_package_handle_standard_args(TinyXML DEFAULT_MSG TINYXML_INCLUDE_DIRS TINYXML_LIBRARIES ) +include("FindPackageHandleStandardArgs") +find_package_handle_standard_args(TinyXML REQUIRED_VARS TINYXML_INCLUDE_DIRS TINYXML_LIBRARIES) mark_as_advanced(TINYXML_INCLUDE_DIRS TINYXML_LIBRARIES) diff -Nru kodi-pvr-njoy-3.4.2/.github/workflows/build.yml kodi-pvr-njoy-20.3.0/.github/workflows/build.yml --- kodi-pvr-njoy-3.4.2/.github/workflows/build.yml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/.github/workflows/build.yml 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,61 @@ +name: Build and run tests +on: [push, pull_request] +env: + app_id: pvr.njoy + +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/xbmc-nightly; 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: master + path: xbmc + - name: Checkout pvr.njoy 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/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 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-njoy-3.4.2/.github/workflows/changelog-and-release.yml kodi-pvr-njoy-20.3.0/.github/workflows/changelog-and-release.yml --- kodi-pvr-njoy-3.4.2/.github/workflows/changelog-and-release.yml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/.github/workflows/changelog-and-release.yml 2022-09-16 13:47:09.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. 20.0.0-Nexus + # - 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-njoy-3.4.2/.github/workflows/increment-version.yml kodi-pvr-njoy-20.3.0/.github/workflows/increment-version.yml --- kodi-pvr-njoy-3.4.2/.github/workflows/increment-version.yml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/.github/workflows/increment-version.yml 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,62 @@ +name: Increment version when languages are updated + +on: + push: + branches: [ Matrix, Nexus ] + paths: + - '**resource.language.**strings.po' + +jobs: + default: + if: github.repository == 'kodi-pvr/pvr.njoy' + runs-on: ubuntu-latest + name: Increment add-on version when languages are updated + + steps: + + - name: Checkout Repository + uses: actions/checkout@v2 + with: + fetch-depth: 0 + path: ${{ github.event.repository.name }} + + - name: Checkout Scripts + uses: actions/checkout@v2 + with: + fetch-depth: 0 + repository: xbmc/weblate-supplementary-scripts + path: scripts + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.9' + + - name: Get changed files + uses: trilom/file-changes-action@v1.2.4 + + - name: Increment add-on version + run: | + 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 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 }} diff -Nru kodi-pvr-njoy-3.4.2/.github/workflows/release.yml kodi-pvr-njoy-20.3.0/.github/workflows/release.yml --- kodi-pvr-njoy-3.4.2/.github/workflows/release.yml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/.github/workflows/release.yml 2022-09-16 13:47:09.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. 20.0.0-Nexus + # - 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-njoy-3.4.2/.github/workflows/sync-addon-metadata-translations.yml kodi-pvr-njoy-20.3.0/.github/workflows/sync-addon-metadata-translations.yml --- kodi-pvr-njoy-3.4.2/.github/workflows/sync-addon-metadata-translations.yml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/.github/workflows/sync-addon-metadata-translations.yml 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,57 @@ +name: Sync addon metadata translations + +on: + push: + branches: [ Matrix, Nexus ] + paths: + - '**addon.xml.in' + - '**resource.language.**strings.po' + +jobs: + default: + if: github.repository == 'kodi-pvr/pvr.njoy' + runs-on: ubuntu-latest + + strategy: + + fail-fast: false + matrix: + python-version: [ 3.9 ] + + steps: + + - name: Checkout repository + uses: actions/checkout@v2 + with: + path: project + + - name: Checkout sync_addon_metadata_translations repository + uses: actions/checkout@v2 + with: + repository: xbmc/sync_addon_metadata_translations + path: sync_addon_metadata_translations + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install sync_addon_metadata_translations/ + + - name: Run sync-addon-metadata-translations + run: | + sync-addon-metadata-translations + working-directory: ./project + + - name: Create PR for sync-addon-metadata-translations changes + uses: peter-evans/create-pull-request@v3.10.0 + with: + commit-message: Sync of addon metadata translations + title: Sync of addon metadata translations + body: Sync of addon metadata translations triggered by ${{ github.sha }} + branch: amt-sync + delete-branch: true + path: ./project diff -Nru kodi-pvr-njoy-3.4.2/.gitignore kodi-pvr-njoy-20.3.0/.gitignore --- kodi-pvr-njoy-3.4.2/.gitignore 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/.gitignore 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -# build artifacts -build/ -debian/changelog -debian/files -debian/kodi-pvr-njoy-dbg.debhelper.log -debian/kodi-pvr-njoy-dbg.substvars -debian/kodi-pvr-njoy-dbg/ -debian/kodi-pvr-njoy.debhelper.log -debian/kodi-pvr-njoy.postinst.debhelper -debian/kodi-pvr-njoy.postrm.debhelper -debian/kodi-pvr-njoy.substvars -debian/kodi-pvr-njoy/ -debian/tmp/ -obj-x86_64-linux-gnu/ -pvr.njoy/addon.xml - -# clion -.idea/ - -# Eclipse/CDT -.cproject -.project -.settings/ diff -Nru kodi-pvr-njoy-3.4.2/Jenkinsfile kodi-pvr-njoy-20.3.0/Jenkinsfile --- kodi-pvr-njoy-3.4.2/Jenkinsfile 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/Jenkinsfile 2022-09-16 13:47:09.000000000 +0000 @@ -1 +1 @@ -buildPlugin() +buildPlugin(version: "Nexus") diff -Nru kodi-pvr-njoy-3.4.2/LICENSE.md kodi-pvr-njoy-20.3.0/LICENSE.md --- kodi-pvr-njoy-3.4.2/LICENSE.md 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/LICENSE.md 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,264 @@ +The GNU General Public License, Version 2, June 1991 (GPLv2) +============================================================ + +> Copyright (C) 1989, 1991 Free Software Foundation, Inc. +> 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + + +Preamble +-------- + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to most +of the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), +that you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs; and that you know you can +do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a +fee, you must give the recipients all the rights that you have. You must make +sure that they, too, receive or can get the source code. And you must show them +these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer +you this license which gives you legal permission to copy, distribute and/or +modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced by +others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish +to avoid the danger that redistributors of a free program will individually +obtain patent licenses, in effect making the program proprietary. To prevent +this, we have made it clear that any patent must be licensed for everyone's free +use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + + +Terms And Conditions For Copying, Distribution And Modification +--------------------------------------------------------------- + +**0.** This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program or +work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or +translated into another language. (Hereinafter, translation is included without +limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is not +restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +**1.** You may copy and distribute verbatim copies of the Program's source code +as you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this License +and to the absence of any warranty; and give any other recipients of the Program +a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at +your option offer warranty protection in exchange for a fee. + +**2.** You may modify your copy or copies of the Program or any portion of it, +thus forming a work based on the Program, and copy and distribute such +modifications or work under the terms of Section 1 above, provided that you also +meet all of these conditions: + +* **a)** You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + +* **b)** You must cause any work that you distribute or publish, that in whole + or in part contains or is derived from the Program or any part thereof, to + be licensed as a whole at no charge to all third parties under the terms of + this License. + +* **c)** If the modified program normally reads commands interactively when + run, you must cause it, when started running for such interactive use in the + most ordinary way, to print or display an announcement including an + appropriate copyright notice and a notice that there is no warranty (or + else, saying that you provide a warranty) and that users may redistribute + the program under these conditions, and telling the user how to view a copy + of this License. (Exception: if the Program itself is interactive but does + not normally print such an announcement, your work based on the Program is + not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, and +its terms, do not apply to those sections when you distribute them as separate +works. But when you distribute the same sections as part of a whole which is a +work based on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the entire whole, +and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your +rights to work written entirely by you; rather, the intent is to exercise the +right to control the distribution of derivative or collective works based on the +Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +**3.** You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 1 and 2 +above provided that you also do one of the following: + +* **a)** Accompany it with the complete corresponding machine-readable source + code, which must be distributed under the terms of Sections 1 and 2 above on + a medium customarily used for software interchange; or, + +* **b)** Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of the + corresponding source code, to be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; or, + +* **c)** Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed only for + noncommercial distribution and only if you received the program in object + code or executable form with such an offer, in accord with Subsection b + above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all the +source code for all modules it contains, plus any associated interface +definition files, plus the scripts used to control compilation and installation +of the executable. However, as a special exception, the source code distributed +need not include anything that is normally distributed (in either source or +binary form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component itself +accompanies the executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source code +from the same place counts as distribution of the source code, even though third +parties are not compelled to copy the source along with the object code. + +**4.** You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so +long as such parties remain in full compliance. + +**5.** You are not required to accept this License, since you have not signed +it. However, nothing else grants you permission to modify or distribute the +Program or its derivative works. These actions are prohibited by law if you do +not accept this License. Therefore, by modifying or distributing the Program (or +any work based on the Program), you indicate your acceptance of this License to +do so, and all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + +**6.** Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the original +licensor to copy, distribute or modify the Program subject to these terms and +conditions. You may not impose any further restrictions on the recipients' +exercise of the rights granted herein. You are not responsible for enforcing +compliance by third parties to this License. + +**7.** If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), conditions +are imposed on you (whether by court order, agreement or otherwise) that +contradict the conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as to satisfy +simultaneously your obligations under this License and any other pertinent +obligations, then as a consequence you may not distribute the Program at all. +For example, if a patent license would not permit royalty-free redistribution of +the Program by all those who receive copies directly or indirectly through you, +then the only way you could satisfy both it and this License would be to refrain +entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply and the +section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or +other property right claims or to contest validity of any such claims; this +section has the sole purpose of protecting the integrity of the free software +distribution system, which is implemented by public license practices. Many +people have made generous contributions to the wide range of software +distributed through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee cannot impose that +choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +**8.** If the distribution and/or use of the Program is restricted in certain +countries either by patents or by copyrighted interfaces, the original copyright +holder who places the Program under this License may add an explicit +geographical distribution limitation excluding those countries, so that +distribution is permitted only in or among countries not thus excluded. In such +case, this License incorporates the limitation as if written in the body of this +License. + +**9.** The Free Software Foundation may publish revised and/or new versions of +the General Public License from time to time. Such new versions will be similar +in spirit to the present version, but may differ in detail to address new +problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies +a version number of this License which applies to it and "any later version", +you have the option of following the terms and conditions either of that version +or of any later version published by the Free Software Foundation. If the +Program does not specify a version number of this License, you may choose any +version ever published by the Free Software Foundation. + +**10.** If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision will be guided by the two goals of preserving the free status of +all derivatives of our free software and of promoting the sharing and reuse of +software generally. + + +No Warranty +----------- + +**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR +THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE +STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM +"AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR +INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA +BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER +OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/addon.xml.in kodi-pvr-njoy-20.3.0/pvr.njoy/addon.xml.in --- kodi-pvr-njoy-3.4.2/pvr.njoy/addon.xml.in 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/addon.xml.in 2022-09-16 13:47:09.000000000 +0000 @@ -1,14 +1,21 @@ @ADDON_DEPENDS@ + @PLATFORM@ + GPL-2.0-or-later + https://github.com/kodi-pvr/pvr.njoy + https://forum.kodi.tv/forumdisplay.php?fid=173 + + icon.png + Njoy N7 PVR Kliënt Njoy N7 PVR Client Кліент Njoy N7 PVR @@ -16,7 +23,7 @@ Client PVR Njoy N7 Klient nahrávače Njoy N7 Rhaglen Rhaglenni Njoy N7 - Njoy N7 PVR Klient + Njoy N7 PVR-klient Njoy N7 PVR Client Πελάτης PVR του Njoy N7 Njoy N7 PVR Client @@ -26,7 +33,7 @@ Cliente PVR Njoy N7 Cliente PVR Njoy N7 Cliente Njoy N7 PVR - Njoy N7 PVR'i klient + Njoy N7 PVR i klient Kodin Njoy N7 -asiakasohjelma Client de numériscope Njoy N7 Client enregistreur vidéo (PVR) Njoy N7 @@ -41,7 +48,7 @@ Njoy N7 PVR 클라이언트 Njoy N7 PVR klientas Njoy N7 PVR klients - Njoy N7 PVR клиент + Njoy N7 PVR клиент Klien PVR Njoy N7 Njoy N7 PVR Client Njoy N7 PVR Client @@ -52,7 +59,7 @@ Cliente PVR Njoy N7 Client PVR Njoy N7 Njoy N7 PVR Клиент - Njoy N7 PVR සේවාග්‍රාහකයා + Njoy N7 PVR සේවාග්‍රාහකයා Njoy N7 PVR Klient Odjemalec PVR Njoy N7 Njoy N7 PVR Клијент @@ -66,6 +73,5 @@ Phần mềm PVR cho Njoy N7 Njoy N7 PVR 客户端 Njoy N7 PVR 用戶端 - @PLATFORM@ diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/changelog.txt kodi-pvr-njoy-20.3.0/pvr.njoy/changelog.txt --- kodi-pvr-njoy-3.4.2/pvr.njoy/changelog.txt 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/changelog.txt 2022-09-16 13:47:09.000000000 +0000 @@ -1,3 +1,75 @@ +v20.3.0 +- Kodi inputstream API update to version 3.2.0 +- Kodi PVR API update to version 8.0.2 + +v20.2.0 +- Translation updates by Weblate +- Kodi main API update to version 2.0.0 + +v20.1.0 +- Kodi API to 8.0.0 + +v20.0.0 +- Translations updates from Weblate + - To allow also addon.xml content update by Weblate +- Changed test builds to 'Kodi 20 Nexus' +- Increased version to 20.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. + +v7.1.1 +- Language update from Weblate + +v7.1.0 +- Update PVR API 7.1.0 + +v7.0.0 +- Update PVR API 7.0.2 + +v6.0.0 +- Update PVR API 7.0.0 +- Rework addon to support new API interface +- Code cleanup + +v5.0.0 +- Update PVR API 6.5.1 +- Update Global API 1.2.0 + +v4.1.5 +- Update PVR API 6.5.0 + +v4.1.4 +- Update PVR API 6.4.0 +- Minor cleanups + +v4.1.3 +- Update PVR API 6.3.0 + +v4.1.2 +- Update Debian build code +- Update with some minor cleanups +- Update settings.xml to use new format +- Cleanup source copyright to 2020, use Kodi as name and to match SPDX +- Add license name forum url and source url to addon.xml +- Add GPL2 license file and show GPL2 on README.md + +v4.1.1 +- Update PVR API 6.2.0 + +v4.1.0 +- Recompile for 6.1.0 PVR Addon API compatibility + +v4.0.1 +- Update build system version and cleanup +- Fix package check for TinyXML +- Added AppVeyor for Windows related build tests + +v4.0.0 +- Update to PVR addon API v6.0.0 + +v3.4.2 +- Updated Language files from Transifex + v3.4.1 - Updated to PVR addon API v5.10.1 diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.af_za/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.af_za/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.af_za/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.af_za/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Afrikaans (South Africa) (http://www.transifex.com/projects/p/kodi-main/language/af_ZA/)\n" +"Language: af_ZA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Kliënt" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.am_et/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.am_et/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.am_et/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.am_et/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Amharic (Ethiopia) (http://www.transifex.com/projects/p/kodi-main/language/am_ET/)\n" +"Language: am_ET\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: am_ET\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Client" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ar_sa/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ar_sa/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ar_sa/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ar_sa/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: ar_sa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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 ? 4 : 5;\n" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.az_az/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.az_az/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.az_az/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.az_az/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: az_az\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.be_by/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.be_by/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.be_by/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.be_by/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Belarusian (Belarus) (http://www.transifex.com/projects/p/kodi-main/language/be_BY/)\n" +"Language: be_BY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: be_BY\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 "Njoy N7 PVR Client" +msgstr "Кліент Njoy N7 PVR" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.bg_bg/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.bg_bg/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.bg_bg/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.bg_bg/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/kodi-main/language/bg_BG/)\n" +"Language: bg_BG\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Клиент за ПВР „Njoy N7“" + msgctxt "#30000" msgid "N7 IP" msgstr "IP-адрес за N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.bs_ba/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.bs_ba/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.bs_ba/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.bs_ba/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: bs_ba\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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 "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ca_es/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ca_es/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ca_es/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ca_es/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Catalan (Spain) (http://www.transifex.com/projects/p/kodi-main/language/ca_ES/)\n" +"Language: ca_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Client PVR Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.cs_cz/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.cs_cz/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.cs_cz/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.cs_cz/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Czech (Czech Republic) (http://www.transifex.com/projects/p/kodi-main/language/cs_CZ/)\n" +"Language: cs_CZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Klient nahrávače Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.cy_gb/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.cy_gb/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.cy_gb/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.cy_gb/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Welsh (United Kingdom) (http://www.transifex.com/projects/p/kodi-main/language/cy_GB/)\n" +"Language: cy_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Rhaglen Rhaglenni Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.da_dk/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.da_dk/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.da_dk/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.da_dk/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,16 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n" +"Report-Msgid-Bugs-To: translations@kodi.tv\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" +"PO-Revision-Date: 2021-11-14 13:07+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" -"Language: da_DK\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.8.1\n" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR-klient" msgctxt "#30000" msgid "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.de_de/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.de_de/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.de_de/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.de_de/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: German (Germany) (http://www.transifex.com/projects/p/kodi-main/language/de_DE/)\n" +"Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Client" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.el_gr/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.el_gr/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.el_gr/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.el_gr/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Greek (Greece) (http://www.transifex.com/projects/p/kodi-main/language/el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Πελάτης PVR του Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "Διεύθυνση IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.en_au/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.en_au/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.en_au/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.en_au/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: English (Australia) (http://www.transifex.com/projects/p/kodi-main/language/en_AU/)\n" +"Language: en_AU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en_AU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Client" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.en_gb/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.en_gb/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.en_gb/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.en_gb/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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" @@ -16,6 +16,10 @@ "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + #settings labels msgctxt "#30000" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.en_nz/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.en_nz/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.en_nz/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.en_nz/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: English (New Zealand) (http://www.transifex.com/projects/p/kodi-main/language/en_NZ/)\n" +"Language: en_NZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en_NZ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Client" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.en_us/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.en_us/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.en_us/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.en_us/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: English (United States) (http://www.transifex.com/projects/p/kodi-main/language/en_US/)\n" +"Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en_US\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Client" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.eo/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.eo/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.eo/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.eo/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: eo\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.es_ar/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.es_ar/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.es_ar/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.es_ar/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Spanish (Argentina) (http://www.transifex.com/projects/p/kodi-main/language/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Cliente PVR Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP de N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.es_es/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.es_es/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.es_es/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.es_es/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Spanish (Spain) (http://www.transifex.com/projects/p/kodi-main/language/es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Cliente PVR Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.es_mx/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.es_mx/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.es_mx/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.es_mx/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Spanish (Mexico) (http://www.transifex.com/projects/p/kodi-main/language/es_MX/)\n" +"Language: es_MX\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Cliente Njoy N7 PVR" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.et_ee/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.et_ee/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.et_ee/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.et_ee/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Estonian (Estonia) (http://www.transifex.com/projects/p/kodi-main/language/et_EE/)\n" +"Language: et_EE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR i klient" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.eu_es/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.eu_es/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.eu_es/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.eu_es/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: eu_es\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.fa_af/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.fa_af/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.fa_af/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.fa_af/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: fa_af\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.fa_ir/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.fa_ir/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.fa_ir/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.fa_ir/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: fa_ir\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.fi_fi/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.fi_fi/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.fi_fi/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.fi_fi/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Finnish (Finland) (http://www.transifex.com/projects/p/kodi-main/language/fi_FI/)\n" +"Language: fi_FI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Kodin Njoy N7 -asiakasohjelma" + msgctxt "#30000" msgid "N7 IP" msgstr "N7:n IP-osoite" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.fo_fo/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.fo_fo/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.fo_fo/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.fo_fo/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: fo_fo\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.fr_ca/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.fr_ca/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.fr_ca/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.fr_ca/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: French (Canada) (http://www.transifex.com/projects/p/kodi-main/language/fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Client de numériscope Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.fr_fr/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.fr_fr/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.fr_fr/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.fr_fr/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: French (France) (http://www.transifex.com/projects/p/kodi-main/language/fr_FR/)\n" +"Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Client enregistreur vidéo (PVR) Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP de N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.gl_es/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.gl_es/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.gl_es/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.gl_es/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Galician (Spain) (http://www.transifex.com/projects/p/kodi-main/language/gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Cliente PVR de Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP de N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.he_il/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.he_il/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.he_il/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.he_il/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Hebrew (Israel) (http://www.transifex.com/projects/p/kodi-main/language/he_IL/)\n" +"Language: he_IL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: he_IL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "לקוח טלוויזיה חיה עבור Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "שם מארח או כתובת IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.hi_in/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.hi_in/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.hi_in/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.hi_in/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: hi_in\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.hr_hr/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.hr_hr/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.hr_hr/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.hr_hr/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Croatian (Croatia) (http://www.transifex.com/projects/p/kodi-main/language/hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hr_HR\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 "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR klijent" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP adresa" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.hu_hu/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.hu_hu/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.hu_hu/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.hu_hu/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Hungarian (Hungary) (http://www.transifex.com/projects/p/kodi-main/language/hu_HU/)\n" +"Language: hu_HU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR ügyfél" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP cím" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.hy_am/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.hy_am/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.hy_am/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.hy_am/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: hy_am\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.id_id/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.id_id/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.id_id/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.id_id/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Indonesian (Indonesia) (http://www.transifex.com/projects/p/kodi-main/language/id_ID/)\n" +"Language: id_ID\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id_ID\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Klien Njoy N7 PVR" + msgctxt "#30000" msgid "N7 IP" msgstr "IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.is_is/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.is_is/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.is_is/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.is_is/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Icelandic (Iceland) (http://www.transifex.com/projects/p/kodi-main/language/is_IS/)\n" +"Language: is_IS\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: is_IS\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 upptökubiðlari (PVR Client)" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.it_it/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.it_it/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.it_it/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.it_it/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Italian (Italy) (http://www.transifex.com/projects/p/kodi-main/language/it_IT/)\n" +"Language: it_IT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Client PVR Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ja_jp/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ja_jp/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ja_jp/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ja_jp/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Japanese (Japan) (http://www.transifex.com/projects/p/kodi-main/language/ja_JP/)\n" +"Language: ja_JP\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 用 PVR クライアント" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP アドレス" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ko_kr/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ko_kr/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ko_kr/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ko_kr/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ko_KR\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR 클라이언트" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.lt_lt/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.lt_lt/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.lt_lt/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.lt_lt/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/kodi-main/language/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lt_LT\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 "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR klientas" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.lv_lv/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.lv_lv/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.lv_lv/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.lv_lv/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Latvian (Latvia) (http://www.transifex.com/projects/p/kodi-main/language/lv_LV/)\n" +"Language: lv_LV\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lv_LV\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR klients" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.mi/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.mi/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.mi/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.mi/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: mi\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.mk_mk/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.mk_mk/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.mk_mk/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.mk_mk/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,16 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n" +"Report-Msgid-Bugs-To: translations@kodi.tv\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: Macedonian (Macedonia) (http://www.transifex.com/projects/p/kodi-main/language/mk_MK/)\n" +"PO-Revision-Date: 2021-11-05 03:16+0000\n" +"Last-Translator: Christian Gade \n" +"Language-Team: Macedonian \n" +"Language: mk_mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: mk_MK\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: Weblate 4.8.1\n" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR клиент" msgctxt "#30000" msgid "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ml_in/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ml_in/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ml_in/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ml_in/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: ml_in\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.mn_mn/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.mn_mn/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.mn_mn/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.mn_mn/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: mn_mn\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ms_my/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ms_my/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ms_my/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ms_my/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Malay (Malaysia) (http://www.transifex.com/projects/p/kodi-main/language/ms_MY/)\n" +"Language: ms_MY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Klien PVR Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.mt_mt/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.mt_mt/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.mt_mt/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.mt_mt/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Maltese (Malta) (http://www.transifex.com/projects/p/kodi-main/language/mt_MT/)\n" +"Language: mt_MT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: mt_MT\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 "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Client" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.my_mm/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.my_mm/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.my_mm/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.my_mm/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Burmese (Myanmar) (http://www.transifex.com/projects/p/kodi-main/language/my_MM/)\n" +"Language: my_MM\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Client" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.nb_no/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.nb_no/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.nb_no/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.nb_no/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/kodi-main/language/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR-klient" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.nl_nl/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.nl_nl/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.nl_nl/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.nl_nl/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Dutch (Netherlands) (http://www.transifex.com/projects/p/kodi-main/language/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR-cliënt" + msgctxt "#30000" msgid "N7 IP" msgstr "N7-IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.pl_pl/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.pl_pl/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.pl_pl/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.pl_pl/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Polish (Poland) (http://www.transifex.com/projects/p/kodi-main/language/pl_PL/)\n" +"Language: pl_PL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pl_PL\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 "Njoy N7 PVR Client" +msgstr "Klient telewizji dla Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "Adres IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.pt_br/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.pt_br/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.pt_br/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.pt_br/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Portuguese (Brazil) (http://www.transifex.com/projects/p/kodi-main/language/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Cliente de PVR Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP do N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.pt_pt/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.pt_pt/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.pt_pt/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.pt_pt/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Portuguese (Portugal) (http://www.transifex.com/projects/p/kodi-main/language/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Cliente PVR Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ro_ro/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ro_ro/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ro_ro/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ro_ro/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Romanian (Romania) (http://www.transifex.com/projects/p/kodi-main/language/ro_RO/)\n" +"Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Client PVR Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ru_ru/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ru_ru/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ru_ru/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ru_ru/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Russian (Russia) (http://www.transifex.com/projects/p/kodi-main/language/ru_RU/)\n" +"Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\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 "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Клиент" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.si_lk/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.si_lk/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.si_lk/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.si_lk/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,16 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n" +"Report-Msgid-Bugs-To: translations@kodi.tv\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: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/kodi-main/language/si_LK/)\n" +"PO-Revision-Date: 2021-09-25 08:30+0000\n" +"Last-Translator: Christian Gade \n" +"Language-Team: Sinhala (Sri Lanka) \n" +"Language: si_lk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Weblate 4.8\n" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR සේවාග්‍රාහකයා" msgctxt "#30000" msgid "N7 IP" @@ -22,4 +27,4 @@ msgctxt "#30001" msgid "N7 Port" -msgstr "N7 තිර්ථය " +msgstr "N7 තිර්ථය" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.sk_sk/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.sk_sk/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.sk_sk/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.sk_sk/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Slovak (Slovakia) (http://www.transifex.com/projects/p/kodi-main/language/sk_SK/)\n" +"Language: sk_SK\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Klient" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.sl_si/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.sl_si/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.sl_si/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.sl_si/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Slovenian (Slovenia) (http://www.transifex.com/projects/p/kodi-main/language/sl_SI/)\n" +"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl_SI\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 "Njoy N7 PVR Client" +msgstr "Odjemalec PVR Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.sq_al/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.sq_al/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.sq_al/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.sq_al/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: sq_al\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.sr_rs/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.sr_rs/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.sr_rs/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.sr_rs/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Serbian (Serbia) (http://www.transifex.com/projects/p/kodi-main/language/sr_RS/)\n" +"Language: sr_RS\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS\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 "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Клијент" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.sr_rs@latin/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.sr_rs@latin/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.sr_rs@latin/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.sr_rs@latin/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Serbian (Latin) (Serbia) (http://www.transifex.com/projects/p/kodi-main/language/sr_RS@latin/)\n" +"Language: sr_RS@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr_RS@latin\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 "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Klijent" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.sv_se/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.sv_se/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.sv_se/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.sv_se/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Swedish (Sweden) (http://www.transifex.com/projects/p/kodi-main/language/sv_SE/)\n" +"Language: sv_SE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sv_SE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Klient" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.szl/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.szl/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.szl/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.szl/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Silesian (http://www.transifex.com/projects/p/kodi-main/language/szl/)\n" +"Language: szl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: szl\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 "Njoy N7 PVR Client" +msgstr "Klijynt Njoy N7 PVR" + msgctxt "#30000" msgid "N7 IP" msgstr "IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ta_in/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ta_in/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.ta_in/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.ta_in/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Tamil (India) (http://www.transifex.com/projects/p/kodi-main/language/ta_IN/)\n" +"Language: ta_IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ta_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 ஐபீ" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.te_in/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.te_in/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.te_in/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.te_in/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: te_in\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.tg_tj/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.tg_tj/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.tg_tj/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.tg_tj/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Tajik (Tajikistan) (http://www.transifex.com/projects/p/kodi-main/language/tg_TJ/)\n" +"Language: tg_TJ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tg_TJ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Муштарии Njoy N7 PVR" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.th_th/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.th_th/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.th_th/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.th_th/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Thai (Thailand) (http://www.transifex.com/projects/p/kodi-main/language/th_TH/)\n" +"Language: th_TH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR Client" + msgctxt "#30000" msgid "N7 IP" msgstr "ไอพี N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.tr_tr/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.tr_tr/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.tr_tr/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.tr_tr/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Turkish (Turkey) (http://www.transifex.com/projects/p/kodi-main/language/tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR İstemcisi" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP'si" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.uk_ua/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.uk_ua/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.uk_ua/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.uk_ua/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Ukrainian (Ukraine) (http://www.transifex.com/projects/p/kodi-main/language/uk_UA/)\n" +"Language: uk_UA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: uk_UA\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 "Njoy N7 PVR Client" +msgstr "Клієнт Njoy N7 для PVR" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.uz_uz/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.uz_uz/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.uz_uz/strings.po 1970-01-01 00:00:00.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.uz_uz/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -0,0 +1,30 @@ +# Kodi Media Center language file +# Addon Name: Njoy N7 PVR Client +# Addon id: pvr.njoy +# Addon Provider: Team Kodi +msgid "" +msgstr "" +"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: Automatically generated\n" +"Language-Team: none\n" +"Language: uz_uz\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" + +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "" + +# settings labels +msgctxt "#30000" +msgid "N7 IP" +msgstr "" + +msgctxt "#30001" +msgid "N7 Port" +msgstr "" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.vi_vn/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.vi_vn/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.vi_vn/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.vi_vn/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/kodi-main/language/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Phần mềm PVR cho Njoy N7" + msgctxt "#30000" msgid "N7 IP" msgstr "IP N7" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.zh_cn/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.zh_cn/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.zh_cn/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.zh_cn/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Chinese (China) (http://www.transifex.com/projects/p/kodi-main/language/zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR 客户端" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.zh_tw/strings.po kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.zh_tw/strings.po --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/language/resource.language.zh_tw/strings.po 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/language/resource.language.zh_tw/strings.po 2022-09-16 13:47:09.000000000 +0000 @@ -5,17 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: KODI Main\n" -"Report-Msgid-Bugs-To: http://trac.kodi.tv/\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: Chinese (Taiwan) (http://www.transifex.com/projects/p/kodi-main/language/zh_TW/)\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgctxt "Addon Summary" +msgid "Njoy N7 PVR Client" +msgstr "Njoy N7 PVR 用戶端" + msgctxt "#30000" msgid "N7 IP" msgstr "N7 IP" diff -Nru kodi-pvr-njoy-3.4.2/pvr.njoy/resources/settings.xml kodi-pvr-njoy-20.3.0/pvr.njoy/resources/settings.xml --- kodi-pvr-njoy-3.4.2/pvr.njoy/resources/settings.xml 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/pvr.njoy/resources/settings.xml 2022-09-16 13:47:09.000000000 +0000 @@ -1,6 +1,27 @@ - - - + +
+ + + + 0 + 127.0.0.1 + + true + + + + + 0 + 80 + + 1 + 1 + 65535 + + + + + +
- diff -Nru kodi-pvr-njoy-3.4.2/README.md kodi-pvr-njoy-20.3.0/README.md --- kodi-pvr-njoy-3.4.2/README.md 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/README.md 2022-09-16 13:47:09.000000000 +0000 @@ -1,14 +1,17 @@ -[![Build Status](https://travis-ci.org/kodi-pvr/pvr.njoy.svg?branch=master)](https://travis-ci.org/kodi-pvr/pvr.njoy) +[![License: GPL-2.0-or-later](https://img.shields.io/badge/License-GPL%20v2+-blue.svg)](LICENSE.md) +[![Build and run tests](https://github.com/kodi-pvr/pvr.njoy/actions/workflows/build.yml/badge.svg?branch=Nexus)](https://github.com/kodi-pvr/pvr.njoy/actions/workflows/build.yml) +[![Build Status](https://dev.azure.com/teamkodi/kodi-pvr/_apis/build/status/kodi-pvr.pvr.njoy?branchName=Nexus)](https://dev.azure.com/teamkodi/kodi-pvr/_build/latest?definitionId=65&branchName=Nexus) +[![Build Status](https://jenkins.kodi.tv/view/Addons/job/kodi-pvr/job/pvr.njoy/job/Nexus/badge/icon)](https://jenkins.kodi.tv/blue/organizations/jenkins/kodi-pvr%2Fpvr.njoy/branches/) [![Coverity Scan Build Status](https://scan.coverity.com/projects/5120/badge.svg)](https://scan.coverity.com/projects/5120) # Njoy PVR -Njoy N7 PVR client addon for [Kodi] (http://kodi.tv) +Njoy N7 PVR client addon for [Kodi](https://kodi.tv) ## Build instructions ### Linux -1. `git clone https://github.com/xbmc/xbmc.git` +1. `git clone --branch master https://github.com/xbmc/xbmc.git` 2. `git clone https://github.com/kodi-pvr/pvr.njoy.git` 3. `cd pvr.njoy && mkdir build && cd build` 4. `cmake -DADDONS_TO_BUILD=pvr.njoy -DADDON_SRC_PREFIX=../.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/cmake/addons` @@ -16,5 +19,5 @@ ##### Useful links -* [Kodi's PVR user support] (http://forum.kodi.tv/forumdisplay.php?fid=167) -* [Kodi's PVR development support] (http://forum.kodi.tv/forumdisplay.php?fid=136) +* [Kodi's PVR user support](https://forum.kodi.tv/forumdisplay.php?fid=167) +* [Kodi's PVR development support](https://forum.kodi.tv/forumdisplay.php?fid=136) diff -Nru kodi-pvr-njoy-3.4.2/src/client.cpp kodi-pvr-njoy-20.3.0/src/client.cpp --- kodi-pvr-njoy-3.4.2/src/client.cpp 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/src/client.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,285 +0,0 @@ -/* - * Copyright (C) 2005-2012 Team XBMC - * http://xbmc.org - * - * 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, 675 Mass Ave, Cambridge, MA 02139, USA. - * http://www.gnu.org/copyleft/gpl.html - * - */ - -#include "client.h" -#include "xbmc_pvr_dll.h" -#include "N7Xml.h" -#include "p8-platform/util/util.h" - -using namespace std; -using namespace ADDON; - -/* User adjustable settings are saved here. - * Default values are defined inside client.h - * and exported to the other source files. - */ -std::string g_strHostname = DEFAULT_HOST; -int g_iPort = DEFAULT_PORT; - -///* Client member variables */ - -int m_iCurrentChannel = 1; -ADDON_STATUS m_CurStatus = ADDON_STATUS_UNKNOWN; -bool g_bCreated = false; -std::string g_szUserPath = ""; -std::string g_szClientPath = ""; -N7Xml* m_data = NULL; -CHelper_libXBMC_addon *XBMC = NULL; -CHelper_libXBMC_pvr *PVR = NULL; - - -extern "C" { - -/*********************************************************** - * Standard AddOn related public library functions - ***********************************************************/ - -ADDON_STATUS ADDON_Create(void* hdl, void* props) -{ - if (!props) - return ADDON_STATUS_UNKNOWN; - - PVR_PROPERTIES* pvrprops = (PVR_PROPERTIES*)props; - - XBMC = new CHelper_libXBMC_addon; - if (!XBMC->RegisterMe(hdl)) - { - SAFE_DELETE(XBMC); - return ADDON_STATUS_PERMANENT_FAILURE; - } - - PVR = new CHelper_libXBMC_pvr; - if (!PVR->RegisterMe(hdl)) - { - SAFE_DELETE(PVR); - SAFE_DELETE(XBMC); - return ADDON_STATUS_PERMANENT_FAILURE; - } - XBMC->Log(LOG_DEBUG, "Creating N7 PVR-Client"); - - m_CurStatus = ADDON_STATUS_UNKNOWN; - g_szUserPath = pvrprops->strUserPath; - g_szClientPath = pvrprops->strClientPath; - - /* Read setting "host" from settings.xml */ - char * buffer; - buffer = (char*) malloc (1024); - buffer[0] = 0; /* Set the end of string */ - - if (XBMC->GetSetting("n7host", buffer)) - { - g_strHostname = buffer; - XBMC->Log(LOG_ERROR, "n7host set to - %s", g_strHostname.c_str()); - } - else - { - /* If setting is unknown fallback to defaults */ - XBMC->Log(LOG_INFO, "Couldn't get 'host' setting, falling back to '%s' as default", DEFAULT_HOST); - g_strHostname = DEFAULT_HOST; - } - free (buffer); - - /* Read setting "port" from settings.xml */ - if (!XBMC->GetSetting("n7port", &g_iPort)) - { - /* If setting is unknown fallback to defaults */ - XBMC->Log(LOG_ERROR, "Couldn't get 'n7port' setting, falling back to '%i' as default", DEFAULT_PORT); - g_iPort = DEFAULT_PORT; - } - - m_data = new N7Xml; - g_bCreated = true; - m_CurStatus = ADDON_STATUS_OK; - return m_CurStatus; -} - -void ADDON_Destroy() -{ - g_bCreated = false; - m_CurStatus = ADDON_STATUS_UNKNOWN; -} - -ADDON_STATUS ADDON_GetStatus() -{ - return m_CurStatus; -} - -ADDON_STATUS ADDON_SetSetting(const char *settingName, const void *settingValue) -{ - string str = settingName; - if (str == "n7host") - { - string tmp_sHostname; - XBMC->Log(LOG_INFO, "Changed Setting 'host' from %s to %s", g_strHostname.c_str(), (const char*) settingValue); - tmp_sHostname = g_strHostname; - g_strHostname = (const char*) settingValue; - if (tmp_sHostname != g_strHostname) - return ADDON_STATUS_NEED_RESTART; - } - else if (str == "n7port") - { - XBMC->Log(LOG_INFO, "Changed Setting 'port' from %u to %u", g_iPort, *(int*) settingValue); - if (g_iPort != *(int*) settingValue) - { - g_iPort = *(int*) settingValue; - return ADDON_STATUS_NEED_RESTART; - } - } - return ADDON_STATUS_OK; -} - -/*********************************************************** - * PVR Client AddOn specific public library functions - ***********************************************************/ - -void OnSystemSleep() -{ -} - -void OnSystemWake() -{ -} - -void OnPowerSavingActivated() -{ -} - -void OnPowerSavingDeactivated() -{ -} - -PVR_ERROR GetAddonCapabilities(PVR_ADDON_CAPABILITIES *pCapabilities) -{ - pCapabilities->bSupportsTV = true; - pCapabilities->bSupportsRecordings = false; - pCapabilities->bSupportsRecordingsRename = false; - pCapabilities->bSupportsRecordingsLifetimeChange = false; - pCapabilities->bSupportsDescrambleInfo = false; - - return PVR_ERROR_NO_ERROR; -} - -PVR_ERROR GetStreamProperties(PVR_STREAM_PROPERTIES* props) -{ - return PVR_ERROR_NOT_IMPLEMENTED; -} - -const char * GetBackendName() -{ - return "NJoy N7"; -} - -const char * GetBackendVersion() -{ - return "-"; -} - -const char * GetConnectionString() -{ - return "connected"; -} - -const char * GetBackendHostname(void) -{ - return g_strHostname.c_str(); -} - -int GetChannelsAmount(void) -{ - return m_data->getChannelsAmount(); -} - -PVR_ERROR GetChannels(ADDON_HANDLE handle, bool bRadio) -{ - return m_data->requestChannelList(handle, bRadio); -} - -PVR_ERROR GetChannelStreamProperties(const PVR_CHANNEL* channel, PVR_NAMED_VALUE* props, unsigned int* prop_size) -{ - if ((!channel) || (!props) || (!prop_size)) - return PVR_ERROR_FAILED; - if (m_data) - return m_data->GetChannelStreamProperties(channel, props, prop_size); - return PVR_ERROR_SERVER_ERROR; -} - -/** UNUSED API FUNCTIONS */ -PVR_ERROR GetDriveSpace(long long *iTotal, long long *iUsed) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR OpenDialogChannelScan() { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR CallMenuHook(const PVR_MENUHOOK &menuhook, const PVR_MENUHOOK_DATA &item) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR GetEPGForChannel(ADDON_HANDLE handle, const PVR_CHANNEL &channel, time_t iStart, time_t iEnd) { return PVR_ERROR_NOT_IMPLEMENTED; } -int GetChannelGroupsAmount(void) { return 0; } -PVR_ERROR GetChannelGroups(ADDON_HANDLE handle, bool bRadio) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR GetChannelGroupMembers(ADDON_HANDLE handle, const PVR_CHANNEL_GROUP &group) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR DeleteChannel(const PVR_CHANNEL &channel) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR RenameChannel(const PVR_CHANNEL &channel) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR OpenDialogChannelSettings(const PVR_CHANNEL &channel) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR OpenDialogChannelAdd(const PVR_CHANNEL &channel) { return PVR_ERROR_NOT_IMPLEMENTED; } -bool OpenLiveStream(const PVR_CHANNEL &channel) { return false; } -void CloseLiveStream(void) {} -PVR_ERROR SignalStatus(PVR_SIGNAL_STATUS &signalStatus) { return PVR_ERROR_NOT_IMPLEMENTED; }bool OpenRecordedStream(const PVR_RECORDING &recording) { return false; } -void CloseRecordedStream(void) {} -int ReadRecordedStream(unsigned char *pBuffer, unsigned int iBufferSize) { return 0; } -long long SeekRecordedStream(long long iPosition, int iWhence /* = SEEK_SET */) { return 0; } -long long LengthRecordedStream(void) { return 0; } -void DemuxReset(void) {} -void DemuxFlush(void) {} -int ReadLiveStream(unsigned char *pBuffer, unsigned int iBufferSize) { return 0; } -long long SeekLiveStream(long long iPosition, int iWhence /* = SEEK_SET */) { return -1; } -long long LengthLiveStream(void) { return -1; } -const char * GetLiveStreamURL(const PVR_CHANNEL &channel) { return ""; } -int GetRecordingsAmount(bool deleted) { return -1; } -PVR_ERROR GetRecordings(ADDON_HANDLE handle, bool deleted) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR DeleteRecording(const PVR_RECORDING &recording) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR RenameRecording(const PVR_RECORDING &recording) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR SetRecordingPlayCount(const PVR_RECORDING &recording, int count) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR SetRecordingLastPlayedPosition(const PVR_RECORDING &recording, int lastplayedposition) { return PVR_ERROR_NOT_IMPLEMENTED; } -int GetRecordingLastPlayedPosition(const PVR_RECORDING &recording) { return -1; } -PVR_ERROR GetRecordingEdl(const PVR_RECORDING&, PVR_EDL_ENTRY[], int*) { return PVR_ERROR_NOT_IMPLEMENTED; }; -PVR_ERROR GetTimerTypes(PVR_TIMER_TYPE types[], int *size) { return PVR_ERROR_NOT_IMPLEMENTED; } -int GetTimersAmount(void) { return -1; } -PVR_ERROR GetTimers(ADDON_HANDLE handle) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR AddTimer(const PVR_TIMER &timer) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR DeleteTimer(const PVR_TIMER &timer, bool bForceDelete) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR UpdateTimer(const PVR_TIMER &timer) { return PVR_ERROR_NOT_IMPLEMENTED; } -void DemuxAbort(void) {} -DemuxPacket* DemuxRead(void) { return NULL; } -void PauseStream(bool bPaused) {} -bool CanPauseStream(void) { return false; } -bool CanSeekStream(void) { return false; } -bool SeekTime(double,bool,double*) { return false; } -void SetSpeed(int) {}; -bool IsTimeshifting(void) { return false; } -bool IsRealTimeStream() { return true; } -PVR_ERROR UndeleteRecording(const PVR_RECORDING& recording) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR DeleteAllRecordingsFromTrash() { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR SetEPGTimeFrame(int) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR GetDescrambleInfo(PVR_DESCRAMBLE_INFO*) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR SetRecordingLifetime(const PVR_RECORDING*) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR GetStreamTimes(PVR_STREAM_TIMES *) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR GetRecordingStreamProperties(const PVR_RECORDING*, PVR_NAMED_VALUE*, unsigned int*) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR IsEPGTagRecordable(const EPG_TAG*, bool*) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR IsEPGTagPlayable(const EPG_TAG*, bool*) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR GetEPGTagStreamProperties(const EPG_TAG*, PVR_NAMED_VALUE*, unsigned int*) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR GetEPGTagEdl(const EPG_TAG* epgTag, PVR_EDL_ENTRY edl[], int *size) { return PVR_ERROR_NOT_IMPLEMENTED; } -PVR_ERROR GetStreamReadChunkSize(int* chunksize) { return PVR_ERROR_NOT_IMPLEMENTED; } - -} //end extern "C" diff -Nru kodi-pvr-njoy-3.4.2/src/client.h kodi-pvr-njoy-20.3.0/src/client.h --- kodi-pvr-njoy-3.4.2/src/client.h 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/src/client.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -#pragma once -/* - * Copyright (C) 2005-2012 Team XBMC - * http://www.xbmc.org - * - * 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, 675 Mass Ave, Cambridge, MA 02139, USA. - * http://www.gnu.org/copyleft/gpl.html - * - */ - -#include "libXBMC_addon.h" -#include "libXBMC_pvr.h" - -#define DEFAULT_HOST "127.0.0.1" -#define DEFAULT_PORT 80 - -extern bool g_bCreated; ///< Shows that the Create function was successfully called -extern std::string g_szUserPath; ///< The Path to the user directory inside user profile -extern std::string g_szClientPath; ///< The Path where this driver is located - -/* Client Settings */ -extern std::string g_strHostname; -extern int g_iPort; - -extern ADDON::CHelper_libXBMC_addon *XBMC; -extern CHelper_libXBMC_pvr *PVR; - diff -Nru kodi-pvr-njoy-3.4.2/src/N7Xml.cpp kodi-pvr-njoy-20.3.0/src/N7Xml.cpp --- kodi-pvr-njoy-3.4.2/src/N7Xml.cpp 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/src/N7Xml.cpp 2022-09-16 13:47:09.000000000 +0000 @@ -1,152 +1,213 @@ - +/* + * Copyright (C) 2005-2021 Team Kodi (https://kodi.tv) + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSE.md for more information. + */ #include "N7Xml.h" -#include -#include "tinyxml.h" -#include "util/XMLUtils.h" - -using namespace ADDON; +#include +#include -bool CCurlFile::Get(const std::string &strURL, std::string &strResult) +bool CCurlFile::Get(const std::string& strURL, std::string& strResult) { - void* fileHandle = XBMC->OpenFile(strURL.c_str(), 0); - if (fileHandle) + kodi::vfs::CFile fileHandle; + if (fileHandle.OpenFile(strURL, 0)) { - char buffer[1024]; - while (XBMC->ReadFileString(fileHandle, buffer, 1024)) + std::string buffer; + while (fileHandle.ReadLine(buffer)) strResult.append(buffer); - XBMC->CloseFile(fileHandle); return true; } return false; } -N7Xml::N7Xml(void) : - m_connected(false) +N7Xml::N7Xml() { + kodi::Log(ADDON_LOG_DEBUG, "Creating N7 PVR-Client"); + + m_strHostname = kodi::addon::GetSettingString("n7host", DEFAULT_HOST); + m_iPort = kodi::addon::GetSettingInt("n7port", DEFAULT_PORT); + list_channels(); } -N7Xml::~N7Xml(void) +ADDON_STATUS N7Xml::SetSetting(const std::string& settingName, + const kodi::addon::CSettingValue& settingValue) +{ + if (settingName == "n7host") + { + std::string tmp_sHostname; + kodi::Log(ADDON_LOG_INFO, "Changed Setting 'host' from %s to %s", m_strHostname.c_str(), + settingValue.GetString().c_str()); + tmp_sHostname = m_strHostname; + m_strHostname = settingValue.GetString(); + if (tmp_sHostname != m_strHostname) + return ADDON_STATUS_NEED_RESTART; + } + else if (settingName == "n7port") + { + kodi::Log(ADDON_LOG_INFO, "Changed Setting 'port' from %u to %u", m_iPort, + settingValue.GetInt()); + if (m_iPort != settingValue.GetInt()) + { + m_iPort = settingValue.GetInt(); + return ADDON_STATUS_NEED_RESTART; + } + } + return ADDON_STATUS_OK; +} + +PVR_ERROR N7Xml::GetCapabilities(kodi::addon::PVRCapabilities& capabilities) +{ + capabilities.SetSupportsTV(true); + capabilities.SetSupportsRecordings(false); + capabilities.SetSupportsRecordingsRename(false); + capabilities.SetSupportsRecordingsLifetimeChange(false); + capabilities.SetSupportsDescrambleInfo(false); + + return PVR_ERROR_NO_ERROR; +} + +PVR_ERROR N7Xml::GetBackendName(std::string& name) +{ + name = "NJoy N7"; + return PVR_ERROR_NO_ERROR; +} + +PVR_ERROR N7Xml::GetBackendVersion(std::string& version) { - m_channels.clear(); + version = "-"; + return PVR_ERROR_NO_ERROR; +} + +PVR_ERROR N7Xml::GetConnectionString(std::string& connection) +{ + connection = "connected"; + return PVR_ERROR_NO_ERROR; +} + +PVR_ERROR N7Xml::GetBackendHostname(std::string& hostname) +{ + hostname = m_strHostname; + return PVR_ERROR_NO_ERROR; +} + +PVR_ERROR N7Xml::GetChannelsAmount(int& amount) +{ + amount = m_channels.size(); + return PVR_ERROR_NO_ERROR; +} + +PVR_ERROR N7Xml::GetChannels(bool radio, kodi::addon::PVRChannelsResultSet& results) +{ + if (m_connected) + { + for (const auto& channel : m_channels) + { + kodi::Log(ADDON_LOG_DEBUG, "N7Xml - Loaded channel - %s.", + channel.second.GetChannelName().c_str()); + results.Add(channel.second); + } + } + else + { + kodi::Log(ADDON_LOG_DEBUG, "N7Xml - no channels loaded"); + } + + return PVR_ERROR_NO_ERROR; } -int N7Xml::getChannelsAmount() -{ - return m_channels.size(); +PVR_ERROR N7Xml::GetChannelStreamProperties(const kodi::addon::PVRChannel& channel, + std::vector& properties) +{ + for (const auto& chan : m_channels) + { + if (chan.second.GetUniqueId() == channel.GetUniqueId()) + { + properties.emplace_back(PVR_STREAM_PROPERTY_STREAMURL, chan.first); + properties.emplace_back(PVR_STREAM_PROPERTY_ISREALTIMESTREAM, "true"); + return PVR_ERROR_NO_ERROR; + } + } + + return PVR_ERROR_UNKNOWN; } void N7Xml::list_channels() { - std::string strUrl; - strUrl = StringUtils::Format("http://%s:%i/n7channel_nt.xml", g_strHostname.c_str(), g_iPort); + std::string strUrl = + "http://" + m_strHostname + ":" + std::to_string(m_iPort) + "/n7channel_nt.xml"; std::string strXML; CCurlFile http; - if(!http.Get(strUrl, strXML)) + if (!http.Get(strUrl, strXML)) { - XBMC->Log(LOG_DEBUG, "N7Xml - Could not open connection to N7 backend."); + kodi::Log(ADDON_LOG_DEBUG, "N7Xml - Could not open connection to N7 backend."); + kodi::addon::CInstancePVRClient::ConnectionStateChange("", PVR_CONNECTION_STATE_SERVER_UNREACHABLE, ""); } else { TiXmlDocument xml; xml.Parse(strXML.c_str()); TiXmlElement* rootXmlNode = xml.RootElement(); - if (rootXmlNode == NULL) + if (rootXmlNode == nullptr) return; TiXmlElement* channelsNode = rootXmlNode->FirstChildElement("channel"); if (channelsNode) { - XBMC->Log(LOG_DEBUG, "N7Xml - Connected to N7 backend."); + kodi::Log(ADDON_LOG_DEBUG, "N7Xml - Connected to N7 backend."); m_connected = true; int iUniqueChannelId = 0; - TiXmlNode *pChannelNode = NULL; - while ((pChannelNode = channelsNode->IterateChildren(pChannelNode)) != NULL) + TiXmlNode* pChannelNode = nullptr; + while ((pChannelNode = channelsNode->IterateChildren(pChannelNode)) != nullptr) { - std::string strTmp; - PVRChannel channel; + kodi::addon::PVRChannel channel; /* unique ID */ - channel.iUniqueId = ++iUniqueChannelId; + channel.SetUniqueId(++iUniqueChannelId); /* channel number */ - if (!XMLUtils::GetInt(pChannelNode, "number", channel.iChannelNumber)) - channel.iChannelNumber = channel.iUniqueId; + const TiXmlNode* pNode = pChannelNode->FirstChild("number"); + if (pNode && pNode->FirstChild()) + channel.SetChannelNumber(atoi(pNode->FirstChild()->Value())); + else + channel.SetChannelNumber(channel.GetUniqueId()); /* channel name */ - if (!XMLUtils::GetString(pChannelNode, "title", strTmp)) + const TiXmlElement* pElement = pChannelNode->FirstChildElement("title"); + if (pElement && (pNode = pElement->FirstChild())) + channel.SetChannelName(pNode->Value()); + else continue; - channel.strChannelName = strTmp; /* icon path */ - const TiXmlElement* pElement = pChannelNode->FirstChildElement("media:thumbnail"); - channel.strIconPath = pElement->Attribute("url"); + pElement = pChannelNode->FirstChildElement("media:thumbnail"); + channel.SetIconPath(pElement->Attribute("url")); /* channel url */ - if (!XMLUtils::GetString(pChannelNode, "guid", strTmp)) - channel.strStreamURL = ""; - else - channel.strStreamURL = strTmp; + std::string url; + pElement = pChannelNode->FirstChildElement("media:content"); + if (pElement) + { + url = pElement->Attribute("url"); + channel.SetMimeType(pElement->Attribute("type")); + } + + if (url.empty()) + { + pElement = pChannelNode->FirstChildElement("guid"); + if (pElement && (pNode = pElement->FirstChild())) + url = pNode->Value(); + } - m_channels.push_back(channel); + m_channels.emplace_back(url, channel); } } - } -} - - -PVR_ERROR N7Xml::requestChannelList(ADDON_HANDLE handle, bool bRadio) -{ - if (m_connected) - { - std::vector::const_iterator item; - PVR_CHANNEL tag; - for( item = m_channels.begin(); item != m_channels.end(); ++item) - { - const PVRChannel& channel = *item; - memset(&tag, 0 , sizeof(tag)); - - tag.iUniqueId = channel.iUniqueId; - tag.iChannelNumber = channel.iChannelNumber; - strncpy(tag.strChannelName, channel.strChannelName.c_str(), sizeof(tag.strChannelName) - 1); - strncpy(tag.strIconPath, channel.strIconPath.c_str(), sizeof(tag.strIconPath) - 1); - - XBMC->Log(LOG_DEBUG, "N7Xml - Loaded channel - %s.", tag.strChannelName); - PVR->TransferChannelEntry(handle, &tag); - } - } - else - { - XBMC->Log(LOG_DEBUG, "N7Xml - no channels loaded"); - } - - return PVR_ERROR_NO_ERROR; -} - -PVR_ERROR N7Xml::GetChannelStreamProperties(const PVR_CHANNEL* channel, PVR_NAMED_VALUE* props, unsigned int* prop_size) -{ - if (*prop_size < 2) - return PVR_ERROR_INVALID_PARAMETERS; - if (!m_channels.empty()) - { - std::vector::const_iterator item; - for (item = m_channels.begin(); item != m_channels.end(); ++item) - { - const PVRChannel& chan = *item; - if (chan.iUniqueId == channel->iUniqueId) - { - strncpy(props[0].strName, PVR_STREAM_PROPERTY_STREAMURL, sizeof(props[0].strName) - 1); - strncpy(props[0].strValue, chan.strStreamURL.c_str(), sizeof(props[0].strValue) - 1); - strncpy(props[1].strName, PVR_STREAM_PROPERTY_ISREALTIMESTREAM, sizeof(props[1].strName) - 1); - strncpy(props[1].strValue, "true", sizeof(props[1].strValue) - 1); - *prop_size = 2; - return PVR_ERROR_NO_ERROR; - } - } + kodi::addon::CInstancePVRClient::ConnectionStateChange("", PVR_CONNECTION_STATE_CONNECTED, ""); } - return PVR_ERROR_UNKNOWN; } +ADDONCREATOR(N7Xml) diff -Nru kodi-pvr-njoy-3.4.2/src/N7Xml.h kodi-pvr-njoy-20.3.0/src/N7Xml.h --- kodi-pvr-njoy-3.4.2/src/N7Xml.h 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/src/N7Xml.h 2022-09-16 13:47:09.000000000 +0000 @@ -1,45 +1,56 @@ +/* + * Copyright (C) 2005-2021 Team Kodi (https://kodi.tv) + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSE.md for more information. + */ + #pragma once -#include "client.h" +#include #include -struct PVRChannel -{ - int iUniqueId; - int iChannelNumber; - std::string strChannelName; - std::string strIconPath; - std::string strStreamURL; - - PVRChannel() - { - iUniqueId = 0; - iChannelNumber = 0; - strChannelName = ""; - strIconPath = ""; - strStreamURL = ""; - } -}; +#define DEFAULT_HOST "127.0.0.1" +#define DEFAULT_PORT 80 class CCurlFile { public: - CCurlFile(void) {}; - ~CCurlFile(void) {}; + CCurlFile() = default; + ~CCurlFile() = default; - bool Get(const std::string &strURL, std::string &strResult); + bool Get(const std::string& strURL, std::string& strResult); }; -class N7Xml +class ATTR_DLL_LOCAL N7Xml : public kodi::addon::CAddonBase, + public kodi::addon::CInstancePVRClient + { public: - N7Xml(void); - ~N7Xml(void); - int getChannelsAmount(void); - PVR_ERROR requestChannelList(ADDON_HANDLE handle, bool bRadio); - PVR_ERROR GetChannelStreamProperties(const PVR_CHANNEL*, PVR_NAMED_VALUE*, unsigned int*); - void list_channels(void); + N7Xml(); + ~N7Xml() override = default; + + ADDON_STATUS SetSetting(const std::string& settingName, + const kodi::addon::CSettingValue& settingValue) override; + + PVR_ERROR GetCapabilities(kodi::addon::PVRCapabilities& capabilities) override; + PVR_ERROR GetBackendName(std::string& name) override; + PVR_ERROR GetBackendVersion(std::string& version) override; + PVR_ERROR GetBackendHostname(std::string& hostname) override; + PVR_ERROR GetConnectionString(std::string& connection) override; + + PVR_ERROR GetChannelsAmount(int& amount) override; + PVR_ERROR GetChannels(bool bRadio, kodi::addon::PVRChannelsResultSet& results) override; + PVR_ERROR GetChannelStreamProperties( + const kodi::addon::PVRChannel& channel, + std::vector& properties) override; + private: - std::vector m_channels; - bool m_connected; + void list_channels(); + + std::string m_strHostname = DEFAULT_HOST; + int m_iPort = DEFAULT_PORT; + + std::vector> m_channels; + bool m_connected = false; }; diff -Nru kodi-pvr-njoy-3.4.2/.travis.yml kodi-pvr-njoy-20.3.0/.travis.yml --- kodi-pvr-njoy-3.4.2/.travis.yml 2018-10-14 16:31:18.000000000 +0000 +++ kodi-pvr-njoy-20.3.0/.travis.yml 2022-09-16 13:47:09.000000000 +0000 @@ -1,43 +1,54 @@ language: cpp # -# Define the build matrix -# -# Travis defaults to building on Ubuntu Precise when building on -# Linux. We need Trusty in order to get up to date versions of -# cmake and g++. +# Define the builds to get up to date versions of cmake and gcc # +env: + global: + - app_id=pvr.njoy + matrix: include: - os: linux - dist: trusty + dist: bionic sudo: required compiler: gcc - os: linux - dist: trusty + dist: bionic sudo: required compiler: clang + - os: linux + dist: bionic + sudo: required + compiler: gcc + env: DEBIAN_BUILD=true + - os: linux + dist: focal + sudo: required + compiler: gcc + env: DEBIAN_BUILD=true - os: osx - osx_image: xcode7.3 - - os: osx - osx_image: xcode6.1 + osx_image: xcode10.2 -# -# Some of the OS X images don't have cmake, contrary to what people -# on the Internet say -# before_install: - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then which cmake || brew update ; fi - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then which cmake || brew install cmake ; fi + - if [[ $DEBIAN_BUILD == true ]]; then sudo add-apt-repository -y ppa:team-xbmc/xbmc-nightly; fi + - if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get update; fi + - if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get install fakeroot; fi # # The addon source is automatically checked out in $TRAVIS_BUILD_DIR, # we'll put the Kodi source on the same level # before_script: - - cd $TRAVIS_BUILD_DIR/.. - - git clone --depth=1 https://github.com/xbmc/xbmc.git - - cd pvr.njoy && mkdir build && cd build - - cmake -DADDONS_TO_BUILD=pvr.njoy -DADDON_SRC_PREFIX=$TRAVIS_BUILD_DIR/.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=$TRAVIS_BUILD_DIR/../xbmc/addons -DPACKAGE_ZIP=1 $TRAVIS_BUILD_DIR/../xbmc/cmake/addons + - 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 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 sudo apt-get build-dep $TRAVIS_BUILD_DIR; fi -script: make +script: + - if [[ $DEBIAN_BUILD != true ]]; then make; fi + - if [[ $DEBIAN_BUILD == true ]]; then ./debian-addon-package-test.sh $TRAVIS_BUILD_DIR; fi