summaryrefslogtreecommitdiffstats
path: root/l10n/th_TH
diff options
context:
space:
mode:
authorJenkins for ownCloud <owncloud-bot@tmit.eu>2014-05-16 01:55:55 -0400
committerJenkins for ownCloud <owncloud-bot@tmit.eu>2014-05-16 01:55:55 -0400
commit43d6650d194105dac30b11fb2ba4a3b3c7805650 (patch)
treee2189addacd74d12b7e14c80849fea3c12daaac0 /l10n/th_TH
parentb2e8aa70cde85302f7b7928370b681e3f01de7a8 (diff)
downloadnextcloud-server-43d6650d194105dac30b11fb2ba4a3b3c7805650.tar.gz
nextcloud-server-43d6650d194105dac30b11fb2ba4a3b3c7805650.zip
[tx-robot] updated from transifex
Diffstat (limited to 'l10n/th_TH')
-rw-r--r--l10n/th_TH/files_external.po24
-rw-r--r--l10n/th_TH/settings.po8
2 files changed, 18 insertions, 14 deletions
diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po
index 5e24aa14923..d6dd7c624bd 100644
--- a/l10n/th_TH/files_external.po
+++ b/l10n/th_TH/files_external.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2014-05-11 01:55-0400\n"
-"PO-Revision-Date: 2014-05-11 05:02+0000\n"
+"POT-Creation-Date: 2014-05-16 01:54-0400\n"
+"PO-Revision-Date: 2014-05-16 05:54+0000\n"
"Last-Translator: I Robot\n"
"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n"
"MIME-Version: 1.0\n"
@@ -82,9 +82,9 @@ msgid "App secret"
msgstr ""
#: appinfo/app.php:73 appinfo/app.php:111 appinfo/app.php:121
-#: appinfo/app.php:131 appinfo/app.php:141 appinfo/app.php:151
-msgid "URL"
-msgstr "URL"
+#: appinfo/app.php:151
+msgid "Host"
+msgstr ""
#: appinfo/app.php:74 appinfo/app.php:112 appinfo/app.php:132
#: appinfo/app.php:142 appinfo/app.php:152
@@ -165,6 +165,10 @@ msgstr ""
msgid "Username as share"
msgstr ""
+#: appinfo/app.php:131 appinfo/app.php:141
+msgid "URL"
+msgstr "URL"
+
#: appinfo/app.php:135 appinfo/app.php:145
msgid "Secure https://"
msgstr ""
@@ -197,29 +201,29 @@ msgstr "เกิดข้อผิดพลาดในการกำหนด
msgid "Saved"
msgstr ""
-#: lib/config.php:597
+#: lib/config.php:589
msgid "<b>Note:</b> "
msgstr ""
-#: lib/config.php:607
+#: lib/config.php:599
msgid " and "
msgstr ""
-#: lib/config.php:629
+#: lib/config.php:621
#, php-format
msgid ""
"<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting "
"of %s is not possible. Please ask your system administrator to install it."
msgstr ""
-#: lib/config.php:631
+#: lib/config.php:623
#, php-format
msgid ""
"<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of"
" %s is not possible. Please ask your system administrator to install it."
msgstr ""
-#: lib/config.php:633
+#: lib/config.php:625
#, php-format
msgid ""
"<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please"
diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po
index cfb1b1902c0..3a249abaa75 100644
--- a/l10n/th_TH/settings.po
+++ b/l10n/th_TH/settings.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: translations@owncloud.org\n"
-"POT-Creation-Date: 2014-05-15 01:54-0400\n"
-"PO-Revision-Date: 2014-05-15 05:54+0000\n"
+"POT-Creation-Date: 2014-05-16 01:54-0400\n"
+"PO-Revision-Date: 2014-05-16 05:54+0000\n"
"Last-Translator: I Robot\n"
"Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n"
"MIME-Version: 1.0\n"
@@ -274,11 +274,11 @@ msgid "Decrypting files... Please wait, this can take some time."
msgstr ""
#: js/personal.js:324
-msgid "Delete encryptin keys permanently."
+msgid "Delete encryption keys permanently."
msgstr ""
#: js/personal.js:338
-msgid "Restore encryptin keys."
+msgid "Restore encryption keys."
msgstr ""
#: js/users.js:47
> * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see <http://www.gnu.org/licenses/> * */ require_once __DIR__ . '/lib/versioncheck.php'; use OC\Console\Application; use Symfony\Component\Console\Input\ArgvInput; use Symfony\Component\Console\Output\ConsoleOutput; define('OC_CONSOLE', 1); function exceptionHandler($exception) { echo "An unhandled exception has been thrown:" . PHP_EOL; echo $exception; exit(1); } try { require_once __DIR__ . '/lib/base.php'; // set to run indefinitely if needed if (strpos(@ini_get('disable_functions'), 'set_time_limit') === false) { @set_time_limit(0); } if (!OC::$CLI) { echo "This script can be run from the command line only" . PHP_EOL; exit(1); } set_exception_handler('exceptionHandler'); if (!function_exists('posix_getuid')) { echo "The posix extensions are required - see https://www.php.net/manual/en/book.posix.php" . PHP_EOL; exit(1); } $user = posix_getuid(); $configUser = fileowner(OC::$configDir . 'config.php'); if ($user !== $configUser) { echo "Console has to be executed with the user that owns the file config/config.php" . PHP_EOL; echo "Current user id: " . $user . PHP_EOL; echo "Owner id of config.php: " . $configUser . PHP_EOL; echo "Try adding 'sudo -u #" . $configUser . "' to the beginning of the command (without the single quotes)" . PHP_EOL; echo "If running with 'docker exec' try adding the option '-u " . $configUser . "' to the docker command (without the single quotes)" . PHP_EOL; exit(1); } $oldWorkingDir = getcwd(); if ($oldWorkingDir === false) { echo "This script can be run from the Nextcloud root directory only." . PHP_EOL; echo "Can't determine current working dir - the script will continue to work but be aware of the above fact." . PHP_EOL; } elseif ($oldWorkingDir !== __DIR__ && !chdir(__DIR__)) { echo "This script can be run from the Nextcloud root directory only." . PHP_EOL; echo "Can't change to Nextcloud root directory." . PHP_EOL; exit(1); } if (!function_exists('pcntl_signal') && !in_array('--no-warnings', $argv)) { echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see https://www.php.net/manual/en/book.pcntl.php" . PHP_EOL; } $application = new Application( \OC::$server->getConfig(), \OC::$server->getEventDispatcher(), \OC::$server->getRequest(), \OC::$server->get(\Psr\Log\LoggerInterface::class), \OC::$server->query(\OC\MemoryInfo::class) ); $application->loadCommands(new ArgvInput(), new ConsoleOutput()); $application->run(); } catch (Exception $ex) { exceptionHandler($ex); } catch (Error $ex) { exceptionHandler($ex); }