fix(legacy): update or remove broken links

This commit is contained in:
jo 2022-09-21 00:44:42 +02:00 committed by Kyle Robbertze
parent 4bb5f58a7c
commit 6b16df8966
33 changed files with 3210 additions and 3216 deletions

View File

@ -59,7 +59,7 @@
"js/airtime/dashboard/versiontooltip.js": "f267c6ec0205e98f1ffba5f636928f7a",
"js/airtime/library/events/library_playlistbuilder.js": "1e0aa11953c7ff243cd2df241cc8a296",
"js/airtime/library/events/library_showbuilder.js": "996a5c3008eb17552ee8f891d88c9341",
"js/airtime/library/library.js": "54b969bd06ddc919a7fba9cadc693567",
"js/airtime/library/library.js": "d47ed07f83c68271b2e3bb50d4eb2b8f",
"js/airtime/library/plupload.js": "7f754a28ac2d4060aec918c688a74a22",
"js/airtime/library/podcast.js": "f4fd354d739e7121ba00162496c295df",
"js/airtime/library/publish.js": "851ef4c4caa9e9220acf945c21760189",
@ -80,7 +80,7 @@
"js/airtime/preferences/musicdirs.js": "72312faa4081949d5c17ce2d3428dbdc",
"js/airtime/preferences/preferences.js": "73aec5c4969eef8f6b02f044b00425c3",
"js/airtime/preferences/streamsetting.js": "b45e7ad91d0b3f5e582fd3bd4c697a05",
"js/airtime/schedule/add-show.js": "22ce11f5ffd513be4f3492af1001ebdf",
"js/airtime/schedule/add-show.js": "4984c9bdac1e541eecab2541e21450a7",
"js/airtime/schedule/full-calendar-functions.js": "09ac64ebbe48666dcc3c4669b12509b7",
"js/airtime/schedule/schedule.js": "d835a1c6110c033edf5c8d0abb701d7c",
"js/airtime/showbuilder/builder.js": "08338d5f8e957bda2bac397e958f5610",

View File

@ -15,9 +15,7 @@ class Application_Common_LocaleHelper
* From: https://www.binarytides.com/php-array-of-iso-639-1-language-codes-and-names/
*
* ISO 639-1 Language Codes
* References :
* 1. https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
* 2. https://blog.xoundboy.com/?p=235
* https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
*/
return [
'en' => _('English'),

View File

@ -459,7 +459,7 @@ final class LocaleController extends Zend_Controller_Action
'Disabled' => _('Disabled'),
'Cancel upload' => _('Cancel upload'),
'Type' => _('Type'),
"Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>" => _("Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"),
"Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>" => _("Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"),
'Podcast settings saved' => _('Podcast settings saved'),
'Are you sure you want to delete this user?' => _('Are you sure you want to delete this user?'),
"Can't delete yourself!" => _("Can't delete yourself!"),

View File

@ -29,7 +29,6 @@ class Application_Model_ServiceRegister
// Need to convert ipv6 to ipv4 since Monit server does not appear
// to allow access via an ipv6 address.
// http://[::1]:2812 does not respond.
// Bug: https://savannah.nongnu.org/bugs/?27608
if ($p_ipAddress == '::1') {
$p_ipAddress = '127.0.0.1';
}

View File

@ -108,7 +108,7 @@ class Application_Model_StoredFile
* Set multiple metadata values using defined metadata constants.
*
* @param array $p_md
* example: $p_md['MDATA_KEY_URL'] = 'http://www.fake.com'
* example: $p_md['MDATA_KEY_URL'] = 'https://example.org'
*/
public function setMetadata($p_md = null)
{
@ -163,7 +163,7 @@ class Application_Model_StoredFile
* Set multiple metadata values using database columns as indexes.
*
* @param array $p_md
* example: $p_md['url'] = 'http://www.fake.com'
* example: $p_md['url'] = 'https://www.example.com'
*/
public function setDbColMetadata($p_md = null)
{

View File

@ -179,7 +179,7 @@ class Application_Model_Webstream implements Application_Model_LibraryEditable
$mediaUrl = null;
if ($result == 0) {
$valid['url'][0] = false;
$valid['url'][1] = _('URL should be of form "http://domain"');
$valid['url'][1] = _('URL should be of form "https://example.org"');
} elseif (strlen($url) > 512) {
$valid['url'][0] = false;
$valid['url'][1] = _('URL should be 512 characters or less');
@ -344,7 +344,7 @@ class Application_Model_Webstream implements Application_Model_LibraryEditable
* 0 => "HTTP/1.1 302 Moved Temporarily",
* 1 => "X-Powered-By: Servlet/3.0 JSP/2.2 (GlassFish Server Open Source Edition 3.1.1 Java/Sun Microsystems Inc./1.6)",
* 2 => "Server: GlassFish Server Open Source Edition 3.1.1",
* 3 => "Location: https://3043.live.streamtheworld.com:80/SAM04AAC89_SC",
* 3 => "Location: https://example.org/SAM04AAC89_SC",
* 4 => "Content-Type: text/html;charset=ISO-8859-1",
* 5 => "Content-Language: en-US",
* 6 => "Content-Length: 202",

View File

@ -2,9 +2,6 @@
/**
* Class Rest_RouteController.
*
* Taken from https://github.com/aporat/Application_Rest_Controller_Route
* to enable hierarchy routing
*/
class Rest_RouteController extends Zend_Controller_Router_Route
{

View File

@ -11,7 +11,7 @@
</dd>
<div id="add_show_playlist_dropdown">
<p><?php echo _("Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/docs/playlists'>More information</a>"); ?></p>
<p><?php echo _("Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"); ?></p>
<dt id="add_show_autoplaylist_id">
<label for="add_show_autoplaylist_id" class="required">
<?php echo $this->element->getElement('add_show_autoplaylist_id')->getLabel() ?>

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2015-09-05 08:33+0000\n"
"Last-Translator: Daniel James <daniel@64studio.com>\n"
"Language-Team: Czech (Czech Republic)\n"
@ -36,543 +36,543 @@ msgstr "%s - %s - %s není platné datum"
msgid "%s:%s:%s is not a valid time"
msgstr "%s : %s : %s není platný čas"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2584,7 +2584,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3966,8 +3966,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Délka by měla mít tvar \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL by měla mít tvar \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "URL by měla mít tvar \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2021-10-17 08:09+0000\n"
"Last-Translator: Kyle Robbertze <github@paddatrapper.com>\n"
"Language-Team: German (Austria) <https://hosted.weblate.org/projects/libretime/legacy/de_AT/>\n"
@ -37,543 +37,543 @@ msgstr "%s-%s-%s ist kein gültiges Datum"
msgid "%s:%s:%s is not a valid time"
msgstr "%s-%s-%s ist kein gültiger Zeitpunkt"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2594,7 +2594,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3976,8 +3976,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Dauer im Format \"00h 00m\" eingeben."
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL im Format \"http://domain\" eingeben."
msgid "URL should be of form \"https://example.org\""
msgstr "URL im Format \"https://example.org\" eingeben."
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2022-07-30 21:18+0000\n"
"Last-Translator: Domenik Töfflinger <domenikt96@yahoo.de>\n"
"Language-Team: German <https://hosted.weblate.org/projects/libretime/legacy/de/>\n"
@ -40,543 +40,543 @@ msgstr "%s-%s-%s ist kein gültiges Datum"
msgid "%s:%s:%s is not a valid time"
msgstr "%s-%s-%s ist kein gültiger Zeitpunkt"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr "Englisch"
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr "Afar"
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr "Abchasisch"
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr "Afrikaans"
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr "Amharisch"
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr "Arabisch"
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr "Assamesisch"
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr "Aymarisch"
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr "Azerbaijani"
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr "Bashkirisch"
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr "Belarussisch"
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr "Bulgarisch"
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr "Biharisch"
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr "Bislamisch"
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr "Bengalisch"
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr "Tibetanisch"
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr "Bretonisch"
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr "Katalanisch"
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr "Korsisch"
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr "Tschechisch"
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr "Walisisch"
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr "Dänisch"
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr "Deutsch"
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr "Dzongkha"
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr "Griechisch"
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr "Esperanto"
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr "Spanisch"
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr "Estnisch"
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr "Baskisch"
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr "Persisch"
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr "Finnisch"
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr "Fijianisch"
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr "Färöisch"
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr "Französisch"
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr "Friesisch"
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr "Irisch"
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr "Schottisches Gälisch"
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr "Galizisch"
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr "Guarani"
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr "Gujaratisch"
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr "Haussa"
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr "Hindi"
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr "Kroatisch"
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr "Ungarisch"
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr "Armenisch"
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr "Interlingua"
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr "Interlingue"
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr "Inupiak"
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr "Indonesisch"
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr "Isländisch"
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr "Italienisch"
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr "Hebräisch"
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr "Japanisch"
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr "Jiddisch"
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr "Javanisch"
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr "Georgisch"
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr "Kasachisch"
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr "Kalaallisut"
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr "Kambodschanisch"
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr "Kannada"
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr "Koreanisch"
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr "Kaschmirisch"
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr "Kurdisch"
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr "Kirgisisch"
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr "Latein"
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr "Lingala"
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr "Laotisch"
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr "Litauisch"
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr "Lettisch"
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr "Madagassisch"
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr "Maorisch"
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr "Mazedonisch"
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr "Malayalam"
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr "Mongolisch"
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr "Moldavisch"
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr "Marathi"
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr "Malaysisch"
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr "Maltesisch"
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr "Burmesisch"
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr "Nauruisch"
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr "Nepalesisch"
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr "Niederländisch"
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr "Norwegisch"
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr "Okzitanisch"
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr "Oriya"
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr "Pandschabi"
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr "Polnisch"
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr "Paschtu"
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr "Portugiesisch"
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr "Quechua"
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr "Rätoromanisch"
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr "Kirundisch"
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr "Rumänisch"
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr "Russisch"
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr "Kijarwanda"
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr "Sanskrit"
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr "Sindhi"
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr "Sango"
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr "Serbokroatisch"
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr "Singhalesisch"
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr "Slowakisch"
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr "Slowenisch"
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr "Samoanisch"
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr "Schonisch"
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr "Somalisch"
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr "Albanisch"
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr "Serbisch"
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr "Swasiländisch"
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr "Sesothisch"
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr "Sundanesisch"
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr "Schwedisch"
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr "Swahili"
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr "Tamilisch"
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr "Tegulu"
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr "Tadschikisch"
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr "Thai"
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr "Tigrinja"
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr "Türkmenisch"
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr "Tagalog"
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr "Sezuan"
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr "Tongaisch"
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr "Türkisch"
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr "Tsongaisch"
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr "Tatarisch"
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr "Twi"
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr "Ukrainisch"
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr "Urdu"
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr "Usbekisch"
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr "Vietnamesisch"
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr "Volapük"
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr "Wolof"
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr "Xhosa"
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr "Yoruba"
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr "Chinesisch"
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr "Zulu"
@ -2597,7 +2597,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3979,8 +3979,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Dauer im Format \"00h 00m\" eingeben."
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL im Format \"http://domain\" eingeben."
msgid "URL should be of form \"https://example.org\""
msgstr "URL im Format \"https://example.org\" eingeben."
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2021-10-17 08:09+0000\n"
"Last-Translator: Kyle Robbertze <github@paddatrapper.com>\n"
"Language-Team: Greek <https://hosted.weblate.org/projects/libretime/legacy/el/>\n"
@ -37,543 +37,543 @@ msgstr "%s-%s-%s δεν αποτελεί έγκυρη ημερομηνία"
msgid "%s:%s:%s is not a valid time"
msgstr "%s : %s : %s δεν αποτελεί έγκυρη ώρα"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2585,7 +2585,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3967,8 +3967,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Το μήκος πρέπει να είναι υπό μορφής \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "Το URL θα πρέπει να είναι υπό μορφής \"http://domain \""
msgid "URL should be of form \"https://example.org\""
msgstr "Το URL θα πρέπει να είναι υπό μορφής \"https://example.org \""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2015-09-05 08:33+0000\n"
"Last-Translator: Daniel James <daniel@64studio.com>\n"
"Language-Team: English (Canada)\n"
@ -36,543 +36,543 @@ msgstr "%s-%s-%s is not a valid date"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s is not a valid time"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2584,7 +2584,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3966,8 +3966,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Length should be of form \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL should be of form \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "URL should be of form \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2022-07-14 09:18+0000\n"
"Last-Translator: Kyle Robbertze <github@paddatrapper.com>\n"
"Language-Team: English (United Kingdom) <https://hosted.weblate.org/projects/libretime/legacy/en_GB/>\n"
@ -37,545 +37,545 @@ msgstr "%s-%s-%s is not a valid date"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s is not a valid time"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr "English (United Kingdom)"
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr "Afar"
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr "Abkhazian"
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr "Afrikaans"
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr "Amharic"
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr "Arabic"
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr "Assamese"
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr "Aymara"
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr "Azerbaijani"
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr "Bashkir"
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr "Bashkir"
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr "Bulgarian"
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr "Bihari"
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr "Bislama"
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr "Bengali"
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr "Tibetan"
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr "Breton"
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr "Catalan"
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr "Corsican"
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr "Czech"
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr "Welsh"
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr "Danish"
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr "German"
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr "Bhutani"
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr "Greek"
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr "Esperanto"
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr "Spanish"
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr "Estonian"
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr "Basque"
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr "Persian"
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr "Finnish"
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr "Fiji"
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr "Faeroese"
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr "French"
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr "Frisian"
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr "Irish"
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr "Scots/Gaelic"
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr "Galician"
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr "Guarani"
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr "Gujarati"
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr "Hausa"
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr "Hindi"
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr "Croatian"
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr "Hungarian"
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr "Armenian"
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr "Interlingua"
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
#, fuzzy
msgid "Interlingue"
msgstr "Interlingue"
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr "Inupiak"
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr "Indonesian"
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr "Icelandic"
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr "Italian"
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr "Hebrew"
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr "Japanese"
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr "Yiddish"
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
#, fuzzy
msgid "Javanese"
msgstr "Javanese"
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr "Georgian"
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr "Kazakh"
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr "Greenlandic"
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr "Cambodian"
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr "Kannada"
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr "Korean"
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr "Kashmiri"
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr "Kurdish"
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr "Kirghiz"
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr "Latin"
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr "Lingala"
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr "Laothian"
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr "Lithuanian"
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr "Latvian/Lettish"
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr "Malagasy"
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr "Maori"
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr "Macedonian"
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr "Malayalam"
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr "Mongolian"
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr "Moldavian"
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr "Marathi"
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr "Malay"
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr "Maltese"
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2589,7 +2589,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3983,8 +3983,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Length should be of form \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL should be of form \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "URL should be of form \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2015-09-05 08:33+0000\n"
"Last-Translator: Daniel James <daniel@64studio.com>\n"
"Language-Team: English (United States)\n"
@ -36,543 +36,543 @@ msgstr "%s-%s-%s is not a valid date"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s is not a valid time"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2584,7 +2584,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3966,8 +3966,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Length should be of form \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL should be of form \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "URL should be of form \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2017-07-19 15:51+0000\n"
"Last-Translator: Xabier Arrabal <xabierarrabal@gmail.com>\n"
"Language-Team: Spanish (Spain)\n"
@ -38,543 +38,543 @@ msgstr "%s-%s-%s no es una fecha válida"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s no es una hora válida"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2595,7 +2595,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3989,8 +3989,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "La duración debe estar en el formato \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "El URL debe estar en el formato \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "El URL debe estar en el formato \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2022-07-06 05:21+0000\n"
"Last-Translator: Maxime Leroy <lisacintosh@gmail.com>\n"
"Language-Team: French <https://hosted.weblate.org/projects/libretime/legacy/fr/>\n"
@ -37,543 +37,543 @@ msgstr "%s-%s-%s n'est pas une date valide"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s n'est pas une durée valide"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr "Anglais"
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr "Afar"
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr "Abkhaze"
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr "Afrikaans"
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr "Amharique"
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr "Arabe"
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr "Assamais"
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr "Aymara"
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr "Azerbaïdjanais"
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr "Bachkir"
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr "Biélorusse"
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr "Bulgare"
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr "Bihari"
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr "Bichelamar"
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr "Bengali"
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr "Tibétain"
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr "Breton"
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr "Catalan"
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr "Corse"
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr "Tchèque"
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr "Gallois"
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr "Danois"
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr "Allemand"
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr "Dzongkha"
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr "Grec"
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr "Espéranto"
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr "Espagnol"
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr "Estonien"
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr "Basque"
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr "Persan"
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr "Finnois"
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr "Fidjien"
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr "Féroïen"
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr "Français"
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr "Frison"
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr "Irlandais"
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr "Gaélique écossais"
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr "Galicien"
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr "Guarani"
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr "Goudjarati"
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr "Haoussa"
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr "Hindi"
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr "Croate"
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr "Hongrois"
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr "Arménien"
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr "Interlingua"
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr "Interlingue"
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr "Inupiak"
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr "Indonésien"
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr "Islandais"
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr "Italien"
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr "Hébreu"
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr "Japonais"
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr "Yiddish"
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr "Javanais"
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr "Géorgien"
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr "Kazakh"
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr "Groenlandais"
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr "Cambodgien"
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr "Kannada"
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr "Coréen"
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr "Cachemire"
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr "Kurde"
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr "Kirghiz"
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr "Latin"
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr "Lingala"
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr "Lao"
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr "Lituanien"
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr "Letton"
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr "Malgache"
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr "Maori"
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr "Macédonien"
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr "Malayalam"
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr "Mongol"
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr "Moldave"
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr "Marathi"
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr "Malais"
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr "Maltais"
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr "Birman"
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr "Nauru"
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr "Népalais"
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr "Néerlandais"
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr "Norvégien"
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr "Occitan"
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr "(Afan) / Oromoor / Oriya"
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr "Pendjabi"
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr "Polonais"
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr "Pachto"
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr "Portugais"
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr "Quetchua"
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr "Romanche"
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr "Kirundi"
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr "Roumain"
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr "Russe"
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr "Kinyarwanda"
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr "Sanskrit"
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr "Sindhi"
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr "Sangro"
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr "Serbo-croate"
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr "Singhalais"
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr "Slovaque"
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr "Slovène"
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr "Samoan"
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr "Shona"
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr "Somali"
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr "Albanais"
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr "Serbe"
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr "Siswati"
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr "Sesotho"
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr "Soundanais"
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr "Suédois"
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr "Swahili"
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr "Tamil"
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr "Télougou"
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr "Tadjik"
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr "Thaï"
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr "Tigrigna"
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr "Turkmène"
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr "Tagalog"
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr "Setswana"
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr "Tonguien"
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr "Turc"
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr "Tsonga"
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr "Tatar"
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr "Twi"
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr "Ukrainien"
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr "Ourdou"
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr "Ouzbek"
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr "Vietnamien"
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr "Volapük"
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr "Wolof"
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr "Xhosa"
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr "Yoruba"
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr "Chinois"
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr "Zoulou"
@ -2594,7 +2594,7 @@ msgid "Type"
msgstr "Type"
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3990,8 +3990,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "La durée doit être de la forme \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL doit être de la forme \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "URL doit être de la forme \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2022-08-14 21:20+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://hosted.weblate.org/projects/libretime/legacy/hr/>\n"
@ -36,543 +36,543 @@ msgstr "%s-%s-%s nije ispravan datum"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s nije ispravno vrijeme"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2585,7 +2585,7 @@ msgid "Type"
msgstr "Vrsta"
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3978,8 +3978,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Duljina mora biti u obliku „00h 00m”"
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL mora biti u obliku „http://domain”"
msgid "URL should be of form \"https://example.org\""
msgstr "URL mora biti u obliku „https://example.org”"
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2021-12-27 20:52+0000\n"
"Last-Translator: f3rr31 <5920873@disroot.org>\n"
"Language-Team: Hungarian <https://hosted.weblate.org/projects/libretime/legacy/hu/>\n"
@ -38,543 +38,543 @@ msgstr "%s-%s-%s érvénytelen dátum"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s érvénytelen időpont"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr "English"
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr "Afar"
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr "Abkhazian"
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr "Afrikaans"
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr "Amharic"
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr "Arabic"
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr "Assamese"
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr "Aymara"
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr "Azerbaijani"
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr "Bashkir"
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr "Belarusian"
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr "Bulgarian"
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr "Bihari"
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr "Bislama"
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr "Bengali/Bangla"
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr "Tibetan"
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr "Breton"
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr "Catalan"
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr "Corsican"
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr "Czech"
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr "Welsh"
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr "Danish"
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr "German"
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr "Bhutani"
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr "Greek"
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr "Esperanto"
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr "Spanish"
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr "Estonian"
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr "Basque"
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr "Persian"
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr "Finnish"
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr "Fiji"
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr "Faeroese"
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr "French"
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr "Frisian"
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr "Irish"
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr "Scots/Gaelic"
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr "Galician"
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr "Guarani"
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr "Gujarati"
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr "Hausa"
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr "Hindi"
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr "Croatian"
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr "magyar"
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr "Armenian"
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr "Interlingua"
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr "Interlingue"
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr "Inupiak"
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr "Indonesian"
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr "Icelandic"
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr "Italian"
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr "Hebrew"
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr "Japanese"
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr "Yiddish"
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr "Javanese"
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr "Georgian"
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr "Kazakh"
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr "Greenlandic"
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr "Cambodian"
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr "Kannada"
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr "Korean"
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr "Kashmiri"
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr "Kurdish"
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr "Kirghiz"
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr "Latin"
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr "Lingala"
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr "Laothian"
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr "Lithuanian"
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr "Latvian/Lettish"
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr "Malagasy"
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr "Maori"
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr "Macedonian"
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr "Malayalam"
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr "Mongolian"
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr "Moldavian"
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr "Marathi"
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr "Malay"
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr "Maltese"
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr "Burmese"
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr "Nauru"
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr "Nepali"
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr "Dutch"
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr "Norwegian"
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr "Occitan"
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr "(Afan)/Oromoor/Oriya"
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr "Punjabi"
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr "Polish"
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr "Pashto/Pushto"
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr "Portuguese"
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr "Quechua"
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr "Rhaeto-Romance"
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr "Kirundi"
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr "Romanian"
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr "Russian"
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr "Kinyarwanda"
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr "Sanskrit"
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr "Sindhi"
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr "Sangro"
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr "Serbo-Croatian"
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr "Singhalese"
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr "Slovak"
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr "Slovenian"
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr "Samoan"
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr "Shona"
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr "Somali"
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr "Albanian"
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr "Serbian"
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr "Siswati"
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr "Sesotho"
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr "Sundanese"
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr "Swedish"
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr "Swahili"
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr "Tamil"
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr "Tegulu"
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr "Tajik"
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr "Thai"
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr "Tigrinya"
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr "Turkmen"
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr "Tagalog"
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr "Setswana"
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr "Tonga"
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr "Turkish"
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr "Tsonga"
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr "Tatar"
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr "Twi"
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr "Ukrainian"
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr "Urdu"
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr "Uzbek"
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr "Vietnamese"
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr "Volapuk"
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr "Wolof"
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr "Xhosa"
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr "Yoruba"
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr "Chinese"
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr "Zulu"
@ -2601,7 +2601,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -4004,8 +4004,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "A hosszúság formája \"00ó 00p\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "Az URL-t „http://domain” formában kell megadni"
msgid "URL should be of form \"https://example.org\""
msgstr "Az URL-t „https://example.org” formában kell megadni"
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2021-10-17 08:09+0000\n"
"Last-Translator: J. Lavoie <j.lavoie@net-c.ca>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/libretime/legacy/it/>\n"
@ -38,543 +38,543 @@ msgstr "%s-%s-%s non è una data valida"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s non è un ora valida"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2586,7 +2586,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3968,8 +3968,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "La lunghezza deve essere nella forma \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL deve essere nella forma \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "URL deve essere nella forma \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2021-10-17 08:09+0000\n"
"Last-Translator: Kyle Robbertze <github@paddatrapper.com>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/libretime/legacy/ja/>\n"
@ -38,543 +38,543 @@ msgstr "%s-%s-%sは正しい日付ではありません"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%sは正しい時間ではありません"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2584,7 +2584,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3966,8 +3966,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "時間は \"00h 00m\"の形式にしてください。"
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL は\"http://domain\"の形式で入力してください。"
msgid "URL should be of form \"https://example.org\""
msgstr "URL は\"https://example.org\"の形式で入力してください。"
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2015-09-05 08:33+0000\n"
"Last-Translator: Daniel James <daniel@64studio.com>\n"
"Language-Team: Korean (Korea)\n"
@ -35,543 +35,543 @@ msgstr "%s-%s-%s는 맞지 않는 날짜 입니다"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s는 맞지 않는 시간 입니다"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2581,7 +2581,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3963,8 +3963,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "길이는 \"00h 00m\"의 형태 여야 합니다 "
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL은 \"http://domain\" 형태여야 합니다"
msgid "URL should be of form \"https://example.org\""
msgstr "URL은 \"https://example.org\" 형태여야 합니다"
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2021-10-17 08:09+0000\n"
"Last-Translator: Kyle Robbertze <github@paddatrapper.com>\n"
"Language-Team: Dutch <https://hosted.weblate.org/projects/libretime/legacy/nl/>\n"
@ -38,543 +38,543 @@ msgstr "%s-%s-%s dit is geen geldige datum"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s Dit is geen geldige tijd"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2588,7 +2588,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3970,8 +3970,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Length should be of form \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL should be of form \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "URL should be of form \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2015-09-05 08:33+0000\n"
"Last-Translator: Daniel James <daniel@64studio.com>\n"
"Language-Team: Polish (Poland)\n"
@ -36,543 +36,543 @@ msgstr "%s-%s-%s nie jest poprawną datą"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s nie jest prawidłowym czasem"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2584,7 +2584,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3966,8 +3966,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Długość powinna mieć postać \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL powinien mieć postać \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "URL powinien mieć postać \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2021-10-17 08:09+0000\n"
"Last-Translator: Kyle Robbertze <github@paddatrapper.com>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/libretime/legacy/pt_BR/>\n"
@ -38,543 +38,543 @@ msgstr "%s-%s-%s não é uma data válida"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s não é um horário válido"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2586,7 +2586,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3968,8 +3968,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "A duração deve ser informada no formato \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "A URL deve estar no formato \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "A URL deve estar no formato \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2022-06-05 10:17+0000\n"
"Last-Translator: МАН69К <weblate@mah69k.net>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/libretime/legacy/ru/>\n"
@ -43,543 +43,543 @@ msgstr "%s - %s - %s недопустимая дата"
msgid "%s:%s:%s is not a valid time"
msgstr "%s : %s : %s недопустимое время"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr "Английский"
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr "Афар"
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr "Абхазский"
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr "Африкаанс"
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr "Амхарский"
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr "Арабский"
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr "Ассамский"
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr "Аймара"
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr "Азербаджанский"
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr "Башкирский"
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr "Белорусский"
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr "Болгарский"
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr "Бихари"
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr "Бислама"
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr "Бенгали"
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr "Тибетский"
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr "Бретонский"
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr "Каталанский"
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr "Корсиканский"
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr "Чешский"
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr "Вэльский"
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr "Данский"
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr "Немецкий"
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr "Бутан"
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr "Греческий"
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr "Эсперанто"
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr "Испанский"
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr "Эстонский"
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr "Басков"
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr "Персидский"
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr "Финский"
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr "Фиджи"
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr "Фарси"
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr "Французский"
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr "Фризский"
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr "Ирландский"
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr "Шотландский"
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr "Галицийский"
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr "Гуананский"
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr "Гуджарати"
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr "Науса"
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr "Хинди"
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr "Хорватский"
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr "Венгерский"
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr "Армянский"
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr "Интернациональный"
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr "Интерлинг"
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr "Инупиак"
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr "Индонезийский"
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr "Исландский"
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr "Итальянский"
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr "Иврит"
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr "Японский"
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr "Иудейский"
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr "Яванский"
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr "Грузинский"
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr "Казахский"
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr "Гренландский"
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr "Камбоджийский"
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr "Каннадский"
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr "Корейский"
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr "Кашмирский"
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr "Курдский"
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr "Киргизский"
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr "Латынь"
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr "Лингала"
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr "Лаосский"
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr "Литовский"
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr "Латвийский"
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr "Малайзийский"
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr "Маори"
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr "Македонский"
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr "Малаямский"
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr "Монгольский"
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr "Молдавский"
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr "Маратхи"
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr "Малайзийский"
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr "Мальтийский"
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr "Бирманский"
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr "Науру"
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr "Непальский"
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr "Немецкий"
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr "Норвежский"
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr "Окситанский"
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr "(Афан)/Оромур/Ория"
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr "Панджаби Эм Си"
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr "Польский"
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr "Пушту"
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr "Португальский"
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr "Кечуа"
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr "Рэето-романс"
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr "Кирунди"
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr "Румынский"
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr "Русский"
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr "Киньяруанда"
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr "Санскрит"
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr "Синди"
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr "Сангро"
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr "Сербский"
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr "Синигальский"
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr "Словацкий"
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr "Славянский"
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr "Самоанский"
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr "Шона"
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr "Сомалийский"
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr "Албанский"
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr "Сербский"
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr "Сисвати"
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr "Сесото"
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr "Сунданский"
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr "Шведский"
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr "Суахили"
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr "Тамильский"
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr "Телугу"
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr "Таджикский"
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr "Тайский"
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr "Тигринья"
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr "Туркменский"
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr "Тагальский"
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr "Сетсвана"
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr "Тонга"
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr "Турецкий"
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr "Тсонга"
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr "Татарский"
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr "Тви"
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr "Украинский"
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr "Урду"
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr "Узбекский"
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr "Въетнамский"
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr "Волапукский"
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr "Волоф"
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr "Хоса"
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr "Юрубский"
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr "Китайский"
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr "Зулу"
@ -2598,7 +2598,7 @@ msgid "Type"
msgstr "Тип"
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3992,7 +3992,7 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Длительность должна быть указана в формате '00h 00min'"
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "URL должен быть в формате \"http://домен\""
#: application/models/Webstream.php:185

View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2015-09-05 08:33+0000\n"
"Last-Translator: Daniel James <daniel@64studio.com>\n"
"Language-Team: Serbian (Serbia)\n"
@ -35,543 +35,543 @@ msgstr "%s-%s-%s није исправан датум"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s није исправан датум"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2583,7 +2583,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3965,8 +3965,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Дужина мора да буде у облику \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL мора да буде у облику \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "URL мора да буде у облику \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2015-09-05 08:33+0000\n"
"Last-Translator: Daniel James <daniel@64studio.com>\n"
"Language-Team: Serbian (Latin) (Serbia)\n"
@ -35,543 +35,543 @@ msgstr "%s-%s-%s nije ispravan datum"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s nije ispravan datum"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2583,7 +2583,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3965,8 +3965,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Dužina mora da bude u obliku \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL mora da bude u obliku \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "URL mora da bude u obliku \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2022-06-28 07:22+0000\n"
"Last-Translator: metezd <itoldyouthat@protonmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/libretime/legacy/tr/>\n"
@ -36,543 +36,543 @@ msgstr "%s-%s-%s geçerli bir tarih değil"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s geçerli bir zaman değil"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr "İngilizce"
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr "Afarca"
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr "Abhazca"
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr "Afrikanca"
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr "Amharca"
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr "Arapça"
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr "Assam dili"
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr "Aymaraca"
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr "Azerice"
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr "Başkurtça"
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr "Belarusça"
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr "Bulgarca"
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr "Bihari"
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr "Bislama"
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr "Bengalce"
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr "Tibetçe"
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr "Bretonca"
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr "Katalanca"
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr "Korsikaca"
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr "Çekçe"
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr "Galce"
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr "Danca"
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr "Almanca"
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr "Bhutani"
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr "Yunanca"
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr "Esperanto"
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr "İspanyolca"
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr "Estonca"
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr "Baskça"
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr "Farsça"
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr "Fince"
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr "Fiji"
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr "Faroece"
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr "Fransızca"
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr "Frizce"
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr "İrlandaca"
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr "İskoçça"
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr "Galiçyaca"
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr "Guarani"
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr "Guceratça"
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr "Hausa dili"
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr "Hintçe"
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr "Hırvatça"
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr "Macarca"
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr "Ermenice"
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr "İnterlingua"
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr "İnterlingue"
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr "Endonezyaca"
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr "İzlandaca"
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr "İtalyanca"
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr "İbranice"
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr "Japonca"
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr "Yidçe"
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr "Cavaca"
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr "Gürcüce"
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr "Kazakça"
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr "Grönlandca"
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr "Kannada"
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr "Korece"
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr "Kürtçe"
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr "Kırgızca"
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr "Latince"
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr "Litvanyaca"
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr "Letonca/Lettçe"
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr "Madagaskarca"
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr "Maori dili"
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr "Makedonca"
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr "Malayalamca"
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr "Moğolca"
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr "Moldovyaca"
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr "Malayca"
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr "Maltaca"
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr "Nepalce"
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr "Felemenkçe"
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr "Norveççe"
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr "Oksitanca"
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr "Pencapça"
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr "Lehçe"
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr "Peştuca/Puşto"
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr "Portekizce"
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr "Keçuva"
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr "Rumence"
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr "Rusça"
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr "Sanskritçe"
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr "Sırpça-Hırvatça"
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr "Slovakça"
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr "Slovence"
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr "Arnavutça"
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr "Sırpça"
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr "İsveççe"
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr "Tamilce"
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr "Tacikçe"
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr "Türkmence"
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr "Türkçe"
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr "Tatarca"
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr "Ukraynaca"
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr "Urduca"
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr "Özbekçe"
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr "Çince"
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2582,7 +2582,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3962,7 +3962,7 @@ msgid "Length should be of form \"00h 00m\""
msgstr ""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr ""
#: application/models/Webstream.php:185

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2022-07-07 19:07+0000\n"
"Last-Translator: Mykola <bondarchuk.nikola@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/libretime/legacy/uk/>\n"
@ -33,543 +33,543 @@ msgstr "%s-%s-%s дата недійсна"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s недійсний час"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr "Англійська"
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr "Афар"
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr "Абхазька"
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr "Африканська"
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr "Амхарська"
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr "Арабська"
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr "Асамська"
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr "Аймара"
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr "Азербайджанська"
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr "Башкирська"
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr "Білоруська"
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr "Болгарська"
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr "Біхарі"
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr "Біслама"
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr "Бенгальська/Бангла"
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr "Тибетська"
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr "Бретонська"
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr "Каталонська"
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr "Корсиканська"
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr "Чеська"
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr "Валлійська"
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr "Датська"
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr "Німецька"
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr "Мови Бутану"
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr "Грецька"
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr "Есперанто"
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr "Іспанська"
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr "Естонська"
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr "Баскська"
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr "Перська"
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr "Фінська"
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr "Фіджійська"
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr "Фарерська"
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr "Французька"
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr "Фризька"
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr "Ірландська"
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr "Шотландська/Гельська"
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr "Галісійська"
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr "Гуарані"
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr "Гуджаратська"
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr "Хауса"
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr "Хінді"
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr "Хорватська"
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr "Угорська"
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr "Вірменська"
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr "Інтерлінгва"
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr "Окциденталь"
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr "Аляскинсько-інуїтська"
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr "Індонезійська"
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr "Ісландська"
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr "Італійська"
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr "Іврит"
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr "Японська"
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr "Ідиш"
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr "Яванська"
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr "Грузинська"
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr "Казахська"
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr "Гренландська"
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr "Камбоджійська"
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr "Каннада"
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr "Корейська"
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr "Кашмірська"
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr "Курдська"
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr "Киргизька"
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr "Латинська"
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr "Лінґала"
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr "Лаоська"
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr "Литовська"
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr "Латиська"
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr "Малагасійська"
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr "Маорійська"
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr "Македонська"
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr "Малаялам"
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr "Монгольська"
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr "Молдавська"
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr "Мара́тська"
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr "Малайська"
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr "Мальтійська"
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr "Бірманська"
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr "Науруанська"
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr "Непальська"
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr "Голландська"
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr "Норвезька"
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr "Окситанська"
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr "Оромо"
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr "Пенджабська"
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr "Польська"
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr "Пушту"
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr "Португальська"
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr "Кечуа"
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr "Рето-романська"
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr "Кірунді"
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr "Румунська"
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr "Російська"
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr "Руандійська"
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr "Санскрит"
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr "Сіндхі"
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr "Санго"
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr "Сербохорватська"
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr "Сингальська"
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr "Словацька"
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr "Словенська"
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr "Самоанська"
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr "Шона"
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr "Сомалійська"
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr "Албанська"
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr "Сербська"
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr "Сваті"
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr "Сесото"
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr "Сунданська"
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr "Шведська"
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr "Суахілі"
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr "Тамільська"
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr "Телугу"
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr "Таджицька"
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr "Тайська"
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr "Тигринья"
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr "Туркменський"
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr "Тагальська"
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr "Тсвана"
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr "Тонганська"
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr "Турецька"
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr "Тсонга"
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr "Татарська"
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr "Чві"
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr "Українська"
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr "Урду"
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr "Узбецька"
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr "В'єтнамська"
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr "Волапюк"
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr "Волоф"
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr "Хоса"
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr "Юрубський"
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr "Китайська"
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr "Зулуська"
@ -2590,7 +2590,7 @@ msgid "Type"
msgstr "Тип"
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3986,8 +3986,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "Довжина повинна відповідати формі \"00год 00хв\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "URL має бути форми \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "URL має бути форми \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreTime\n"
"Report-Msgid-Bugs-To: https://github.com/libretime/libretime/issues\n"
"POT-Creation-Date: 2022-09-21 00:42+0200\n"
"POT-Creation-Date: 2022-09-21 01:05+0200\n"
"PO-Revision-Date: 2015-09-05 08:33+0000\n"
"Last-Translator: Daniel James <daniel@64studio.com>\n"
"Language-Team: Chinese (China)\n"
@ -35,543 +35,543 @@ msgstr "%s-%s-%s采用了错误的日期格式"
msgid "%s:%s:%s is not a valid time"
msgstr "%s:%s:%s 采用了错误的时间格式"
#: application/common/LocaleHelper.php:23
#: application/common/LocaleHelper.php:21
msgid "English"
msgstr ""
#: application/common/LocaleHelper.php:24
#: application/common/LocaleHelper.php:22
msgid "Afar"
msgstr ""
#: application/common/LocaleHelper.php:25
#: application/common/LocaleHelper.php:23
msgid "Abkhazian"
msgstr ""
#: application/common/LocaleHelper.php:26
#: application/common/LocaleHelper.php:24
msgid "Afrikaans"
msgstr ""
#: application/common/LocaleHelper.php:27
#: application/common/LocaleHelper.php:25
msgid "Amharic"
msgstr ""
#: application/common/LocaleHelper.php:28
#: application/common/LocaleHelper.php:26
msgid "Arabic"
msgstr ""
#: application/common/LocaleHelper.php:29
#: application/common/LocaleHelper.php:27
msgid "Assamese"
msgstr ""
#: application/common/LocaleHelper.php:30
#: application/common/LocaleHelper.php:28
msgid "Aymara"
msgstr ""
#: application/common/LocaleHelper.php:31
#: application/common/LocaleHelper.php:29
msgid "Azerbaijani"
msgstr ""
#: application/common/LocaleHelper.php:32
#: application/common/LocaleHelper.php:30
msgid "Bashkir"
msgstr ""
#: application/common/LocaleHelper.php:33
#: application/common/LocaleHelper.php:31
msgid "Belarusian"
msgstr ""
#: application/common/LocaleHelper.php:34
#: application/common/LocaleHelper.php:32
msgid "Bulgarian"
msgstr ""
#: application/common/LocaleHelper.php:35
#: application/common/LocaleHelper.php:33
msgid "Bihari"
msgstr ""
#: application/common/LocaleHelper.php:36
#: application/common/LocaleHelper.php:34
msgid "Bislama"
msgstr ""
#: application/common/LocaleHelper.php:37
#: application/common/LocaleHelper.php:35
msgid "Bengali/Bangla"
msgstr ""
#: application/common/LocaleHelper.php:38
#: application/common/LocaleHelper.php:36
msgid "Tibetan"
msgstr ""
#: application/common/LocaleHelper.php:39
#: application/common/LocaleHelper.php:37
msgid "Breton"
msgstr ""
#: application/common/LocaleHelper.php:40
#: application/common/LocaleHelper.php:38
msgid "Catalan"
msgstr ""
#: application/common/LocaleHelper.php:41
#: application/common/LocaleHelper.php:39
msgid "Corsican"
msgstr ""
#: application/common/LocaleHelper.php:42
#: application/common/LocaleHelper.php:40
msgid "Czech"
msgstr ""
#: application/common/LocaleHelper.php:43
#: application/common/LocaleHelper.php:41
msgid "Welsh"
msgstr ""
#: application/common/LocaleHelper.php:44
#: application/common/LocaleHelper.php:42
msgid "Danish"
msgstr ""
#: application/common/LocaleHelper.php:45
#: application/common/LocaleHelper.php:43
msgid "German"
msgstr ""
#: application/common/LocaleHelper.php:46
#: application/common/LocaleHelper.php:44
msgid "Bhutani"
msgstr ""
#: application/common/LocaleHelper.php:47
#: application/common/LocaleHelper.php:45
msgid "Greek"
msgstr ""
#: application/common/LocaleHelper.php:48
#: application/common/LocaleHelper.php:46
msgid "Esperanto"
msgstr ""
#: application/common/LocaleHelper.php:49
#: application/common/LocaleHelper.php:47
msgid "Spanish"
msgstr ""
#: application/common/LocaleHelper.php:50
#: application/common/LocaleHelper.php:48
msgid "Estonian"
msgstr ""
#: application/common/LocaleHelper.php:51
#: application/common/LocaleHelper.php:49
msgid "Basque"
msgstr ""
#: application/common/LocaleHelper.php:52
#: application/common/LocaleHelper.php:50
msgid "Persian"
msgstr ""
#: application/common/LocaleHelper.php:53
#: application/common/LocaleHelper.php:51
msgid "Finnish"
msgstr ""
#: application/common/LocaleHelper.php:54
#: application/common/LocaleHelper.php:52
msgid "Fiji"
msgstr ""
#: application/common/LocaleHelper.php:55
#: application/common/LocaleHelper.php:53
msgid "Faeroese"
msgstr ""
#: application/common/LocaleHelper.php:56
#: application/common/LocaleHelper.php:54
msgid "French"
msgstr ""
#: application/common/LocaleHelper.php:57
#: application/common/LocaleHelper.php:55
msgid "Frisian"
msgstr ""
#: application/common/LocaleHelper.php:58
#: application/common/LocaleHelper.php:56
msgid "Irish"
msgstr ""
#: application/common/LocaleHelper.php:59
#: application/common/LocaleHelper.php:57
msgid "Scots/Gaelic"
msgstr ""
#: application/common/LocaleHelper.php:60
#: application/common/LocaleHelper.php:58
msgid "Galician"
msgstr ""
#: application/common/LocaleHelper.php:61
#: application/common/LocaleHelper.php:59
msgid "Guarani"
msgstr ""
#: application/common/LocaleHelper.php:62
#: application/common/LocaleHelper.php:60
msgid "Gujarati"
msgstr ""
#: application/common/LocaleHelper.php:63
#: application/common/LocaleHelper.php:61
msgid "Hausa"
msgstr ""
#: application/common/LocaleHelper.php:64
#: application/common/LocaleHelper.php:62
msgid "Hindi"
msgstr ""
#: application/common/LocaleHelper.php:65
#: application/common/LocaleHelper.php:63
msgid "Croatian"
msgstr ""
#: application/common/LocaleHelper.php:66
#: application/common/LocaleHelper.php:64
msgid "Hungarian"
msgstr ""
#: application/common/LocaleHelper.php:67
#: application/common/LocaleHelper.php:65
msgid "Armenian"
msgstr ""
#: application/common/LocaleHelper.php:68
#: application/common/LocaleHelper.php:66
msgid "Interlingua"
msgstr ""
#: application/common/LocaleHelper.php:69
#: application/common/LocaleHelper.php:67
msgid "Interlingue"
msgstr ""
#: application/common/LocaleHelper.php:70
#: application/common/LocaleHelper.php:68
msgid "Inupiak"
msgstr ""
#: application/common/LocaleHelper.php:71
#: application/common/LocaleHelper.php:69
msgid "Indonesian"
msgstr ""
#: application/common/LocaleHelper.php:72
#: application/common/LocaleHelper.php:70
msgid "Icelandic"
msgstr ""
#: application/common/LocaleHelper.php:73
#: application/common/LocaleHelper.php:71
msgid "Italian"
msgstr ""
#: application/common/LocaleHelper.php:74
#: application/common/LocaleHelper.php:72
msgid "Hebrew"
msgstr ""
#: application/common/LocaleHelper.php:75
#: application/common/LocaleHelper.php:73
msgid "Japanese"
msgstr ""
#: application/common/LocaleHelper.php:76
#: application/common/LocaleHelper.php:74
msgid "Yiddish"
msgstr ""
#: application/common/LocaleHelper.php:77
#: application/common/LocaleHelper.php:75
msgid "Javanese"
msgstr ""
#: application/common/LocaleHelper.php:78
#: application/common/LocaleHelper.php:76
msgid "Georgian"
msgstr ""
#: application/common/LocaleHelper.php:79
#: application/common/LocaleHelper.php:77
msgid "Kazakh"
msgstr ""
#: application/common/LocaleHelper.php:80
#: application/common/LocaleHelper.php:78
msgid "Greenlandic"
msgstr ""
#: application/common/LocaleHelper.php:81
#: application/common/LocaleHelper.php:79
msgid "Cambodian"
msgstr ""
#: application/common/LocaleHelper.php:82
#: application/common/LocaleHelper.php:80
msgid "Kannada"
msgstr ""
#: application/common/LocaleHelper.php:83
#: application/common/LocaleHelper.php:81
msgid "Korean"
msgstr ""
#: application/common/LocaleHelper.php:84
#: application/common/LocaleHelper.php:82
msgid "Kashmiri"
msgstr ""
#: application/common/LocaleHelper.php:85
#: application/common/LocaleHelper.php:83
msgid "Kurdish"
msgstr ""
#: application/common/LocaleHelper.php:86
#: application/common/LocaleHelper.php:84
msgid "Kirghiz"
msgstr ""
#: application/common/LocaleHelper.php:87
#: application/common/LocaleHelper.php:85
msgid "Latin"
msgstr ""
#: application/common/LocaleHelper.php:88
#: application/common/LocaleHelper.php:86
msgid "Lingala"
msgstr ""
#: application/common/LocaleHelper.php:89
#: application/common/LocaleHelper.php:87
msgid "Laothian"
msgstr ""
#: application/common/LocaleHelper.php:90
#: application/common/LocaleHelper.php:88
msgid "Lithuanian"
msgstr ""
#: application/common/LocaleHelper.php:91
#: application/common/LocaleHelper.php:89
msgid "Latvian/Lettish"
msgstr ""
#: application/common/LocaleHelper.php:92
#: application/common/LocaleHelper.php:90
msgid "Malagasy"
msgstr ""
#: application/common/LocaleHelper.php:93
#: application/common/LocaleHelper.php:91
msgid "Maori"
msgstr ""
#: application/common/LocaleHelper.php:94
#: application/common/LocaleHelper.php:92
msgid "Macedonian"
msgstr ""
#: application/common/LocaleHelper.php:95
#: application/common/LocaleHelper.php:93
msgid "Malayalam"
msgstr ""
#: application/common/LocaleHelper.php:96
#: application/common/LocaleHelper.php:94
msgid "Mongolian"
msgstr ""
#: application/common/LocaleHelper.php:97
#: application/common/LocaleHelper.php:95
msgid "Moldavian"
msgstr ""
#: application/common/LocaleHelper.php:98
#: application/common/LocaleHelper.php:96
msgid "Marathi"
msgstr ""
#: application/common/LocaleHelper.php:99
#: application/common/LocaleHelper.php:97
msgid "Malay"
msgstr ""
#: application/common/LocaleHelper.php:100
#: application/common/LocaleHelper.php:98
msgid "Maltese"
msgstr ""
#: application/common/LocaleHelper.php:101
#: application/common/LocaleHelper.php:99
msgid "Burmese"
msgstr ""
#: application/common/LocaleHelper.php:102
#: application/common/LocaleHelper.php:100
msgid "Nauru"
msgstr ""
#: application/common/LocaleHelper.php:103
#: application/common/LocaleHelper.php:101
msgid "Nepali"
msgstr ""
#: application/common/LocaleHelper.php:104
#: application/common/LocaleHelper.php:102
msgid "Dutch"
msgstr ""
#: application/common/LocaleHelper.php:105
#: application/common/LocaleHelper.php:103
msgid "Norwegian"
msgstr ""
#: application/common/LocaleHelper.php:106
#: application/common/LocaleHelper.php:104
msgid "Occitan"
msgstr ""
#: application/common/LocaleHelper.php:107
#: application/common/LocaleHelper.php:105
msgid "(Afan)/Oromoor/Oriya"
msgstr ""
#: application/common/LocaleHelper.php:108
#: application/common/LocaleHelper.php:106
msgid "Punjabi"
msgstr ""
#: application/common/LocaleHelper.php:109
#: application/common/LocaleHelper.php:107
msgid "Polish"
msgstr ""
#: application/common/LocaleHelper.php:110
#: application/common/LocaleHelper.php:108
msgid "Pashto/Pushto"
msgstr ""
#: application/common/LocaleHelper.php:111
#: application/common/LocaleHelper.php:109
msgid "Portuguese"
msgstr ""
#: application/common/LocaleHelper.php:112
#: application/common/LocaleHelper.php:110
msgid "Quechua"
msgstr ""
#: application/common/LocaleHelper.php:113
#: application/common/LocaleHelper.php:111
msgid "Rhaeto-Romance"
msgstr ""
#: application/common/LocaleHelper.php:114
#: application/common/LocaleHelper.php:112
msgid "Kirundi"
msgstr ""
#: application/common/LocaleHelper.php:115
#: application/common/LocaleHelper.php:113
msgid "Romanian"
msgstr ""
#: application/common/LocaleHelper.php:116
#: application/common/LocaleHelper.php:114
msgid "Russian"
msgstr ""
#: application/common/LocaleHelper.php:117
#: application/common/LocaleHelper.php:115
msgid "Kinyarwanda"
msgstr ""
#: application/common/LocaleHelper.php:118
#: application/common/LocaleHelper.php:116
msgid "Sanskrit"
msgstr ""
#: application/common/LocaleHelper.php:119
#: application/common/LocaleHelper.php:117
msgid "Sindhi"
msgstr ""
#: application/common/LocaleHelper.php:120
#: application/common/LocaleHelper.php:118
msgid "Sangro"
msgstr ""
#: application/common/LocaleHelper.php:121
#: application/common/LocaleHelper.php:119
msgid "Serbo-Croatian"
msgstr ""
#: application/common/LocaleHelper.php:122
#: application/common/LocaleHelper.php:120
msgid "Singhalese"
msgstr ""
#: application/common/LocaleHelper.php:123
#: application/common/LocaleHelper.php:121
msgid "Slovak"
msgstr ""
#: application/common/LocaleHelper.php:124
#: application/common/LocaleHelper.php:122
msgid "Slovenian"
msgstr ""
#: application/common/LocaleHelper.php:125
#: application/common/LocaleHelper.php:123
msgid "Samoan"
msgstr ""
#: application/common/LocaleHelper.php:126
#: application/common/LocaleHelper.php:124
msgid "Shona"
msgstr ""
#: application/common/LocaleHelper.php:127
#: application/common/LocaleHelper.php:125
msgid "Somali"
msgstr ""
#: application/common/LocaleHelper.php:128
#: application/common/LocaleHelper.php:126
msgid "Albanian"
msgstr ""
#: application/common/LocaleHelper.php:129
#: application/common/LocaleHelper.php:127
msgid "Serbian"
msgstr ""
#: application/common/LocaleHelper.php:130
#: application/common/LocaleHelper.php:128
msgid "Siswati"
msgstr ""
#: application/common/LocaleHelper.php:131
#: application/common/LocaleHelper.php:129
msgid "Sesotho"
msgstr ""
#: application/common/LocaleHelper.php:132
#: application/common/LocaleHelper.php:130
msgid "Sundanese"
msgstr ""
#: application/common/LocaleHelper.php:133
#: application/common/LocaleHelper.php:131
msgid "Swedish"
msgstr ""
#: application/common/LocaleHelper.php:134
#: application/common/LocaleHelper.php:132
msgid "Swahili"
msgstr ""
#: application/common/LocaleHelper.php:135
#: application/common/LocaleHelper.php:133
msgid "Tamil"
msgstr ""
#: application/common/LocaleHelper.php:136
#: application/common/LocaleHelper.php:134
msgid "Tegulu"
msgstr ""
#: application/common/LocaleHelper.php:137
#: application/common/LocaleHelper.php:135
msgid "Tajik"
msgstr ""
#: application/common/LocaleHelper.php:138
#: application/common/LocaleHelper.php:136
msgid "Thai"
msgstr ""
#: application/common/LocaleHelper.php:139
#: application/common/LocaleHelper.php:137
msgid "Tigrinya"
msgstr ""
#: application/common/LocaleHelper.php:140
#: application/common/LocaleHelper.php:138
msgid "Turkmen"
msgstr ""
#: application/common/LocaleHelper.php:141
#: application/common/LocaleHelper.php:139
msgid "Tagalog"
msgstr ""
#: application/common/LocaleHelper.php:142
#: application/common/LocaleHelper.php:140
msgid "Setswana"
msgstr ""
#: application/common/LocaleHelper.php:143
#: application/common/LocaleHelper.php:141
msgid "Tonga"
msgstr ""
#: application/common/LocaleHelper.php:144
#: application/common/LocaleHelper.php:142
msgid "Turkish"
msgstr ""
#: application/common/LocaleHelper.php:145
#: application/common/LocaleHelper.php:143
msgid "Tsonga"
msgstr ""
#: application/common/LocaleHelper.php:146
#: application/common/LocaleHelper.php:144
msgid "Tatar"
msgstr ""
#: application/common/LocaleHelper.php:147
#: application/common/LocaleHelper.php:145
msgid "Twi"
msgstr ""
#: application/common/LocaleHelper.php:148
#: application/common/LocaleHelper.php:146
msgid "Ukrainian"
msgstr ""
#: application/common/LocaleHelper.php:149
#: application/common/LocaleHelper.php:147
msgid "Urdu"
msgstr ""
#: application/common/LocaleHelper.php:150
#: application/common/LocaleHelper.php:148
msgid "Uzbek"
msgstr ""
#: application/common/LocaleHelper.php:151
#: application/common/LocaleHelper.php:149
msgid "Vietnamese"
msgstr ""
#: application/common/LocaleHelper.php:152
#: application/common/LocaleHelper.php:150
msgid "Volapuk"
msgstr ""
#: application/common/LocaleHelper.php:153
#: application/common/LocaleHelper.php:151
msgid "Wolof"
msgstr ""
#: application/common/LocaleHelper.php:154
#: application/common/LocaleHelper.php:152
msgid "Xhosa"
msgstr ""
#: application/common/LocaleHelper.php:155
#: application/common/LocaleHelper.php:153
msgid "Yoruba"
msgstr ""
#: application/common/LocaleHelper.php:156
#: application/common/LocaleHelper.php:154
msgid "Chinese"
msgstr ""
#: application/common/LocaleHelper.php:157
#: application/common/LocaleHelper.php:155
msgid "Zulu"
msgstr ""
@ -2583,7 +2583,7 @@ msgid "Type"
msgstr ""
#: application/controllers/LocaleController.php:462
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/playlists'>More information</a>"
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
msgstr ""
#: application/controllers/LocaleController.php:463
@ -3965,8 +3965,8 @@ msgid "Length should be of form \"00h 00m\""
msgstr "时间的格式应该是 \"00h 00m\""
#: application/models/Webstream.php:182
msgid "URL should be of form \"http://domain\""
msgstr "地址的格式应该是 \"http://domain\""
msgid "URL should be of form \"https://example.org\""
msgstr "地址的格式应该是 \"https://example.org\""
#: application/models/Webstream.php:185
msgid "URL should be 512 characters or less"

View File

@ -103,35 +103,35 @@ var AIRTIME = (function (AIRTIME) {
media: "tracks",
icon: "icon-music",
subtext: "Click 'Upload' to add some now.",
href: "http://libretime.org/docs/dashboard/",
href: "https://libretime.org/docs/user-manual/dashboard/",
};
case mod.MediaTypeIntegerEnum.PLAYLIST:
return {
media: "playlists",
icon: "icon-list",
subtext: "Click 'New' to create one now.",
href: "http://libretime.org/docs/playlists/",
href: "https://libretime.org/docs/user-manual/playlists/",
};
case mod.MediaTypeIntegerEnum.BLOCK:
return {
media: "smart blocks",
icon: "icon-time",
subtext: "Click 'New' to create one now.",
href: "http://libretime.org/docs/playlists/",
href: "https://libretime.org/docs/user-manual/playlists/",
};
case mod.MediaTypeIntegerEnum.WEBSTREAM:
return {
media: "webstreams",
icon: "icon-random",
subtext: "Click 'New' to create one now.",
href: "http://libretime.org/docs/webstreams/",
href: "https://libretime.org/docs/user-manual/webstreams/",
};
case mod.MediaTypeIntegerEnum.PODCAST:
return {
media: "podcasts",
icon: "icon-headphones",
subtext: "Click 'Add' to create one now.",
href: "http://libretime.org/docs/podcasts",
href: "https://libretime.org/docs/user-manual/podcasts/",
};
default:
break;

View File

@ -550,7 +550,7 @@ function setAddShowEvents(form) {
form.find(".show_autoplaylist_help_icon").qtip({
content: {
text: $.i18n._(
"Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/docs/playlists'>More information</a>"
"Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='https://libretime.org/docs/user-manual/playlists/'>More information</a>"
),
},
hide: {