summaryrefslogtreecommitdiffstats
path: root/remote.php
blob: 7993566afec0b6bf35011eb23e1782f062c4d75f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php

try {
	require_once 'lib/base.php';

	if (\OCP\Util::needUpgrade()) {
		// since the behavior of apps or remotes are unpredictable during
		// an upgrade, return a 503 directly
		OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
		OC_Template::printErrorPage('Service unavailable');
		exit;
	}

	$path_info = OC_Request::getPathInfo();
	if ($path_info === false || $path_info === '') {
		OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND);
		exit;
	}
	if (!$pos = strpos($path_info, '/', 1)) {
		$pos = strlen($path_info);
	}
	$service=substr($path_info, 1, $pos-1);

	$file = \OC::$server->getAppConfig()->getValue('core', 'remote_' . $service);

	if(is_null($file)) {
		OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND);
		exit;
	}

	$file=ltrim($file, '/');

	$parts=explode('/', $file, 2);
	$app=$parts[0];

	// Load all required applications
	\OC::$REQUESTEDAPP = $app;
	OC_App::loadApps(array('authentication'));
	OC_App::loadApps(array('filesystem', 'logging'));

	switch ($app) {
		case 'core':
			$file =  OC::$SERVERROOT .'/'. $file;
			break;
		default:
			if (!\OC::$server->getAppManager()->isInstalled($app)) {
				throw new Exception('App not installed: ' . $app);
			}
			OC_App::loadApp($app);
			$file = OC_App::getAppPath($app) .'/'. $parts[1];
			break;
	}
	$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';
	require_once $file;

} catch (\OC\ServiceUnavailableException $ex) {
	OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
	\OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL);
	OC_Template::printExceptionErrorPage($ex);
} catch (Exception $ex) {
	OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR);
	\OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL);
	OC_Template::printExceptionErrorPage($ex);
}
g-right: 5px; } span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } .highlight .hll { background-color: #ffffcc } .highlight .c { color: #888888 } /* Comment */ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .highlight .k { color: #008800; font-weight: bold } /* Keyword */ .highlight .ch { color: #888888 } /* Comment.Hashbang */ .highlight .cm { color: #888888 } /* Comment.Multiline */ .highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */ .highlight .cpf { color: #888888 } /* Comment.PreprocFile */ .highlight .c1 { color: #888888 } /* Comment.Single */ .highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gr { color: #aa0000 } /* Generic.Error */ .highlight .gh { color: #333333 } /* Generic.Heading */ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .highlight .go { color: #888888 } /* Generic.Output */ .highlight .gp { color: #555555 } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #666666 } /* Generic.Subheading */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# 
# Translators:
# mhh <marian.hvolka@stuba.sk>, 2013
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-06-08 02:04+0200\n"
"PO-Revision-Date: 2013-06-07 23:17+0000\n"
"Last-Translator: mhh <marian.hvolka@stuba.sk>\n"
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sk_SK\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"

#: ajax/apps/ocs.php:20
msgid "Unable to load list from App Store"
msgstr "Nie je možné nahrať zoznam z App Store"

#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17
#: ajax/togglegroups.php:20
msgid "Authentication error"
msgstr "Chyba autentifikácie"

#: ajax/changedisplayname.php:31
msgid "Your display name has been changed."
msgstr "Vaše zobrazované meno bolo zmenené."

#: ajax/changedisplayname.php:34
msgid "Unable to change display name"
msgstr "Nemožno zmeniť zobrazované meno"

#: ajax/creategroup.php:10
msgid "Group already exists"
msgstr "Skupina už existuje"

#: ajax/creategroup.php:19
msgid "Unable to add group"
msgstr "Nie je možné pridať skupinu"

#: ajax/enableapp.php:11
msgid "Could not enable app. "
msgstr "Nie je možné zapnúť aplikáciu."

#: ajax/lostpassword.php:12
msgid "Email saved"
msgstr "Email uložený"

#: ajax/lostpassword.php:14
msgid "Invalid email"
msgstr "Neplatný email"

#: ajax/removegroup.php:13
msgid "Unable to delete group"
msgstr "Nie je možné odstrániť skupinu"

#: ajax/removeuser.php:24
msgid "Unable to delete user"
msgstr "Nie je možné odstrániť používateľa"

#: ajax/setlanguage.php:15
msgid "Language changed"
msgstr "Jazyk zmenený"

#: ajax/setlanguage.php:17 ajax/setlanguage.php:20
msgid "Invalid request"
msgstr "Neplatná požiadavka"

#: ajax/togglegroups.php:12
msgid "Admins can't remove themself from the admin group"
msgstr "Administrátori nesmú odstrániť sami seba zo skupiny admin"

#: ajax/togglegroups.php:30
#, php-format
msgid "Unable to add user to group %s"
msgstr "Nie je možné pridať používateľa do skupiny %s"

#: ajax/togglegroups.php:36
#, php-format
msgid "Unable to remove user from group %s"
msgstr "Nie je možné odstrániť používateľa zo skupiny %s"

#: ajax/updateapp.php:14
msgid "Couldn't update app."
msgstr "Nemožno aktualizovať aplikáciu."

#: js/apps.js:30
msgid "Update to {appversion}"
msgstr "Aktualizovať na {appversion}"

#: js/apps.js:36 js/apps.js:76
msgid "Disable"
msgstr "Zakázať"

#: js/apps.js:36 js/apps.js:64 js/apps.js:83
msgid "Enable"
msgstr "Zapnúť"

#: js/apps.js:55
msgid "Please wait...."
msgstr "Čakajte prosím..."

#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93
msgid "Error"
msgstr "Chyba"

#: js/apps.js:90
msgid "Updating...."
msgstr "Aktualizujem..."

#: js/apps.js:93
msgid "Error while updating app"
msgstr "chyba pri aktualizácii aplikácie"

#: js/apps.js:96
msgid "Updated"
msgstr "Aktualizované"

#: js/personal.js:118
msgid "Saving..."
msgstr "Ukladám..."

#: js/users.js:47
msgid "deleted"
msgstr "zmazané"

#: js/users.js:47
msgid "undo"
msgstr "vrátiť"

#: js/users.js:79
msgid "Unable to remove user"
msgstr "Nemožno odobrať používateľa"

#: js/users.js:92 templates/users.php:26 templates/users.php:83
#: templates/users.php:108
msgid "Groups"
msgstr "Skupiny"

#: js/users.js:95 templates/users.php:85 templates/users.php:120
msgid "Group Admin"
msgstr "Správca skupiny"

#: js/users.js:115 templates/users.php:160
msgid "Delete"
msgstr "Zmazať"

#: js/users.js:269
msgid "add group"
msgstr "pridať skupinu"

#: js/users.js:428
msgid "A valid username must be provided"
msgstr "Musíte zadať platné používateľské meno"

#: js/users.js:429 js/users.js:435 js/users.js:450
msgid "Error creating user"
msgstr "Chyba pri vytváraní používateľa"

#: js/users.js:434
msgid "A valid password must be provided"
msgstr "Musíte zadať platné heslo"

#: personal.php:35 personal.php:36
msgid "__language_name__"
msgstr "Slovensky"

#: templates/admin.php:15
msgid "Security Warning"
msgstr "Bezpečnostné varovanie"

#: templates/admin.php:18
msgid ""
"Your data directory and your files are probably accessible from the "
"internet. The .htaccess file that ownCloud provides is not working. We "
"strongly suggest that you configure your webserver in a way that the data "
"directory is no longer accessible or you move the data directory outside the"
" webserver document root."
msgstr "Váš priečinok s dátami a Vaše súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inštaláciou ownCloud nespĺňa úlohu. Dôrazne Vám doporučujeme nakonfigurovať webserver takým spôsobom, aby dáta v priečinku neboli verejné, alebo presuňte dáta mimo štruktúry priečinkov webservera."

#: templates/admin.php:29
msgid "Setup Warning"
msgstr "Nastavenia oznámení"

#: templates/admin.php:32
msgid ""
"Your web server is not yet properly setup to allow files synchronization "
"because the WebDAV interface seems to be broken."
msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené."

#: templates/admin.php:33
#, php-format
msgid "Please double check the <a href='%s'>installation guides</a>."
msgstr "Prosím skontrolujte <a href='%s'>inštalačnú príručku</a>."

#: templates/admin.php:44
msgid "Module 'fileinfo' missing"
msgstr "Chýba modul 'fileinfo'"

#: templates/admin.php:47
msgid ""
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this "
"module to get best results with mime-type detection."
msgstr "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu."

#: templates/admin.php:58
msgid "Locale not working"
msgstr "Lokalizácia nefunguje"

#: templates/admin.php:63
#, php-format
msgid ""
"This ownCloud server can't set system locale to %s. This means that there "
"might be problems with certain characters in file names. We strongly suggest"
" to install the required packages on your system to support %s."
msgstr "Tento server ownCloud nemôže nastaviť národné prostredie systému na %s. To znamená, že by mohli byť problémy s niektorými znakmi v názvoch súborov. Veľmi odporúčame nainštalovať požadované balíky na podporu %s."

#: templates/admin.php:75
msgid "Internet connection not working"
msgstr "Pripojenie na internet nefunguje"

#: templates/admin.php:78
msgid ""
"This ownCloud server has no working internet connection. This means that "
"some of the features like mounting of external storage, notifications about "
"updates or installation of 3rd party apps don´t work. Accessing files from "
"remote and sending of notification emails might also not work. We suggest to"
" enable internet connection for this server if you want to have all features"
" of ownCloud."
msgstr "Tento server ownCloud nemá funkčné pripojenie k internetu. To znamená, že niektoré z funkcií, ako je pripojenie externého úložiska, oznámenia o aktualizáciách či inštalácia aplikácií tretích strán nefungujú. Prístup k súborom zo vzdialených miest a odosielanie oznamovacích e-mailov tiež nemusí fungovať. Odporúčame pripojiť tento server  k internetu, ak chcete využívať všetky vlastnosti ownCloud."

#: templates/admin.php:92
msgid "Cron"
msgstr "Cron"

#: templates/admin.php:101
msgid "Execute one task with each page loaded"
msgstr "Vykonať jednu úlohu s každým načítaní stránky"

#: templates/admin.php:111
msgid ""
"cron.php is registered at a webcron service. Call the cron.php page in the "
"owncloud root once a minute over http."
msgstr "cron.php je registrovaná u služby webcron. Zavolá cron.php stránku v koreňovom priečinku owncloud raz za minútu cez protokol HTTP."

#: templates/admin.php:121
msgid ""
"Use systems cron service. Call the cron.php file in the owncloud folder via "
"a system cronjob once a minute."
msgstr "Používať systémovú službu cron. Zavolať cron.php v priečinku owncloud cez systémovú úlohu raz za minútu"

#: templates/admin.php:128
msgid "Sharing"
msgstr "Zdieľanie"

#: templates/admin.php:134
msgid "Enable Share API"
msgstr "Povoliť API zdieľania"

#: templates/admin.php:135
msgid "Allow apps to use the Share API"
msgstr "Povoliť aplikáciám používať API na zdieľanie"

#: templates/admin.php:142
msgid "Allow links"
msgstr "Povoliť odkazy"

#: templates/admin.php:143
msgid "Allow users to share items to the public with links"
msgstr "Povoliť používateľom zdieľať položky pre verejnosť cez odkazy"

#: templates/admin.php:150
msgid "Allow resharing"
msgstr "Povoliť zdieľanie ďalej"

#: templates/admin.php:151
msgid "Allow users to share items shared with them again"
msgstr "Povoliť používateľom ďalej zdieľať zdieľané položky"

#: templates/admin.php:158
msgid "Allow users to share with anyone"
msgstr "Povoliť používateľom zdieľať s kýmkoľvek"

#: templates/admin.php:161
msgid "Allow users to only share with users in their groups"
msgstr "Povoliť používateľom zdieľať len s používateľmi v ich skupinách"

#: templates/admin.php:168
msgid "Security"
msgstr "Zabezpečenie"

#: templates/admin.php:181
msgid "Enforce HTTPS"
msgstr "Vynútiť HTTPS"

#: templates/admin.php:182
msgid ""
"Enforces the clients to connect to ownCloud via an encrypted connection."
msgstr "Vynúti pripojovanie klientov ownCloud cez šifrované pripojenie."

#: templates/admin.php:185
msgid ""
"Please connect to this ownCloud instance via HTTPS to enable or disable the "
"SSL enforcement."
msgstr "Pripojte sa k tejto inštancii ownCloud cez HTTPS pre povolenie alebo zakázanie vynútenia SSL."

#: templates/admin.php:195
msgid "Log"
msgstr "Záznam"

#: templates/admin.php:196
msgid "Log level"
msgstr "Úroveň záznamu"

#: templates/admin.php:227
msgid "More"
msgstr "Viac"

#: templates/admin.php:228
msgid "Less"
msgstr "Menej"

#: templates/admin.php:235 templates/personal.php:111
msgid "Version"
msgstr "Verzia"

#: templates/admin.php:237 templates/personal.php:114
msgid ""
"Developed by the <a href=\"http://ownCloud.org/contact\" "
"target=\"_blank\">ownCloud community</a>, the <a "
"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is "
"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" "
"target=\"_blank\"><abbr title=\"Affero General Public "
"License\">AGPL</abbr></a>."
msgstr "Vyvinuté <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitou ownCloud</a>,<a href=\"https://github.com/owncloud\" target=\"_blank\">zdrojový kód</a> je licencovaný pod <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>."

#: templates/apps.php:11
msgid "Add your App"
msgstr "Pridať vašu aplikáciu"

#: templates/apps.php:12
msgid "More Apps"
msgstr "Viac aplikácií"

#: templates/apps.php:28
msgid "Select an App"
msgstr "Vyberte aplikáciu"

#: templates/apps.php:34
msgid "See application page at apps.owncloud.com"
msgstr "Pozrite si stránku aplikácií na apps.owncloud.com"

#: templates/apps.php:36
msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>"
msgstr "<span class=\"licence\"></span>-licencované <span class=\"author\"></span>"

#: templates/apps.php:38
msgid "Update"
msgstr "Aktualizovať"

#: templates/help.php:4
msgid "User Documentation"
msgstr "Príručka používateľa"

#: templates/help.php:6
msgid "Administrator Documentation"
msgstr "Príručka administrátora"

#: templates/help.php:9
msgid "Online Documentation"
msgstr "Online príručka"

#: templates/help.php:11
msgid "Forum"
msgstr "Fórum"

#: templates/help.php:14
msgid "Bugtracker"
msgstr "Bugtracker"

#: templates/help.php:17
msgid "Commercial Support"
msgstr "Komerčná podpora"

#: templates/personal.php:8
#, php-format
msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>"
msgstr "Použili ste <strong>%s</strong> z <strong>%s</strong> dostupných "

#: templates/personal.php:15
msgid "Get the apps to sync your files"
msgstr "Získať aplikácie na synchronizáciu Vašich súborov"

#: templates/personal.php:26
msgid "Show First Run Wizard again"
msgstr "Znovu zobraziť sprievodcu prvým spustením"

#: templates/personal.php:37 templates/users.php:23 templates/users.php:82
msgid "Password"
msgstr "Heslo"

#: templates/personal.php:38
msgid "Your password was changed"
msgstr "Heslo bolo zmenené"

#: templates/personal.php:39
msgid "Unable to change your password"
msgstr "Nie je možné zmeniť vaše heslo"

#: templates/personal.php:40
msgid "Current password"
msgstr "Aktuálne heslo"

#: templates/personal.php:42
msgid "New password"
msgstr "Nové heslo"

#: templates/personal.php:44
msgid "Change password"
msgstr "Zmeniť heslo"

#: templates/personal.php:56 templates/users.php:81
msgid "Display Name"
msgstr "Zobrazované meno"

#: templates/personal.php:71
msgid "Email"
msgstr "Email"

#: templates/personal.php:73
msgid "Your email address"
msgstr "Vaša emailová adresa"

#: templates/personal.php:74
msgid "Fill in an email address to enable password recovery"
msgstr "Vyplňte emailovú adresu pre aktivovanie obnovy hesla"

#: templates/personal.php:83 templates/personal.php:84
msgid "Language"
msgstr "Jazyk"

#: templates/personal.php:95
msgid "Help translate"
msgstr "Pomôcť s prekladom"

#: templates/personal.php:100
msgid "WebDAV"
msgstr "WebDAV"

#: templates/personal.php:102
msgid "Use this address to connect to your ownCloud in your file manager"
msgstr "Použite túto adresu pre pripojenie vášho ownCloud k súborovému správcovi"

#: templates/users.php:21 templates/users.php:80
msgid "Login Name"
msgstr "Prihlasovacie meno"

#: templates/users.php:30
msgid "Create"
msgstr "Vytvoriť"

#: templates/users.php:34
msgid "Admin Recovery Password"
msgstr "Obnovenie hesla administrátora"

#: templates/users.php:38
msgid "Default Storage"
msgstr "Predvolené úložisko"

#: templates/users.php:44 templates/users.php:138
msgid "Unlimited"
msgstr "Nelimitované"

#: templates/users.php:62 templates/users.php:153
msgid "Other"
msgstr "Iné"

#: templates/users.php:87
msgid "Storage"
msgstr "Úložisko"

#: templates/users.php:98
msgid "change display name"
msgstr "zmeniť zobrazované meno"

#: templates/users.php:102
msgid "set new password"
msgstr "nastaviť nové heslo"

#: templates/users.php:133
msgid "Default"
msgstr "Predvolené"