summaryrefslogtreecommitdiffstats
path: root/l10n/sr@latin/files_trashbin.po
blob: 8e283df35a3ee28c1fedad74797a42b7e3cffc60 (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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# 
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-02-01 00:17+0100\n"
"PO-Revision-Date: 2013-01-31 16:03+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sr@latin\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"

#: js/trash.js:7
msgid "perform restore operation"
msgstr ""

#: js/trash.js:69
msgid "perform undelete operation"
msgstr ""

#: js/trash.js:100 templates/index.php:17
msgid "Name"
msgstr "Ime"

#: js/trash.js:101 templates/index.php:27
msgid "Deleted"
msgstr ""

#: js/trash.js:110
msgid "1 folder"
msgstr ""

#: js/trash.js:112
msgid "{count} folders"
msgstr ""

#: js/trash.js:120
msgid "1 file"
msgstr ""

#: js/trash.js:122
msgid "{count} files"
msgstr ""

#: templates/index.php:9
msgid "Nothing in here. Your trash bin is empty!"
msgstr ""

#: templates/index.php:20 templates/index.php:22
msgid "Restore"
msgstr ""
IAppConfig { /** * check if a key is set in the appconfig * @param string $app * @param string $key * @return bool * @since 7.0.0 */ public function hasKey($app, $key); /** * Gets the config value * @param string $app app * @param string $key key * @param string $default = null, default value if the key does not exist * @return string the value or $default * @deprecated 8.0.0 use method getAppValue of \OCP\IConfig * * This function gets a value from the appconfig table. If the key does * not exist the default value will be returned * @since 7.0.0 */ public function getValue($app, $key, $default = null); /** * Deletes a key * @param string $app app * @param string $key key * @return bool * @deprecated 8.0.0 use method deleteAppValue of \OCP\IConfig * @since 7.0.0 */ public function deleteKey($app, $key); /** * Get the available keys for an app * @param string $app the app we are looking for * @return array an array of key names * @deprecated 8.0.0 use method getAppKeys of \OCP\IConfig * * This function gets all keys of an app. Please note that the values are * not returned. * @since 7.0.0 */ public function getKeys($app); /** * get multiply values, either the app or key can be used as wildcard by setting it to false * * @param string|false $key * @param string|false $app * @return array|false * @since 7.0.0 */ public function getValues($app, $key); /** * get all values of the app or and filters out sensitive data * * @param string $app * @return array * @since 12.0.0 */ public function getFilteredValues($app); /** * sets a value in the appconfig * @param string $app app * @param string $key key * @param string|float|int $value value * @deprecated 8.0.0 use method setAppValue of \OCP\IConfig * * Sets a value. If the key did not exist before it will be created. * @return void * @since 7.0.0 */ public function setValue($app, $key, $value); /** * Get all apps using the config * @return array an array of app ids * * This function returns a list of all apps that have at least one * entry in the appconfig table. * @since 7.0.0 */ public function getApps(); /** * Remove app from appconfig * @param string $app app * @return bool * @deprecated 8.0.0 use method deleteAppValue of \OCP\IConfig * * Removes all keys in appconfig belonging to the app. * @since 7.0.0 */ public function deleteApp($app); }