Skip to content

Commit

Permalink
[plugin.program.smartplaylist.generator] v.0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunatixz committed Jan 6, 2025
1 parent ac0cf09 commit 7c370b9
Show file tree
Hide file tree
Showing 14 changed files with 1,896 additions and 0 deletions.
675 changes: 675 additions & 0 deletions plugin.program.smartplaylist.generator/LICENSE.md

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions plugin.program.smartplaylist.generator/addon.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon id="plugin.program.smartplaylist.generator" version="0.1.7" name="Smartplaylist Generator" provider-name="Lunatixz">
<requires>
<import addon="xbmc.python" version="3.0.1"/>
<import addon="script.module.six" version="1.0.0"/>
<import addon="script.module.kodi-six" version="0.1.3.1"/>
<import addon="script.module.infotagger" version="0.0.5"/>
<import addon="script.module.simplecache" version="1.0.0"/>
<import addon="script.module.requests" version="0.0.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="resources/lib/default.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.service" library="resources/lib/service.py"/>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Generate Smartplaylists from third-party lists.</summary>
<description lang="en_GB">Generate Smartplaylists from third-party lists.</description>
<platform>all</platform>
<license>GPL-3.0-or-later</license>
<source>https://github.com/Lunatixz/KODI_Addons/tree/master/plugin.program.smartplaylist.generator</source>
<forum>https://forum.kodi.tv/showthread.php?tid=379825</forum>
<disclaimer lang="en_GB">BETA PROJECT; SUBJECT TO BUGS</disclaimer>
<reuselanguageinvoker>false</reuselanguageinvoker>
<assets>
<icon>resources/images/icon.png</icon>
<fanart>resources/images/fanart.jpg</fanart>
</assets>
</extension>
</addon>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,165 @@
# XBMC Media Center language file
# Addon Name: Smartplaylist Generator
# Addon id: plugin.program.smartplaylist.generator
# Addon Provider: Lunatixz
msgid ""
msgstr ""
"Project-Id-Version: XBMC Addons\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: XBMC Translation Team\n"
"Language-Team: English"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: en\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

msgctxt "#32000"
msgid "General"
msgstr ""

msgctxt "#32001"
msgid "Enable Debugging"
msgstr ""

msgctxt "#32002"
msgid "Include Missing Titles"
msgstr ""

msgctxt "#32003"
msgid "Smartplaylist Field Type"
msgstr ""

msgctxt "#32004"
msgid "Title"
msgstr ""

msgctxt "#32005"
msgid "File"
msgstr ""

msgctxt "#32006"
msgid "Last Update"
msgstr ""

msgctxt "#32007"
msgid "Smartplaylist match content based on Title or File."
msgstr ""

msgctxt "#32008"
msgid "Run every"
msgstr ""

msgctxt "#32009"
msgid "6 hours"
msgstr ""

msgctxt "#32010"
msgid "12 hours"
msgstr ""

msgctxt "#32011"
msgid "24 hours"
msgstr ""

msgctxt "#32012"
msgid "48 hours"
msgstr ""

msgctxt "#32013"
msgid "Disabled"
msgstr ""

msgctxt "#32014"
msgid "Service"
msgstr ""

msgctxt "#32015"
msgid "Finished!"
msgstr ""

msgctxt "#32016"
msgid "SmartPlaylst Video Folder"
msgstr ""

msgctxt "#32017"
msgid "SmartPlaylists"
msgstr ""

msgctxt "#32018"
msgid "Notifications"
msgstr ""

msgctxt "#32019"
msgid "Path"
msgstr ""

msgctxt "#32020"
msgid "Updated"
msgstr ""

msgctxt "#32021"
msgid "Created"
msgstr ""

msgctxt "#32022"
msgid "Matching"
msgstr ""

msgctxt "#32023"
msgid "No %s User Lists Selected!"
msgstr ""

msgctxt "#32024"
msgid "%s: No Matches Found!"
msgstr ""

msgctxt "#32025"
msgid "%s Currently Running..."
msgstr ""

msgctxt "#32100"
msgid "Trakt"
msgstr ""

msgctxt "#32101"
msgid "Username"
msgstr ""

msgctxt "#32102"
msgid "Enter Trakt Username"
msgstr ""

msgctxt "#32103"
msgid "Client ID"
msgstr ""

msgctxt "#32104"
msgid "Enter Client ID found on the Trakt Website under API Settings."
msgstr ""

msgctxt "#32105"
msgid "Select User Lists"
msgstr ""

msgctxt "#32106"
msgid "Build SmartPlaylst"
msgstr ""

msgctxt "#32107"
msgid "Enable Trakt"
msgstr ""

msgctxt "#32108"
msgid "SmartPlaylst included Titles not found in your collection."
msgstr ""

msgctxt "#32109"
msgid "Select User Lists convert into SmartPlaylst"
msgstr ""

msgctxt "#32110"
msgid "Manually Start SmartPlaylists Service"
msgstr ""
Loading

0 comments on commit 7c370b9

Please sign in to comment.