Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
b439af43cf
@ -41,7 +41,7 @@ $strConfigCheckConfigurationPermissions_name = __('Check config file permissions
|
||||
$strConfigCompressOnFly_desc = __('Compress gzip/bzip2 exports on the fly without the need for much memory; if you encounter problems with created gzip/bzip2 files disable this feature');
|
||||
$strConfigCompressOnFly_name = __('Compress on the fly');
|
||||
$strConfigConfigurationFile = __('Configuration file');
|
||||
$strConfigConfirm_desc = __('Whether a warning ("Are your really sure...") should be displayed when you\'re about to lose data');
|
||||
$strConfigConfirm_desc = __('Whether a warning ("Are your really sure…") should be displayed when you\'re about to lose data');
|
||||
$strConfigConfirm_name = __('Confirm DROP queries');
|
||||
$strConfigDBG_sql_name = __('Debug SQL');
|
||||
$strConfigDefaultDisplay_name = __('Default display direction');
|
||||
|
||||
@ -2034,7 +2034,7 @@ function PMA_DBI_formatError($error_number, $error_message)
|
||||
' (<a href="server_engines.php' .
|
||||
PMA_generate_common_url(
|
||||
array('engine' => 'InnoDB', 'page' => 'Status')
|
||||
) . '">' . __('Details...') . '</a>)';
|
||||
) . '">' . __('Details…') . '</a>)';
|
||||
}
|
||||
} else {
|
||||
$error .= ' - ' . $error_message;
|
||||
|
||||
@ -83,7 +83,7 @@ if ($_SESSION[$SESSION_KEY]["handler"] != "UploadNoplugin") {
|
||||
// show progress UI
|
||||
$('#importmain').hide();
|
||||
$('#import_form_status')
|
||||
.html('<div class="upload_progress"><div class="upload_progress_bar_outer"><div class="percentage"></div><div id="status" class="upload_progress_bar_inner"><div class="percentage"></div></div></div><div><img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" width="16" height="16" alt="ajax clock" /> <?php echo PMA_jsFormat(__('Uploading your import file...'), false); ?></div><div id="statustext"></div></div>')
|
||||
.html('<div class="upload_progress"><div class="upload_progress_bar_outer"><div class="percentage"></div><div id="status" class="upload_progress_bar_inner"><div class="percentage"></div></div></div><div><img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" width="16" height="16" alt="ajax clock" /> <?php echo PMA_jsFormat(__('Uploading your import file…'), false); ?></div><div id="statustext"></div></div>')
|
||||
.show();
|
||||
import_start = now;
|
||||
}
|
||||
|
||||
@ -32,7 +32,7 @@ abstract class SubstringTransformationsPlugin extends TransformationsPlugin
|
||||
. ' characters to skip from the beginning of the string (Default 0).'
|
||||
. ' The second option is the number of characters to return (Default:'
|
||||
. ' until end of string). The third option is the string to append'
|
||||
. ' and/or prepend when truncation occurs (Default: "...").'
|
||||
. ' and/or prepend when truncation occurs (Default: "…").'
|
||||
);
|
||||
}
|
||||
|
||||
@ -59,7 +59,7 @@ abstract class SubstringTransformationsPlugin extends TransformationsPlugin
|
||||
}
|
||||
|
||||
if (!isset($options[2]) || $options[2] == '') {
|
||||
$options[2] = '...';
|
||||
$options[2] = '…';
|
||||
}
|
||||
|
||||
$newtext = '';
|
||||
|
||||
@ -1931,10 +1931,10 @@ function PMA_getExtraDataForAjaxBehavior($password, $link_export, $sql_query,
|
||||
function PMA_getChangeLoginInformationHtmlForm($username, $hostname)
|
||||
{
|
||||
$choices = array(
|
||||
'4' => __('... keep the old one.'),
|
||||
'1' => __('... delete the old one from the user tables.'),
|
||||
'2' => __('... revoke all active privileges from the old one and delete it afterwards.'),
|
||||
'3' => __('... delete the old one from the user tables and reload the privileges afterwards.'));
|
||||
'4' => __('… keep the old one.'),
|
||||
'1' => __('… delete the old one from the user tables.'),
|
||||
'2' => __('… revoke all active privileges from the old one and delete it afterwards.'),
|
||||
'3' => __('… delete the old one from the user tables and reload the privileges afterwards.'));
|
||||
|
||||
$class = ' ajax';
|
||||
$html_output = '<form action="server_privileges.php" '
|
||||
@ -1951,7 +1951,7 @@ function PMA_getChangeLoginInformationHtmlForm($username, $hostname)
|
||||
|
||||
$html_output .= '<fieldset>' . "\n"
|
||||
. ' <legend>'
|
||||
. __('Create a new user with the same privileges and ...')
|
||||
. __('Create a new user with the same privileges and …')
|
||||
. '</legend>' . "\n";
|
||||
$html_output .= PMA_Util::getRadioFields(
|
||||
'mode', $choices, '4', true
|
||||
@ -2681,7 +2681,7 @@ function PMA_deleteUser($queries)
|
||||
$message = PMA_Message::error(__('No users selected for deleting!'));
|
||||
} else {
|
||||
if ($_REQUEST['mode'] == 3) {
|
||||
$queries[] = '# ' . __('Reloading the privileges') . ' ...';
|
||||
$queries[] = '# ' . __('Reloading the privileges') . ' …';
|
||||
$queries[] = 'FLUSH PRIVILEGES;';
|
||||
}
|
||||
$drop_user_error = '';
|
||||
|
||||
@ -99,7 +99,7 @@ $header_cells[] = __('Length/Values')
|
||||
. PMA_Util::showHint(
|
||||
__(
|
||||
'If column type is "enum" or "set", please enter the values using'
|
||||
. ' this format: \'a\',\'b\',\'c\'...<br />If you ever need to put'
|
||||
. ' this format: \'a\',\'b\',\'c\'…<br />If you ever need to put'
|
||||
. ' a backslash ("\") or a single quote ("\'") amongst those values,'
|
||||
. ' precede it with a backslash (for example \'\\\\xyz\' or \'a\\\'b\').'
|
||||
)
|
||||
@ -171,7 +171,7 @@ if ($cfgRelation['mimework'] && $GLOBALS['cfg']['BrowseMIME']) {
|
||||
. PMA_Util::showHint(
|
||||
__(
|
||||
'Please enter the values for transformation options using this'
|
||||
. ' format: \'a\', 100, b,\'c\'...<br />If you ever need to put'
|
||||
. ' format: \'a\', 100, b,\'c\'…<br />If you ever need to put'
|
||||
. ' a backslash ("\") or a single quote ("\'") amongst those'
|
||||
. ' values, precede it with a backslash (for example \'\\\\xyz\''
|
||||
. ' or \'a\\\'b\').'
|
||||
|
||||
38
po/af.po
38
po/af.po
@ -4317,7 +4317,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6348,7 +6348,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6629,7 +6629,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8335,7 +8335,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9477,21 +9477,21 @@ msgid "Revoke"
|
||||
msgstr "Herroep"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -9500,7 +9500,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9914,17 +9914,17 @@ msgstr "Databasis %s is verwyder."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"If field type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, backslashes it (for example '\\"
|
||||
"\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -9955,12 +9955,12 @@ msgstr ""
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"If field type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, backslashes it (for example '\\"
|
||||
"\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -10955,7 +10955,7 @@ msgid "Show only alert values"
|
||||
msgstr "Wys tabelle"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11071,7 +11071,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -13668,7 +13668,7 @@ msgstr ""
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "If field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#~ "format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") "
|
||||
#~ "format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") "
|
||||
#~ "or a single quote (\"'\") amongst those values, backslashes it (for "
|
||||
#~ "example '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -13678,7 +13678,7 @@ msgstr ""
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "If field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#~ "format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") "
|
||||
#~ "format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") "
|
||||
#~ "or a single quote (\"'\") amongst those values, backslashes it (for "
|
||||
#~ "example '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -13834,7 +13834,7 @@ msgstr ""
|
||||
#~ msgid "has been altered."
|
||||
#~ msgstr "is verander."
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "Kies Alles"
|
||||
|
||||
|
||||
50
po/ar.po
50
po/ar.po
@ -4098,7 +4098,7 @@ msgstr "ملف التكوين"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"التحذير (" هل أنت متأكد " ) يظهر عندما تكون على وشك فقدان بيانات"
|
||||
@ -6073,7 +6073,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6338,7 +6338,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "هيئة الملفات المستوردة"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8085,12 +8085,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"يظهر فقط جزءً من النص. الخيار الأول يحدد مكان بدء ظهور النص )صفر بشكل افتراضي"
|
||||
"(. الخيار الثاني هو تعديل كم النص المسترجع. إن كان فارغا، يسترجع كل النص "
|
||||
"الباقي. الخيار الثالث يعرف أي من الأحرف سوف تضاف إلى المخرجات عند استرجاع "
|
||||
"جزء من النص )... بشكل افتراضي(."
|
||||
"جزء من النص )… بشكل افتراضي(."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9290,31 +9290,31 @@ msgid "Revoke"
|
||||
msgstr "إبطال"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... أبق القديم."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… أبق القديم."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... احذف القديم من جداول المستخدمين."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… احذف القديم من جداول المستخدمين."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr "... احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك."
|
||||
msgstr "… احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "غير معلومات الدخول / انسخ اسم مستخدم"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و…"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9731,17 +9731,17 @@ msgstr "تم حذف المستخدمين المحددين بنجاح."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"إذا كان نوع الحقل هو \"enum\" أو \"set\", الرجاء إدخال القيم باستخدام هذا "
|
||||
"التنسيق: 'a','b','c'...<br />إذا كنت تحتاج بأن تضع علامة الشرطه المائلة "
|
||||
"التنسيق: 'a','b','c'…<br />إذا كنت تحتاج بأن تضع علامة الشرطه المائلة "
|
||||
"لليسار (\"\\\") أو علامة الاقتباس الفردية (\"'\") فيما بين تلك القيم، اجعلها "
|
||||
"كشرطة مائلة لليسار (مثلا '\\\\xyz' أو 'a\\'b')."
|
||||
|
||||
@ -9775,11 +9775,11 @@ msgstr "خيارات التحويل"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"رجاء أدخل القيم لخيارات التحويل باستخدام هذا التنسيق: 'a', 100, b,'c'...<br /"
|
||||
"رجاء أدخل القيم لخيارات التحويل باستخدام هذا التنسيق: 'a', 100, b,'c'…<br /"
|
||||
">إذا احتجت أن تضع شرطة مائلة (\"\\\") أو علامة تنصيص (\"'\") بين هذه القيم، "
|
||||
"اسبقها بشرطة مائلة )على سبيل المثال '\\\\xyz' أو 'a\\'b'(."
|
||||
|
||||
@ -10802,7 +10802,7 @@ msgid "Show only alert values"
|
||||
msgstr "شاهد الجدول"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10919,7 +10919,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -11873,7 +11873,7 @@ msgstr "اسم الجدول"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "اسم المفتاح الأساسي يجب أن يكون أساسيا... PRIMARY!"
|
||||
msgstr "اسم المفتاح الأساسي يجب أن يكون أساسيا… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
@ -13744,7 +13744,7 @@ msgstr ""
|
||||
#~ "those values, precede it with a backslash (for example '\\\\xyz' or 'a"
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "رجاء أدخل القيم لخيارات التحويل باستخدام هذا التنسيق: 'a', 100, b,'c'..."
|
||||
#~ "رجاء أدخل القيم لخيارات التحويل باستخدام هذا التنسيق: 'a', 100, b,'c'…"
|
||||
#~ "<br />إذا احتجت أن تضع شرطة مائلة (\"\\\") أو علامة تنصيص (\"'\") بين هذه "
|
||||
#~ "القيم، اسبقها بشرطة مائلة )على سبيل المثال '\\\\xyz' أو 'a\\'b'(."
|
||||
|
||||
@ -13753,7 +13753,7 @@ msgstr ""
|
||||
#~ "(\"\\\") or a single quote (\"'\") amongst those values, precede it with "
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "رجاء أدخل القيم لخيارات التحويل باستخدام هذا التنسيق: 'a', 100, b,'c'..."
|
||||
#~ "رجاء أدخل القيم لخيارات التحويل باستخدام هذا التنسيق: 'a', 100, b,'c'…"
|
||||
#~ "<br />إذا احتجت أن تضع شرطة مائلة (\"\\\") أو علامة تنصيص (\"'\") بين هذه "
|
||||
#~ "القيم، اسبقها بشرطة مائلة )على سبيل المثال '\\\\xyz' أو 'a\\'b'(."
|
||||
|
||||
|
||||
52
po/az.po
52
po/az.po
@ -4367,7 +4367,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6427,7 +6427,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6716,7 +6716,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8481,13 +8481,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Only shows part of a string. First option is an offset to define where the "
|
||||
"output of your text starts (Default 0). Second option is an offset how much "
|
||||
"text is returned. If empty, returns all the remaining text. The third option "
|
||||
"defines which chars will be appended to the output when a substring is "
|
||||
"returned (Default: ...) ."
|
||||
"returned (Default: …) ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9664,24 +9664,24 @@ msgid "Revoke"
|
||||
msgstr "Revoke"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... köhnesini saxla."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… köhnesini saxla."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... istifadeçi cedvellerinden köhnesini sil."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… istifadeçi cedvellerinden köhnesini sil."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... köhne istifadeçinin selahiyyetlerini elinden alaraq onu sil."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… köhne istifadeçinin selahiyyetlerini elinden alaraq onu sil."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri "
|
||||
"… istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri "
|
||||
"yeniden yükle."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9689,8 +9689,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Sistem Giriş Me'lumatını Deyişdir / İstifadeçini Kopyala"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Eyni selahiyyetlere sahib yeni istifadeçi qur ve ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Eyni selahiyyetlere sahib yeni istifadeçi qur ve …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10103,17 +10103,17 @@ msgstr "The selected users have been deleted successfully."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Sahe tipi \"enum\" ve ya \"set\" ise, deyerleri bu formatda girin: "
|
||||
"'a','b','c'...<br />Eger bu deyerlerde ters-kesr (\"\\\") ve ya tek dırnaq "
|
||||
"'a','b','c'…<br />Eger bu deyerlerde ters-kesr (\"\\\") ve ya tek dırnaq "
|
||||
"(\"'\") istifade etmek isteyirsinizse, onları ters-kesrle escape-leyin "
|
||||
"(meselen '\\\\xyz' ve ya 'a\\'b')."
|
||||
|
||||
@ -10147,12 +10147,12 @@ msgstr "Transformasiya variantları"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, backslashes it (for example '\\\\xyz' or "
|
||||
"'a\\'b')."
|
||||
|
||||
@ -11157,7 +11157,7 @@ msgid "Show only alert values"
|
||||
msgstr "Cedvelleri göster"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11274,7 +11274,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -12226,7 +12226,7 @@ msgstr "İstifadeçi adı"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Birinci dereceli açarın adı... BİRİNCİ DERECELİ (PRIMARY) olmalıdır!"
|
||||
msgstr "Birinci dereceli açarın adı… BİRİNCİ DERECELİ (PRIMARY) olmalıdır!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
@ -13951,7 +13951,7 @@ msgstr ""
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Please enter the values for transformation options using this format: "
|
||||
#~ "'a', 100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a "
|
||||
#~ "'a', 100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a "
|
||||
#~ "single quote (\"'\") amongst those values, backslashes it (for example '\\"
|
||||
#~ "\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -13961,7 +13961,7 @@ msgstr ""
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Please enter the values for transformation options using this format: "
|
||||
#~ "'a', 100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a "
|
||||
#~ "'a', 100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a "
|
||||
#~ "single quote (\"'\") amongst those values, backslashes it (for example '\\"
|
||||
#~ "\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -14194,7 +14194,7 @@ msgstr ""
|
||||
#~ "The users will still have the USAGE privilege until the privileges are "
|
||||
#~ "reloaded."
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "Hamısını Seç"
|
||||
|
||||
|
||||
72
po/be.po
72
po/be.po
@ -1665,14 +1665,14 @@ msgstr "Дакумэнтацыя"
|
||||
|
||||
#: js/messages.php:211
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Rule details"
|
||||
msgstr "Падрабязьней..."
|
||||
msgstr "Падрабязьней…"
|
||||
|
||||
#: js/messages.php:212
|
||||
#, fuzzy
|
||||
msgid "Justification"
|
||||
msgstr "Аўтэнтыфікацыя..."
|
||||
msgstr "Аўтэнтыфікацыя…"
|
||||
|
||||
#: js/messages.php:213
|
||||
msgid "Used variable / formula"
|
||||
@ -4458,7 +4458,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -5007,12 +5007,12 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:197
|
||||
#, fuzzy
|
||||
msgid "Authentication"
|
||||
msgstr "Аўтэнтыфікацыя..."
|
||||
msgstr "Аўтэнтыфікацыя…"
|
||||
|
||||
#: libraries/config/messages.inc.php:198
|
||||
#, fuzzy
|
||||
msgid "Authentication settings"
|
||||
msgstr "Аўтэнтыфікацыя..."
|
||||
msgstr "Аўтэнтыфікацыя…"
|
||||
|
||||
#: libraries/config/messages.inc.php:199
|
||||
msgid "Server configuration"
|
||||
@ -5742,12 +5742,12 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:372
|
||||
#, fuzzy
|
||||
msgid "Authentication method to use"
|
||||
msgstr "Аўтэнтыфікацыя..."
|
||||
msgstr "Аўтэнтыфікацыя…"
|
||||
|
||||
#: libraries/config/messages.inc.php:373 setup/frames/index.inc.php:136
|
||||
#, fuzzy
|
||||
msgid "Authentication type"
|
||||
msgstr "Аўтэнтыфікацыя..."
|
||||
msgstr "Аўтэнтыфікацыя…"
|
||||
|
||||
#: libraries/config/messages.inc.php:374
|
||||
msgid ""
|
||||
@ -6566,8 +6566,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Падрабязьней..."
|
||||
msgid "Details…"
|
||||
msgstr "Падрабязьней…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6871,7 +6871,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Фармат імпартаванага файла"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8740,13 +8740,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Паказвае толькі частку радка. Першая опцыя — колькасьць сымбаляў ад пачатку "
|
||||
"радка, якія трэба прапусьціць (Па змоўчаньні 0). Другая опцыя — колькасьць "
|
||||
"сымбаляў, якія трэба вярнуць (Па змоўчаньні: да канца радка). Трэцяя опцыя — "
|
||||
"радок, які трэба далучыць да канца і/або з пачатку радка, калі адбудзецца "
|
||||
"ўсячэньне (Па змоўчаньні: \"...\") ."
|
||||
"ўсячэньне (Па змоўчаньні: \"…\") ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9031,9 +9031,9 @@ msgstr "Працэсы"
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "Падрабязьней..."
|
||||
msgstr "Падрабязьней…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
#, fuzzy
|
||||
@ -9959,24 +9959,24 @@ msgid "Revoke"
|
||||
msgstr "Ануляваць"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... пакінуць старога."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… пакінуць старога."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... выдаліць старога з табліцы карыстальнікаў."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… выдаліць старога з табліцы карыстальнікаў."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць "
|
||||
"… выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць "
|
||||
"прывілеі."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9984,8 +9984,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10419,17 +10419,17 @@ msgstr "Выбраныя карыстальнікі былі пасьпяхов
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Калі тып поля \"enum\" або \"set\", калі ласка, уводзьце значэньні "
|
||||
"выкарыстоўваючы гэты фармат: 'a','b','c'...<br />Калі вам патрэбна ўжыць "
|
||||
"выкарыстоўваючы гэты фармат: 'a','b','c'…<br />Калі вам патрэбна ўжыць "
|
||||
"зваротны слэш (\"\\\") або апостраф (\"'\") сярод гэтых значэньняў, пастаўце "
|
||||
"перад імі зваротны слэш (напрыклад, '\\\\xyz' або 'a\\'b')."
|
||||
|
||||
@ -10463,12 +10463,12 @@ msgstr "Опцыі пераўтварэньня"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Калі ласка, уводзьце значэньні опцыяў пераўтварэньня выкарыстоўваючы гэты "
|
||||
"фармат: 'a', 100, b,'c'...<br />Калі вам трэба ўжыць зваротны слэш (\"\\\") "
|
||||
"фармат: 'a', 100, b,'c'…<br />Калі вам трэба ўжыць зваротны слэш (\"\\\") "
|
||||
"або апостраф (\"'\") у гэтых значэньнях, устаўце зваротны слэш перад імі "
|
||||
"(напрыклад, '\\\\xyz' або 'a\\'b')."
|
||||
|
||||
@ -11487,7 +11487,7 @@ msgid "Show only alert values"
|
||||
msgstr "Паказаць адкрытыя табліцы"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11633,10 +11633,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад "
|
||||
"чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC."
|
||||
"чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14581,7 +14581,7 @@ msgstr "максымум адначасовых злучэньняў"
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Калі ласка, уводзьце значэньні опцыяў пераўтварэньня выкарыстоўваючы гэты "
|
||||
#~ "фармат: 'a', 100, b,'c'...<br />Калі вам трэба ўжыць зваротны слэш (\"\\"
|
||||
#~ "фармат: 'a', 100, b,'c'…<br />Калі вам трэба ўжыць зваротны слэш (\"\\"
|
||||
#~ "\") або апостраф (\"'\") у гэтых значэньнях, устаўце зваротны слэш перад "
|
||||
#~ "імі (напрыклад, '\\\\xyz' або 'a\\'b')."
|
||||
|
||||
@ -14591,7 +14591,7 @@ msgstr "максымум адначасовых злучэньняў"
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Калі ласка, уводзьце значэньні опцыяў пераўтварэньня выкарыстоўваючы гэты "
|
||||
#~ "фармат: 'a', 100, b,'c'...<br />Калі вам трэба ўжыць зваротны слэш (\"\\"
|
||||
#~ "фармат: 'a', 100, b,'c'…<br />Калі вам трэба ўжыць зваротны слэш (\"\\"
|
||||
#~ "\") або апостраф (\"'\") у гэтых значэньнях, устаўце зваротны слэш перад "
|
||||
#~ "імі (напрыклад, '\\\\xyz' або 'a\\'b')."
|
||||
|
||||
@ -14884,7 +14884,7 @@ msgstr "максымум адначасовых злучэньняў"
|
||||
#~ msgid "Native MS Excel format"
|
||||
#~ msgstr "Родны фармат MS Excel"
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "Выбраць усё"
|
||||
|
||||
|
||||
@ -1668,15 +1668,15 @@ msgstr "Dakumentacyja"
|
||||
|
||||
#: js/messages.php:211
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Rule details"
|
||||
msgstr "Padrabiaźniej..."
|
||||
msgstr "Padrabiaźniej…"
|
||||
|
||||
#: js/messages.php:212
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Justification"
|
||||
msgstr "Aŭtentyfikacyja..."
|
||||
msgstr "Aŭtentyfikacyja…"
|
||||
|
||||
#: js/messages.php:213
|
||||
msgid "Used variable / formula"
|
||||
@ -4473,7 +4473,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -5010,13 +5010,13 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Authentication"
|
||||
msgstr "Aŭtentyfikacyja..."
|
||||
msgstr "Aŭtentyfikacyja…"
|
||||
|
||||
#: libraries/config/messages.inc.php:198
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Authentication settings"
|
||||
msgstr "Aŭtentyfikacyja..."
|
||||
msgstr "Aŭtentyfikacyja…"
|
||||
|
||||
#: libraries/config/messages.inc.php:199
|
||||
msgid "Server configuration"
|
||||
@ -6421,25 +6421,25 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Config authentication"
|
||||
msgstr "Aŭtentyfikacyja..."
|
||||
msgstr "Aŭtentyfikacyja…"
|
||||
|
||||
#: libraries/config/setup.forms.php:45
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Cookie authentication"
|
||||
msgstr "Aŭtentyfikacyja..."
|
||||
msgstr "Aŭtentyfikacyja…"
|
||||
|
||||
#: libraries/config/setup.forms.php:48
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "HTTP authentication"
|
||||
msgstr "Aŭtentyfikacyja..."
|
||||
msgstr "Aŭtentyfikacyja…"
|
||||
|
||||
#: libraries/config/setup.forms.php:51
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Signon authentication"
|
||||
msgstr "Aŭtentyfikacyja..."
|
||||
msgstr "Aŭtentyfikacyja…"
|
||||
|
||||
#: libraries/config/setup.forms.php:247
|
||||
#: libraries/config/user_preferences.forms.php:151
|
||||
@ -6551,8 +6551,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Padrabiaźniej..."
|
||||
msgid "Details…"
|
||||
msgstr "Padrabiaźniej…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6856,7 +6856,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Farmat impartavanaha fajła"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8096,7 +8096,7 @@ msgstr "Niapravilny łahin/parol. U dostupie admoŭlena."
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Can not find signon authentication script:"
|
||||
msgstr "Aŭtentyfikacyja..."
|
||||
msgstr "Aŭtentyfikacyja…"
|
||||
|
||||
#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134
|
||||
#, php-format
|
||||
@ -8738,13 +8738,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Pakazvaje tolki častku radka. Pieršaja opcyja — kolkaść symbalaŭ ad pačatku "
|
||||
"radka, jakija treba prapuścić (Pa zmoŭčańni 0). Druhaja opcyja — kolkaść "
|
||||
"symbalaŭ, jakija treba viarnuć (Pa zmoŭčańni: da kanca radka). Treciaja "
|
||||
"opcyja — radok, jaki treba dałučyć da kanca i/abo z pačatku radka, kali "
|
||||
"adbudziecca ŭsiačeńnie (Pa zmoŭčańni: \"...\") ."
|
||||
"adbudziecca ŭsiačeńnie (Pa zmoŭčańni: \"…\") ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9027,9 +9027,9 @@ msgstr "Pracesy"
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "Padrabiaźniej..."
|
||||
msgstr "Padrabiaźniej…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
#, fuzzy
|
||||
@ -9957,32 +9957,32 @@ msgid "Revoke"
|
||||
msgstr "Anulavać"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... pakinuć staroha."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… pakinuć staroha."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... vydalić staroha z tablicy karystalnikaŭ."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… vydalić staroha z tablicy karystalnikaŭ."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei."
|
||||
"… vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10416,17 +10416,17 @@ msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Kali typ pola \"enum\" abo \"set\", kali łaska, uvodźcie značeńni "
|
||||
"vykarystoŭvajučy hety farmat: 'a','b','c'... Kali vam patrebna ŭžyć zvarotny "
|
||||
"vykarystoŭvajučy hety farmat: 'a','b','c'… Kali vam patrebna ŭžyć zvarotny "
|
||||
"słeš (\"\\\") abo apostraf (\"'\") siarod hetych značeńniaŭ, pastaŭcie "
|
||||
"pierad imi zvarotny słeš (naprykład, '\\\\xyz' abo 'a\\'b')."
|
||||
|
||||
@ -10460,12 +10460,12 @@ msgstr "Opcyi pieraŭtvareńnia"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Kali łaska, uvodźcie značeńni opcyjaŭ pieraŭtvareńnia vykarystoŭvajučy hety "
|
||||
"farmat: 'a', 100, b,'c'...<br />Kali vam treba ŭžyć zvarotny słeš (\"\\\") "
|
||||
"farmat: 'a', 100, b,'c'…<br />Kali vam treba ŭžyć zvarotny słeš (\"\\\") "
|
||||
"abo apostraf (\"'\") u hetych značeńniach, ustaŭcie zvarotny słeš pierad imi "
|
||||
"(naprykład, '\\\\xyz' abo 'a\\'b')."
|
||||
|
||||
@ -11480,7 +11480,7 @@ msgid "Show only alert values"
|
||||
msgstr "Pakazać adkrytyja tablicy"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11627,10 +11627,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Kolkaść zapytaŭ čytańnia papiaredni radok u klučavym paradku. Hety metad "
|
||||
"čytańnia vykarystoŭvajecca pieravažna dla aptymizacyi ORDER BY ... DESC."
|
||||
"čytańnia vykarystoŭvajecca pieravažna dla aptymizacyi ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14547,7 +14547,7 @@ msgstr "maksymum adnačasovych złučeńniaŭ"
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Kali łaska, uvodźcie značeńni opcyjaŭ pieraŭtvareńnia vykarystoŭvajučy "
|
||||
#~ "hety farmat: 'a', 100, b,'c'... Kali vam treba ŭžyć zvarotny słeš (\"\\"
|
||||
#~ "hety farmat: 'a', 100, b,'c'… Kali vam treba ŭžyć zvarotny słeš (\"\\"
|
||||
#~ "\") abo apostraf (\"'\") u hetych značeńniach, ustaŭcie zvarotny słeš "
|
||||
#~ "pierad imi (naprykład, '\\\\xyz' abo 'a\\'b')."
|
||||
|
||||
@ -14557,7 +14557,7 @@ msgstr "maksymum adnačasovych złučeńniaŭ"
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Kali łaska, uvodźcie značeńni opcyjaŭ pieraŭtvareńnia vykarystoŭvajučy "
|
||||
#~ "hety farmat: 'a', 100, b,'c'... Kali vam treba ŭžyć zvarotny słeš (\"\\"
|
||||
#~ "hety farmat: 'a', 100, b,'c'… Kali vam treba ŭžyć zvarotny słeš (\"\\"
|
||||
#~ "\") abo apostraf (\"'\") u hetych značeńniach, ustaŭcie zvarotny słeš "
|
||||
#~ "pierad imi (naprykład, '\\\\xyz' abo 'a\\'b')."
|
||||
|
||||
@ -14825,7 +14825,7 @@ msgstr "maksymum adnačasovych złučeńniaŭ"
|
||||
#~ msgid "Native MS Excel format"
|
||||
#~ msgstr "Rodny farmat MS Excel"
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "Vybrać usio"
|
||||
|
||||
|
||||
50
po/bg.po
50
po/bg.po
@ -4133,10 +4133,10 @@ msgstr "Конфигурационен файл"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Дали да бъде показано предупреждение ("На истина ли искате..."), "
|
||||
"Дали да бъде показано предупреждение ("На истина ли искате…"), "
|
||||
"когато сте на път да загубите данни"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6168,8 +6168,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Проверете правата на папката, съдържаща БД."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Подробности..."
|
||||
msgid "Details…"
|
||||
msgstr "Подробности…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6421,8 +6421,8 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Качване на файла за импорт..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Качване на файла за импорт…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8109,12 +8109,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Показва част от низ. Първата опция е отместването, от което ще се извежда "
|
||||
"вашият текст (По подразбиране: 0). Втората указва колко текст ще се изведе "
|
||||
"(По подразбиране: до края на низа). Третата опция указва кои зкаци ще бъдат "
|
||||
"изведени залепени от края в слъчай на скъсяване (По подразбиране: \"...\")."
|
||||
"изведени залепени от края в слъчай на скъсяване (По подразбиране: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9227,24 +9227,24 @@ msgid "Revoke"
|
||||
msgstr "Отменяне"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... запазване на стария."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… запазване на стария."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... изтриване на стария от таблицата с потребители."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… изтриване на стария от таблицата с потребители."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... отмяна на всички права от стария и след това изтриване."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… отмяна на всички права от стария и след това изтриване."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... изтриване на стария от таблицата с потребители и след това презареждане "
|
||||
"… изтриване на стария от таблицата с потребители и след това презареждане "
|
||||
"на правата."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9252,8 +9252,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Промяна информацията за вход / Копиране потребител"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Създаване нов потребител със същите права и ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Създаване нов потребител със същите права и …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9657,12 +9657,12 @@ msgstr "Колоните бяха преместени упешно."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ако типа на полето е \"enum\" или \"set\", моля въведете стойностите "
|
||||
"използвайки този формат: 'a','b','c'...<br />Ако е необходимо да сложите "
|
||||
"използвайки този формат: 'a','b','c'…<br />Ако е необходимо да сложите "
|
||||
"обратна черта (\"\\\") или апостроф (\"'\") между тези стойности, сложите "
|
||||
"обратна черта пред тях (например: '\\\\xyz' или 'a\\'b')."
|
||||
|
||||
@ -9694,12 +9694,12 @@ msgstr "Опции на трансформацията"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Моля въведете стойностите за опциите на трансформацията като използвате "
|
||||
"следния формат: 'a', 100, b,'c'...<br />Ако трябва да поставите обратно "
|
||||
"следния формат: 'a', 100, b,'c'…<br />Ако трябва да поставите обратно "
|
||||
"наклонена черта (\"\\\") или единична кавичка (\"'\") между тези стойности, "
|
||||
"поставете пред тях допълнителна обратно наклонена черта (например '\\\\xyz' "
|
||||
"или 'a\\'b')."
|
||||
@ -10658,8 +10658,8 @@ msgid "Show only alert values"
|
||||
msgstr "Само тревожни стойности"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Филтър по категория..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Филтър по категория…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -10773,7 +10773,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
40
po/bn.po
40
po/bn.po
@ -4316,7 +4316,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6413,7 +6413,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6715,7 +6715,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8508,7 +8508,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9695,24 +9695,24 @@ msgid "Revoke"
|
||||
msgstr "Revoke"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... পুরাতনটা রেখে দাও"
|
||||
msgid "… keep the old one."
|
||||
msgstr "… পুরাতনটা রেখে দাও"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "...ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল"
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "…ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড কর"
|
||||
"… ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড কর"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
@ -9721,8 +9721,8 @@ msgstr ""
|
||||
"User"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "একই সুবিধা সহ নতুন আরেকটি ব্যাবহারকারী তৈরী করুন..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "একই সুবিধা সহ নতুন আরেকটি ব্যাবহারকারী তৈরী করুন…"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10128,17 +10128,17 @@ msgstr "The selected users have been deleted successfully."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "ld type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: ,'b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: ,'b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single te (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"If field type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -10168,12 +10168,12 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Please enter the values for transformation options using this format: "
|
||||
"'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -11193,7 +11193,7 @@ msgid "Show only alert values"
|
||||
msgstr "Show open tables"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11312,7 +11312,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
30
po/br.po
30
po/br.po
@ -1408,7 +1408,7 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Analyzing…"
|
||||
msgstr "O tilesa..."
|
||||
msgstr "O tilesa…"
|
||||
|
||||
#: js/messages.php:171
|
||||
#, fuzzy
|
||||
@ -4212,10 +4212,10 @@ msgstr "Restr gefluniañ"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Ur gemennadenn ("Ha sur oc'h...") a zlefe dont war wel pa vezer "
|
||||
"Ur gemennadenn ("Ha sur oc'h…") a zlefe dont war wel pa vezer "
|
||||
"war-nes koll roadennoù."
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6215,7 +6215,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6470,7 +6470,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Furmad ar restr enporzhiañ"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8143,7 +8143,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9267,21 +9267,21 @@ msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -9290,7 +9290,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9685,7 +9685,7 @@ msgstr "Diverket eo bet an diaz roadennoù %s."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -9716,7 +9716,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10673,7 +10673,7 @@ msgid "Show only alert values"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10786,7 +10786,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
52
po/bs.po
52
po/bs.po
@ -4364,7 +4364,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6418,7 +6418,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6707,7 +6707,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8469,13 +8469,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Pokazuje samo deo stringa. Prva opcija je ofset koji definiše gde počinje "
|
||||
"izlaz vašeg teksta (podrazumevano 0). Druga opcija je ofset koji pokazuje "
|
||||
"koliko će teksta biti prikazano. Ako je nema, sav preostali tekst će biti "
|
||||
"prikazan. Treća opcija određuje koji će znaci biti dodati izlazu kada se "
|
||||
"prikaže podstring (podrazumevano: ...) ."
|
||||
"prikaže podstring (podrazumevano: …) ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9662,32 +9662,32 @@ msgid "Revoke"
|
||||
msgstr "Zabrani"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... sačuvaj stare."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… sačuvaj stare."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... obriši stare iz tabela korisnika."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… obriši stare iz tabela korisnika."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... obustavi sve privilegije starog korisnika i zatim ga obriši."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… obustavi sve privilegije starog korisnika i zatim ga obriši."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije."
|
||||
"… obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Promeni informacije o prijavi / Kopiraj korisnika"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Napravi novog korisnika sa istim privilegijama i ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Napravi novog korisnika sa istim privilegijama i …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10111,17 +10111,17 @@ msgstr "Izabrani korisnici su uspješno obrisani."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ako je polje \"enum\" ili \"set\", unesite vrijednosti u formatu: "
|
||||
"'a','b','c'...<br />Ako vam treba obrnuta kosa crta (\"\\\") ili apostrof "
|
||||
"'a','b','c'…<br />Ako vam treba obrnuta kosa crta (\"\\\") ili apostrof "
|
||||
"(\"'\") koristite ih u \"izbjegnutom\" (escaped) obliku (na primer '\\\\xyz' "
|
||||
"ili 'a\\'b')."
|
||||
|
||||
@ -10155,12 +10155,12 @@ msgstr "Opcije transformacije"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Molimo unesite vrijednosti za opcije transformacije koristeći ovaj oblik: "
|
||||
"'a', 100, b,'c'...<br />Ako treba da unesete obrnutu kosu crtu (\"\\\") ili "
|
||||
"'a', 100, b,'c'…<br />Ako treba da unesete obrnutu kosu crtu (\"\\\") ili "
|
||||
"apostrof (\"'\") u te vrijednosti, stavite obrnutu kosu crtu ispred njih (na "
|
||||
"primjer '\\\\xyz' ili 'a\\'b')."
|
||||
|
||||
@ -11165,7 +11165,7 @@ msgid "Show only alert values"
|
||||
msgstr "Prikaži tabele"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11282,7 +11282,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -12232,7 +12232,7 @@ msgstr "Ime korisnika"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Ime primarnog ključa mora da bude... PRIMARY!"
|
||||
msgstr "Ime primarnog ključa mora da bude… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
@ -13922,7 +13922,7 @@ msgstr ""
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Molimo unesite vrijednosti za opcije transformacije koristeći ovaj oblik: "
|
||||
#~ "'a', 100, b,'c'...<br />Ako treba da unesete obrnutu kosu crtu (\"\\\") "
|
||||
#~ "'a', 100, b,'c'…<br />Ako treba da unesete obrnutu kosu crtu (\"\\\") "
|
||||
#~ "ili apostrof (\"'\") u te vrijednosti, stavite obrnutu kosu crtu ispred "
|
||||
#~ "njih (na primjer '\\\\xyz' ili 'a\\'b')."
|
||||
|
||||
@ -13932,7 +13932,7 @@ msgstr ""
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Molimo unesite vrijednosti za opcije transformacije koristeći ovaj oblik: "
|
||||
#~ "'a', 100, b,'c'...<br />Ako treba da unesete obrnutu kosu crtu (\"\\\") "
|
||||
#~ "'a', 100, b,'c'…<br />Ako treba da unesete obrnutu kosu crtu (\"\\\") "
|
||||
#~ "ili apostrof (\"'\") u te vrijednosti, stavite obrnutu kosu crtu ispred "
|
||||
#~ "njih (na primjer '\\\\xyz' ili 'a\\'b')."
|
||||
|
||||
@ -14157,7 +14157,7 @@ msgstr ""
|
||||
#~ "Korisnici će i dalje imati USAGE privilegije dok se privilegije ponovo ne "
|
||||
#~ "učitaju."
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "Izaberi sve"
|
||||
|
||||
|
||||
56
po/ca.po
56
po/ca.po
@ -4201,10 +4201,10 @@ msgstr "Arxiu de configuració"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Quan s'ha de mostrar un avís ("Estàs segur...") al estar a punt de "
|
||||
"Quan s'ha de mostrar un avís ("Estàs segur…") al estar a punt de "
|
||||
"perdre dades"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6416,8 +6416,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Comprova els permisos del directori que conté la base de dades."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Detalls..."
|
||||
msgid "Details…"
|
||||
msgstr "Detalls…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6683,7 +6683,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Format de l'arxiu importat"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8504,13 +8504,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Mostra una part d'una cadena de text. La primera opció és el nombre de "
|
||||
"caràcters a saltar des de l'inici de la cadena (Per defecte 0). La segona "
|
||||
"opció és el nombre de caràcters a retornar (Per defecte: fins al final de la "
|
||||
"cadena). La tercera opció és la cadena a afegir a l'inici o al final quan hi "
|
||||
"ha truncament (Per defecte: \"...\")."
|
||||
"ha truncament (Per defecte: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9628,32 +9628,32 @@ msgid "Revoke"
|
||||
msgstr "Treu"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... respecta l'antic."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… respecta l'antic."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... esborra l'antic de les taules d'usuaris."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… esborra l'antic de les taules d'usuaris."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... treu tots els permisos actius de l'antic i esborra'l després."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… treu tots els permisos actius de l'antic i esborra'l després."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... esborra l'antic de les taules d'usuaris i recarrega els permisos després."
|
||||
"… esborra l'antic de les taules d'usuaris i recarrega els permisos després."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Canvi d'Informació de Connexió / Copia d'Usuari"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Crea un nou usuari amb els mateixos permisos i ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Crea un nou usuari amb els mateixos permisos i …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10066,12 +10066,12 @@ msgstr "S'han esborrat correctament els usuaris triats."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Si el tipus de camp és \"enum\" o \"set\", entra els valors fent servir el "
|
||||
"format: 'a','b','c'...<br />Si mai necessites escriure la barra invertida "
|
||||
"format: 'a','b','c'…<br />Si mai necessites escriure la barra invertida "
|
||||
"(\"\\\") o la cometa simple (\"'\") abans d'aquests valors, escriu davant "
|
||||
"barres invertides (per exemple '\\\\xyz' o 'a\\'b')."
|
||||
|
||||
@ -10105,12 +10105,12 @@ msgstr "Opcions de transformació"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Entra els valors per a transformar utilitzant aquest format: 'a', 100, "
|
||||
"b,'c'...<br />Si mai necessites escriure una barra invertida (\"\\\") o un "
|
||||
"b,'c'…<br />Si mai necessites escriure una barra invertida (\"\\\") o un "
|
||||
"apòstrof (\"'\") entre aquests valors, posa una barra invertida devant (per "
|
||||
"exemple '\\\\xyz' o 'a\\'b')."
|
||||
|
||||
@ -11120,8 +11120,8 @@ msgid "Show only alert values"
|
||||
msgstr "Mostra només valors d'alerta"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filtrar per categoria..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtrar per categoria…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11261,10 +11261,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"El nombre de peticions per llegir la fila anterior en l'ordre de la clau. "
|
||||
"Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... "
|
||||
"Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY … "
|
||||
"DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -12339,7 +12339,7 @@ msgstr "Nom de l'arxiu"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "El nom de la clau principal ha de ser ... \"PRIMARY\"!"
|
||||
msgstr "El nom de la clau principal ha de ser … \"PRIMARY\"!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
@ -14735,8 +14735,8 @@ msgstr "{concurrent_insert} està establert a 0"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Color de fons"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Tria..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Tria…"
|
||||
|
||||
#~ msgid "Delete the matches for the "
|
||||
#~ msgstr "Esborrar les coincidències per a la taula %s?"
|
||||
|
||||
26
po/ckb.po
26
po/ckb.po
@ -4046,7 +4046,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -5992,7 +5992,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6243,7 +6243,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -7882,7 +7882,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -8963,21 +8963,21 @@ msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -8986,7 +8986,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9372,7 +9372,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -9401,7 +9401,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10330,7 +10330,7 @@ msgid "Show only alert values"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10443,7 +10443,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
56
po/cs.po
56
po/cs.po
@ -4178,10 +4178,10 @@ msgstr "Konfigurační soubor"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Zda zobrazovat varování („Jste si opravdu jistý...“), pokud hrozí ztráta dat"
|
||||
"Zda zobrazovat varování („Jste si opravdu jistý…“), pokud hrozí ztráta dat"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
msgid "Confirm DROP queries"
|
||||
@ -6275,8 +6275,8 @@ msgstr ""
|
||||
"Prosím zkontrolujte přístupová práva u adresáře obsahujícího tuto databázi."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Podrobnosti..."
|
||||
msgid "Details…"
|
||||
msgstr "Podrobnosti…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6537,8 +6537,8 @@ msgid "%s of %s"
|
||||
msgstr "%s z %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Nahrávám importovaný soubor..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Nahrávám importovaný soubor…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8294,12 +8294,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Zobrazí jen část textu. První parametr je posun od začátku (výchozí je 0) a "
|
||||
"druhý určuje délku textu, který se má zobrazit, pokud není uveden, bude "
|
||||
"zobrazen zbytek textu. Třetí parametr určuje, jaký text má být přidán za "
|
||||
"zkrácený text (výchozí je „...“)."
|
||||
"zkrácený text (výchozí je „…“)."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9416,31 +9416,31 @@ msgid "Revoke"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... zachovat původního uživatele."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… zachovat původního uživatele."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... smazat původního uživatele ze všech tabulek."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… smazat původního uživatele ze všech tabulek."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... odebrat všechna oprávnění původnímu uživateli a poté ho smazat."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… odebrat všechna oprávnění původnímu uživateli a poté ho smazat."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr "... smazat uživatele a poté znovu načíst oprávnění."
|
||||
msgstr "… smazat uživatele a poté znovu načíst oprávnění."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Změnit informace o uživateli / Kopírovat uživatele"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Vytvořit nového uživatele se stejnými oprávněními a ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Vytvořit nového uživatele se stejnými oprávněními a …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9844,12 +9844,12 @@ msgstr "Vybraná pole byla úspěšně přesunuta."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Pokud je pole typu „enum“ nebo „set“, zadávejte hodnoty v následujícím "
|
||||
"formátu: 'a','b','c'...<br />Pokud potřebujete zadat zpětné lomítko („\\“) "
|
||||
"formátu: 'a','b','c'…<br />Pokud potřebujete zadat zpětné lomítko („\\“) "
|
||||
"nebo jednoduché uvozovky („'“) mezi těmito hodnotami, napište před ně zpětné "
|
||||
"lomítko (příklad: '\\\\xyz' nebo 'a\\'b')."
|
||||
|
||||
@ -9881,11 +9881,11 @@ msgstr "Parametry transformace"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Zadejte parametry transformací v následujícím tvaru: 'a', 100, b,'c'...<br /"
|
||||
"Zadejte parametry transformací v následujícím tvaru: 'a', 100, b,'c'…<br /"
|
||||
">Pokud potřebujete použít zpětné lomítko („\\“) nebo jednoduché uvozovky "
|
||||
"(„'“) mezi těmito hodnotami, vložte před ně zpětné lomítko (například '\\"
|
||||
"\\xyz' nebo 'a\\'b')."
|
||||
@ -10883,8 +10883,8 @@ msgid "Show only alert values"
|
||||
msgstr "Zobrazit jen hodnoty s upozorněním"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filtrovat podle kategorie..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtrovat podle kategorie…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11018,10 +11018,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Počet požadavků na přečtení předchozího řádku z klíče. Používané pro "
|
||||
"optimalizaci dotazů ORDER BY ... DESC."
|
||||
"optimalizaci dotazů ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14392,8 +14392,8 @@ msgstr "concurrent_insert je nastaveno na 0"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Barva pozadí"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Zvolte..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Zvolte…"
|
||||
|
||||
#~ msgid "Delete the matches for the "
|
||||
#~ msgstr "Odstranit nalezené záznamy z tabulky %s?"
|
||||
|
||||
52
po/cy.po
52
po/cy.po
@ -1634,15 +1634,15 @@ msgstr "Dogfennaeth"
|
||||
|
||||
#: js/messages.php:211
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Rule details"
|
||||
msgstr "Manylion..."
|
||||
msgstr "Manylion…"
|
||||
|
||||
#: js/messages.php:212
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Justification"
|
||||
msgstr "Yn dilysu..."
|
||||
msgstr "Yn dilysu…"
|
||||
|
||||
#: js/messages.php:213
|
||||
msgid "Used variable / formula"
|
||||
@ -4351,7 +4351,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -4885,13 +4885,13 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Authentication"
|
||||
msgstr "Yn dilysu..."
|
||||
msgstr "Yn dilysu…"
|
||||
|
||||
#: libraries/config/messages.inc.php:198
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Authentication settings"
|
||||
msgstr "Yn dilysu..."
|
||||
msgstr "Yn dilysu…"
|
||||
|
||||
#: libraries/config/messages.inc.php:199
|
||||
msgid "Server configuration"
|
||||
@ -6278,25 +6278,25 @@ msgstr "ZIP"
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Config authentication"
|
||||
msgstr "Yn dilysu..."
|
||||
msgstr "Yn dilysu…"
|
||||
|
||||
#: libraries/config/setup.forms.php:45
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Cookie authentication"
|
||||
msgstr "Yn dilysu..."
|
||||
msgstr "Yn dilysu…"
|
||||
|
||||
#: libraries/config/setup.forms.php:48
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "HTTP authentication"
|
||||
msgstr "Yn dilysu..."
|
||||
msgstr "Yn dilysu…"
|
||||
|
||||
#: libraries/config/setup.forms.php:51
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Signon authentication"
|
||||
msgstr "Yn dilysu..."
|
||||
msgstr "Yn dilysu…"
|
||||
|
||||
#: libraries/config/setup.forms.php:247
|
||||
#: libraries/config/user_preferences.forms.php:151
|
||||
@ -6408,8 +6408,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Manylion..."
|
||||
msgid "Details…"
|
||||
msgstr "Manylion…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6698,7 +6698,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Fformat y ffeil a mewnforiwyd"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -7859,7 +7859,7 @@ msgstr "Enw defnyddiwr/cyfrinair anghywir. Mynediad wedi'i wrthod."
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Can not find signon authentication script:"
|
||||
msgstr "Yn dilysu..."
|
||||
msgstr "Yn dilysu…"
|
||||
|
||||
#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134
|
||||
#, php-format
|
||||
@ -8423,7 +8423,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -8688,9 +8688,9 @@ msgstr "Prosesau"
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "Manylion..."
|
||||
msgstr "Manylion…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
#, fuzzy
|
||||
@ -9584,21 +9584,21 @@ msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -9607,7 +9607,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -10004,7 +10004,7 @@ msgstr "Cafodd cronfa ddata %s ei gollwng."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10035,7 +10035,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -11032,7 +11032,7 @@ msgid "Show only alert values"
|
||||
msgstr "Dangoswch gronfeydd data a restrir yn unig"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11151,7 +11151,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
54
po/da.po
54
po/da.po
@ -4217,10 +4217,10 @@ msgstr "Konfigurationsfil"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Hvorvidt der skal vises en advarsel ("Er du helt sikker...") , når "
|
||||
"Hvorvidt der skal vises en advarsel ("Er du helt sikker…") , når "
|
||||
"du er ved at miste data"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6323,8 +6323,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Tjek venligst privilegier for mappen som indeholder databasen."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Detaljer..."
|
||||
msgid "Details…"
|
||||
msgstr "Detaljer…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6583,8 +6583,8 @@ msgid "%s of %s"
|
||||
msgstr "%s af %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Overfører din importfil ..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Overfører din importfil …"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8353,13 +8353,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Viser en del af en streng. Første parameter er antal tegn, der skal springes "
|
||||
"over fra begyndelsen af en streng (Standard 0). Anden parameter er antal "
|
||||
"tegn, der returneres (Standard indtil enden af strengen). Den tredie "
|
||||
"parameter definerer hvilke tegn, der skal føjes til foran eller efter "
|
||||
"outputtet, når en substring returneres (Standard: \"...\")."
|
||||
"outputtet, når en substring returneres (Standard: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9471,26 +9471,26 @@ msgid "Revoke"
|
||||
msgstr "Tilbagekald"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... behold den gamle."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… behold den gamle."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... slet den gamle fra brugertabellerne."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… slet den gamle fra brugertabellerne."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... tilbagekald alle aktive privilegier fra den gamle og slet den "
|
||||
"… tilbagekald alle aktive privilegier fra den gamle og slet den "
|
||||
"efterfølgende."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... slet den gamle fra brugertabellerne og genindlæs privilegierne "
|
||||
"… slet den gamle fra brugertabellerne og genindlæs privilegierne "
|
||||
"efterfølgende."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9498,8 +9498,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Ret Login-information / Kopier bruger"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Opret en bruger med samme privilegier og ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Opret en bruger med samme privilegier og …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9906,12 +9906,12 @@ msgstr "Flytning af kolonnen er blevet fuldført."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Hvis et felt er af typen \"enum\" eller \"set\", skal værdierne angives på "
|
||||
"formen: 'a','b','c'...<br />Skulle du få brug for en backslash (\"\\\") "
|
||||
"formen: 'a','b','c'…<br />Skulle du få brug for en backslash (\"\\\") "
|
||||
"eller et enkelt anførselstegn (\"'\") blandt disse værdier, så tilføj en "
|
||||
"ekstra backslash (fx '\\\\xyz' eller 'a\\'b')."
|
||||
|
||||
@ -9943,12 +9943,12 @@ msgstr "Transformationsindstillinger"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Indtast værdier for transformationsindstillinger ud fra følgende format: "
|
||||
"'a', 100, b,'c'...<br />Skulle du få brug for at indsætte en backslash (\"\\"
|
||||
"'a', 100, b,'c'…<br />Skulle du få brug for at indsætte en backslash (\"\\"
|
||||
"\") eller en apostrof (\"'\") i værdierne, backslash det (for eksempel '\\"
|
||||
"\\xyz' eller 'a\\'b')."
|
||||
|
||||
@ -10942,8 +10942,8 @@ msgid "Show only alert values"
|
||||
msgstr "Vis kun alert-værdier"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filtrer efter kategori..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtrer efter kategori…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11083,10 +11083,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Antallet af anmodninger om at læse foregående række i nøgleorden. Denne "
|
||||
"læsemetode bruges hovedsageligt til at optimere ORDER BY ... DESC."
|
||||
"læsemetode bruges hovedsageligt til at optimere ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -12149,7 +12149,7 @@ msgstr "Filnavn"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Navnet på primærnøglen skal være... PRIMARY!"
|
||||
msgstr "Navnet på primærnøglen skal være… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
|
||||
56
po/de.po
56
po/de.po
@ -4256,10 +4256,10 @@ msgstr "Konfigurationsdatei"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Warnung ("Sind Sie wirklich sicher...") anzeigen, wenn Dateien "
|
||||
"Warnung ("Sind Sie wirklich sicher…") anzeigen, wenn Dateien "
|
||||
"verloren gehen könnten"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6393,8 +6393,8 @@ msgstr ""
|
||||
"befindet."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Details..."
|
||||
msgid "Details…"
|
||||
msgstr "Details…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6659,8 +6659,8 @@ msgid "%s of %s"
|
||||
msgstr "%s von %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Import-Datei wird hochgeladen..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Import-Datei wird hochgeladen…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8458,7 +8458,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Stellt nur einen Teil des Feldinhaltes dar. Die erste Option definiert die "
|
||||
"Position des Textes ab dem die Ausgabe startet (Standard: 0), die zweite "
|
||||
@ -8466,7 +8466,7 @@ msgstr ""
|
||||
"diese Option leer ist, wird der gesamte verbleibende Text dargestellt. Die "
|
||||
"dritte Option kann einen Text enthalten, der bei partieller Ausgabe des "
|
||||
"Textes angehängt wird, um eine Abschneidung kenntlich zu machen (Standard: "
|
||||
"\"...\")."
|
||||
"\"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9604,31 +9604,31 @@ msgid "Revoke"
|
||||
msgstr "Entfernen"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... behalte den alten bei."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… behalte den alten bei."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... lösche den alten von den Benutzertabellen."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… lösche den alten von den Benutzertabellen."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... entziehe dem alten alle Rechte und lösche ihn anschließend."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… entziehe dem alten alle Rechte und lösche ihn anschließend."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr "... lösche den alten und lade anschließend die Benutzertabellen neu."
|
||||
msgstr "… lösche den alten und lade anschließend die Benutzertabellen neu."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Anmelde-Information ändern/Benutzer kopieren"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10039,12 +10039,12 @@ msgstr "Die Spalten wurden erfolgreich verschoben."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Wenn das Feld vom Typ \"ENUM\" oder \"SET\" ist, benutzen Sie bitte das "
|
||||
"Format: 'a','b','c'...<br />Wann immer Sie ein Backslash (\"\\\") oder ein "
|
||||
"Format: 'a','b','c'…<br />Wann immer Sie ein Backslash (\"\\\") oder ein "
|
||||
"einfaches Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein "
|
||||
"Backslash vor das Zeichen. (z.B.: '\\\\xyz' oder 'a\\'b')."
|
||||
|
||||
@ -10076,12 +10076,12 @@ msgstr "Umwandlungsoptionen"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Bitte die Werte für die Umwandlungsoptionen in folgendem Format angeben: "
|
||||
"'a', 100, b,'c'...<br />Wann immer Sie ein Backslash (\"\\\") oder ein "
|
||||
"'a', 100, b,'c'…<br />Wann immer Sie ein Backslash (\"\\\") oder ein "
|
||||
"einfaches Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein "
|
||||
"Backslash vor das Zeichen. (z.B.: '\\\\xyz' oder 'a\\'b')."
|
||||
|
||||
@ -11096,8 +11096,8 @@ msgid "Show only alert values"
|
||||
msgstr "Zeige nur Warn-Werte"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Nach Kategorie filtern..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Nach Kategorie filtern…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11244,11 +11244,11 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Anzahl der Anfragen, die vorhergehende Zeile in der Reihenfolge des "
|
||||
"Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung "
|
||||
"von ORDER BY ... DESC."
|
||||
"von ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14782,5 +14782,5 @@ msgstr "concurrent_insert ist auf 0 gesetzt"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Hintergrundfarbe"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Auswahl..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Auswahl…"
|
||||
|
||||
58
po/el.po
58
po/el.po
@ -4233,10 +4233,10 @@ msgstr "Αρχείο ρυθμίσεων"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Όταν μια προειδοποίηση («Είστε σίγουρος/η...») πρέπει να προβάλετε αν "
|
||||
"Όταν μια προειδοποίηση («Είστε σίγουρος/η…») πρέπει να προβάλετε αν "
|
||||
"πρόκειται να χαθούν δεδομένα"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6384,8 +6384,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Ελέξτε τα δικαιώματα του φακέλου που περιέχει τη βάση δεδομένων."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Λεπτομέρειες..."
|
||||
msgid "Details…"
|
||||
msgstr "Λεπτομέρειες…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6646,8 +6646,8 @@ msgid "%s of %s"
|
||||
msgstr "%s από %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Αποστολή του αρχείου εισαγωγής σας..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Αποστολή του αρχείου εισαγωγής σας…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8437,13 +8437,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Εμφανίζει μόνο μέρος ενός αλφαριθμητικού. Η πρώτη επιλογή είναι η θέση στην "
|
||||
"οποία ξεκινά η εμφάνιση του κειμένου (Προεπιλογή: 0). Η δεύτερη επιλογή "
|
||||
"είναι ο αριθμός των χαρακτήρων που θα επιστραφούν (Προεπιλογή: μέχρι το "
|
||||
"τέλος του κειιμένου). Η τρίτη επιλογή καθορίζει ποιοι χαρακτήρες θα "
|
||||
"ακολουθούν το κείμενο όταν εμφανίζεται τμήμα του (Προεπιλογή: «...»)."
|
||||
"ακολουθούν το κείμενο όταν εμφανίζεται τμήμα του (Προεπιλογή: «…»)."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9575,24 +9575,24 @@ msgid "Revoke"
|
||||
msgstr "Ανάκληση"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... διατήρηση του παλιού χρήστη."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… διατήρηση του παλιού χρήστη."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… διαγραφή του παλιού χρήστη από τους πίνακες χρηστών."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση των "
|
||||
"… διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση των "
|
||||
"δικαιωμάτων."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9600,8 +9600,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10008,12 +10008,12 @@ msgstr "Οι στήλες μετακινήθηκαν επιτυχώς."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Αν ο τύπος του πεδίου είναι «enum» ή «set», παρακαλώ εισάγετε τις τιμές "
|
||||
"χρησιμοποιώντας την εξής μορφή: 'α','β','γ'...<br />Αν χρειάζεται να "
|
||||
"χρησιμοποιώντας την εξής μορφή: 'α','β','γ'…<br />Αν χρειάζεται να "
|
||||
"εισάγετε την ανάποδη κάθετο («\\») ή απλά εισαγωγικά («'»), προθέστε τα με "
|
||||
"ανάποδη κάθετο στην αρχή (για παράδειγμα '\\\\χψω' ή 'α\\'β')."
|
||||
|
||||
@ -10045,12 +10045,12 @@ msgstr "Επιλογές μετατροπής"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Παρακαλώ εισάγετε τις τιμές για τη μετατροπή χρησιμοποιώντας τη μορφή: 'α', "
|
||||
"100, β,'γ'...<br />Εάν χρειαστείτε να χρησιμοποιήσετε καθέτους («\\») ή μονά "
|
||||
"100, β,'γ'…<br />Εάν χρειαστείτε να χρησιμοποιήσετε καθέτους («\\») ή μονά "
|
||||
"εισαγωγικά («'») στις τιμές, χρησιμοποιείτε καθέτους (παράδειγμα '\\\\χψω' ή "
|
||||
"'α\\'β')."
|
||||
|
||||
@ -11066,8 +11066,8 @@ msgid "Show only alert values"
|
||||
msgstr "Εμφάνιση μόνο τιμών ειδοποίησης"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Φιλτράρισμα ανά κατηγορία..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Φιλτράρισμα ανά κατηγορία…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11214,11 +11214,11 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Ο αριθμός των αιτήσεων που ανέγνωσαν την προηγούμενη γραμμή ανά κλειδί. Αυτή "
|
||||
"η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής "
|
||||
"ORDER BY ... DESC."
|
||||
"ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -12315,7 +12315,7 @@ msgstr "Ονομασία αρχείου"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Το όνομα του πρωτεύοντος κλειδιού πρέπει να είναι... PRIMARY!"
|
||||
msgstr "Το όνομα του πρωτεύοντος κλειδιού πρέπει να είναι… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
@ -14756,5 +14756,5 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Χρώμα υποβάθρου"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Επιλογή..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Επιλογή…"
|
||||
|
||||
56
po/en_GB.po
56
po/en_GB.po
@ -4190,10 +4190,10 @@ msgstr "Configuration file"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6348,8 +6348,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Please check privileges of directory containing database."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Details..."
|
||||
msgid "Details…"
|
||||
msgstr "Details…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6607,8 +6607,8 @@ msgid "%s of %s"
|
||||
msgstr "%s of %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Uploading your import file…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8399,13 +8399,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Displays a part of a string. The first option is the number of characters to "
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9517,25 +9517,25 @@ msgid "Revoke"
|
||||
msgstr "Revoke"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… keep the old one."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… delete the old one from the user tables."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9543,8 +9543,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Change Login Information / Copy User"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Create a new user with the same privileges and …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9947,12 +9947,12 @@ msgstr "The columns have been moved successfully."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -9984,12 +9984,12 @@ msgstr "Transformation options"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -10982,8 +10982,8 @@ msgid "Show only alert values"
|
||||
msgstr "Show only alert values"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filter by category…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11122,10 +11122,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimise ORDER BY ... DESC."
|
||||
"method is mainly used to optimise ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14520,8 +14520,8 @@ msgstr "concurrent_insert is set to 0"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Background colour"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Choose..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Choose…"
|
||||
|
||||
#~ msgid "Delete the matches for the "
|
||||
#~ msgstr "Delete the matches for the %s table?"
|
||||
|
||||
64
po/es.po
64
po/es.po
@ -4258,10 +4258,10 @@ msgstr "Archivo de configuración"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Si se debe mostrar o no una advertencia ("Está absolutamente seguro..."
|
||||
"Si se debe mostrar o no una advertencia ("Está absolutamente seguro…"
|
||||
"") cuando está a punto de perder datos"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6417,8 +6417,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Revisa los permisos del directorio que contiene la base de datos."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Detalles..."
|
||||
msgid "Details…"
|
||||
msgstr "Detalles…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6679,8 +6679,8 @@ msgid "%s of %s"
|
||||
msgstr "%s de %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Subiendo su archivo a importar..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Subiendo su archivo a importar…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8480,14 +8480,14 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Muestra una parte de una cadena de caracteres. La primera opción es el "
|
||||
"número de caracteres a pasar por alto desde el principio de la cadena de "
|
||||
"caracteres (Predeterminado: 0). La segunda opción es el número de caracteres "
|
||||
"a mostrar (Predeterminado: hasta el final de la cadena de caracteres). La "
|
||||
"tercera opción es la cadena de caracteres a adjuntar y/o anteponer cuando "
|
||||
"haya truncamiento (Predeterminado: \"...\")."
|
||||
"haya truncamiento (Predeterminado: \"…\")."
|
||||
|
||||
# Per IANA's regulations example domains MUST be example.com
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9616,25 +9616,25 @@ msgid "Revoke"
|
||||
msgstr "Revocar"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "...mantener el anterior."
|
||||
msgid "… keep the old one."
|
||||
msgstr "…mantener el anterior."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "...borrar el viejo de las tablas de usuario."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "…borrar el viejo de las tablas de usuario."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"...revocar todos los privilegios activos del viejo y eliminarlo después."
|
||||
"…revocar todos los privilegios activos del viejo y eliminarlo después."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"...borrar el viejo de las tablas de usuario y luego volver a cargar los "
|
||||
"…borrar el viejo de las tablas de usuario y luego volver a cargar los "
|
||||
"privilegios."
|
||||
|
||||
# Login refers to the user account not the act of logging in
|
||||
@ -9643,8 +9643,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Cambiar la información de la cuenta / Copiar el usuario"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Crear un nuevo usuario con los mismos privilegios y..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Crear un nuevo usuario con los mismos privilegios y…"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10054,12 +10054,12 @@ msgstr "Las columnas fueron movidas exitosamente."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Si el tipo de campo es \"enum\" o \"set\", introduzca los valores usando "
|
||||
"este formato: 'a','b','c'...<br />Si alguna vez necesita poner una barra "
|
||||
"este formato: 'a','b','c'…<br />Si alguna vez necesita poner una barra "
|
||||
"invertida (\"\\\") o una comilla simple (\"'\") entre esos valores, añada "
|
||||
"una barra invertida (por ejemplo '\\\\xyz' o 'a\\'b')."
|
||||
|
||||
@ -10092,12 +10092,12 @@ msgstr "Opciones de transformación"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Introduzca los valores para las opciones de transformación usando este "
|
||||
"formato: 'a',100,b,'c'...<br />Si alguna vez requiere insertar una barra "
|
||||
"formato: 'a',100,b,'c'…<br />Si alguna vez requiere insertar una barra "
|
||||
"invertida (\"\\\") o comilla sencilla (\"'\") entre esos valores, añada una "
|
||||
"barra invertida (por ejemplo '\\\\xyz' o 'a\\'b')."
|
||||
|
||||
@ -11117,8 +11117,8 @@ msgid "Show only alert values"
|
||||
msgstr "Mostrar sólo valores de alerta"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filtrar por categoría..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtrar por categoría…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11263,11 +11263,11 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"El número de solicitudes hechas para leer la fila previa en un orden de "
|
||||
"clave. Este método de lectura se usa principalmente para optimizar a ORDER "
|
||||
"BY ... DESC."
|
||||
"BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14356,21 +14356,21 @@ msgstr "«concurrent_insert» está definido como 0"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "An enumeration. A string object that can have only one value, chosen from "
|
||||
#~ "the list of values 'value1', 'value2', ..., NULL or the special '' error "
|
||||
#~ "the list of values 'value1', 'value2', …, NULL or the special '' error "
|
||||
#~ "value. An ENUM column can have a maximum of 65,535 distinct values."
|
||||
#~ msgstr ""
|
||||
#~ "Una enumeración. Una cadena que puede tener sólo un valor, elegido entre "
|
||||
#~ "la lista de valores 'valor1', 'valor2', ..., NULL o el valor especial de "
|
||||
#~ "la lista de valores 'valor1', 'valor2', …, NULL o el valor especial de "
|
||||
#~ "error ''. Una columna ENUM puede tener un máximo de 65535 valores "
|
||||
#~ "distintos."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "A set. A string object that can have zero or more values, each of which "
|
||||
#~ "must be chosen from the list of values 'value1', 'value2', ... A SET "
|
||||
#~ "must be chosen from the list of values 'value1', 'value2', … A SET "
|
||||
#~ "column can have a maximum of 64 members."
|
||||
#~ msgstr ""
|
||||
#~ "Un conjunto. Una cadena que puede tener cero o más valores, cada uno de "
|
||||
#~ "los cuales tiene que estar en la lista de valores 'valor1', 'valor2', ... "
|
||||
#~ "los cuales tiene que estar en la lista de valores 'valor1', 'valor2', … "
|
||||
#~ "Una columna SET puede tener un máximo de 64 miembros."
|
||||
|
||||
#~ msgid "Constructs a WKB Point using its coordinates."
|
||||
@ -14997,5 +14997,5 @@ msgstr "«concurrent_insert» está definido como 0"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Color de fondo"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Elegir..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Elegir…"
|
||||
|
||||
56
po/et.po
56
po/et.po
@ -4211,10 +4211,10 @@ msgstr "Seadistusfail"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Kas hoiatusi ("Kindel, et soovid...") peaks näitama, kuid oled "
|
||||
"Kas hoiatusi ("Kindel, et soovid…") peaks näitama, kuid oled "
|
||||
"andmeid kaotamas"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6386,8 +6386,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Detailid..."
|
||||
msgid "Details…"
|
||||
msgstr "Detailid…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6646,8 +6646,8 @@ msgid "%s of %s"
|
||||
msgstr "%s / %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Imporditava faili üleslaadimine..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Imporditava faili üleslaadimine…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8445,12 +8445,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Näitab ainult osa tekstist. Esimene valik on sõne algusest vahelejäetavate "
|
||||
"sümbolite hulk (Vaikimisi 0). Teine valik on naasvate sümbolite hulk "
|
||||
"(Vaikimisi: sõne lõpuni). Kolmas valik on kärpimise korral lisatav sõne "
|
||||
"(Vaikimisi: \"...\")."
|
||||
"(Vaikimisi: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9562,32 +9562,32 @@ msgid "Revoke"
|
||||
msgstr "Tühista"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... hoia eelmine alles."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… hoia eelmine alles."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... kustuta eelmine kasutajate tabelist."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… kustuta eelmine kasutajate tabelist."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... tühista eelmise kõik aktiivsed õigused ja seejärel kustuta see."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… tühista eelmise kõik aktiivsed õigused ja seejärel kustuta see."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... kustuta eelmine kasutajate tabelist ja seejärel lae õigused uuesti."
|
||||
"… kustuta eelmine kasutajate tabelist ja seejärel lae õigused uuesti."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Muuda sisselogimise teavet / Kopeeri kasutajat"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Loo uus kasutaja samade õigustega ja ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Loo uus kasutaja samade õigustega ja …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9992,12 +9992,12 @@ msgstr "Veerud on edukalt liigutatud."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Kui veeru tüüp on \"enum\" või \"set\", siis palun sisesta väärtused "
|
||||
"formaadis: 'a','b','c'...<br />Kui pead nende väärtuste vahele lisama "
|
||||
"formaadis: 'a','b','c'…<br />Kui pead nende väärtuste vahele lisama "
|
||||
"kurakaldkriipsu (\"\\\") või jutumärgi (\"'\"), siis lisa selle ette "
|
||||
"kurakaldkriips (nt '\\\\xyz' või 'a\\'b')."
|
||||
|
||||
@ -10029,12 +10029,12 @@ msgstr "Transformatsiooni valikud"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Palun sisesta transformatsiooni valikute jaoks vajalikud väärtused, "
|
||||
"kasutades formaati: 'a', 100, b,'c'...<br />Kui pead nende väärtuste vahele "
|
||||
"kasutades formaati: 'a', 100, b,'c'…<br />Kui pead nende väärtuste vahele "
|
||||
"lisama kurakaldkriipsu (\"\\\") või jutumärgi (\"'\"), siis lisa selle ette "
|
||||
"kurakaldkriips (nt '\\\\xyz' või 'a\\'b')."
|
||||
|
||||
@ -11022,8 +11022,8 @@ msgid "Show only alert values"
|
||||
msgstr "Näita ainult 'alert' väärtusi"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filtreeri kategooria alusel..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtreeri kategooria alusel…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11161,10 +11161,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Võtme järjekorras eelmise rea lugemise taotluste hulk. Seda lugemise "
|
||||
"meetodit kasutatakse peamiselt ORDER BY ... DESC optimeerimiseks."
|
||||
"meetodit kasutatakse peamiselt ORDER BY … DESC optimeerimiseks."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14584,8 +14584,8 @@ msgstr "concurrent_insert väärtuseks on määratud 0"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Taustavärv"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Vali..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Vali…"
|
||||
|
||||
#~ msgid "Delete the matches for the "
|
||||
#~ msgstr "Kustuta vasted tulemuselt"
|
||||
|
||||
50
po/eu.po
50
po/eu.po
@ -4327,7 +4327,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6383,7 +6383,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6672,7 +6672,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8422,13 +8422,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Soilik katearen zati bat erakutsi. Lehenengo aukerak zehazten du non hasten "
|
||||
"den zure testuaren desplazamendua (lehenetsi 0). Bigarren aukerak itzultzeko "
|
||||
"karaktere kopurua erakusten du. Hutsik badago, gainerako testu guztia "
|
||||
"bueltatuko du. Hirugarren aukerak zehazten du zeintzuk karaktere txertatuko "
|
||||
"diren irteerara azpikate bat itzultzen denean (Lehenetsia: ...) ."
|
||||
"diren irteerara azpikate bat itzultzen denean (Lehenetsia: …) ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9622,25 +9622,25 @@ msgid "Revoke"
|
||||
msgstr "Ezeztatu"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... mantendu aurrekoa."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… mantendu aurrekoa."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... zaharra ezabatu erabiltzaileen tauletatik."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… zaharra ezabatu erabiltzaileen tauletatik."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu."
|
||||
"… zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu "
|
||||
"… zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu "
|
||||
"pribilegioak."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9648,8 +9648,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10077,17 +10077,17 @@ msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Eremu-mota \"enum\" edo \"set\" bada, mesedez idatzi balioak formato hau "
|
||||
"erabiliz: 'a','b','c'...<br />Noizbait balio horien artean "
|
||||
"erabiliz: 'a','b','c'…<br />Noizbait balio horien artean "
|
||||
"alderantzikaturiko barra (\"\\\") edo barra arrunta (\"'\") erabili beharko "
|
||||
"bazenu, beti erabili alderantzikaturiko barra (adibidez '\\\\xyz' or 'a"
|
||||
"\\'b')."
|
||||
@ -10122,12 +10122,12 @@ msgstr "Eraldaketen hobespenak"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Mesedez, formato honi jarraiki, sartu itzazu eraldaketen hobespenentzako "
|
||||
"balioak: 'a', 100, b,'c'...<br />Noizbait alderantzikaturiko barra (\"\\\") "
|
||||
"balioak: 'a', 100, b,'c'…<br />Noizbait alderantzikaturiko barra (\"\\\") "
|
||||
"edo barra arrunta (\"'\") erabili beharko bazenu, beti erabili "
|
||||
"alderantzikaturiko barra (adibidez '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -11134,7 +11134,7 @@ msgid "Show only alert values"
|
||||
msgstr "Taulak erakutsi"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11252,7 +11252,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -12204,7 +12204,7 @@ msgstr "Erabiltzaile-izena"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Lehen mailako gakoaren izenak behar du izan... PRIMARY!"
|
||||
msgstr "Lehen mailako gakoaren izenak behar du izan… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
@ -13952,7 +13952,7 @@ msgstr ""
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Mesedez, formato honi jarraiki, sartu itzazu eraldaketen hobespenentzako "
|
||||
#~ "balioak: 'a', 100, b,'c'...<br />Noizbait alderantzikaturiko barra (\"\\"
|
||||
#~ "balioak: 'a', 100, b,'c'…<br />Noizbait alderantzikaturiko barra (\"\\"
|
||||
#~ "\") edo barra arrunta (\"'\") erabili beharko bazenu, beti erabili "
|
||||
#~ "alderantzikaturiko barra (adibidez '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -13962,7 +13962,7 @@ msgstr ""
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Mesedez, formato honi jarraiki, sartu itzazu eraldaketen hobespenentzako "
|
||||
#~ "balioak: 'a', 100, b,'c'...<br />Noizbait alderantzikaturiko barra (\"\\"
|
||||
#~ "balioak: 'a', 100, b,'c'…<br />Noizbait alderantzikaturiko barra (\"\\"
|
||||
#~ "\") edo barra arrunta (\"'\") erabili beharko bazenu, beti erabili "
|
||||
#~ "alderantzikaturiko barra (adibidez '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
|
||||
36
po/fa.po
36
po/fa.po
@ -4162,7 +4162,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6129,7 +6129,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6400,7 +6400,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8120,7 +8120,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9259,21 +9259,21 @@ msgid "Revoke"
|
||||
msgstr "ابطال"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -9282,7 +9282,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9685,17 +9685,17 @@ msgstr "پايگاه داده %s حذف گرديد."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "ld type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: ,'b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: ,'b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single te (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
|
||||
"استفاده نماييد : 'a','b','c'...<br /> اگر احتياج داشتيد كه از علامت مميز "
|
||||
"استفاده نماييد : 'a','b','c'…<br /> اگر احتياج داشتيد كه از علامت مميز "
|
||||
"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
|
||||
"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' "
|
||||
"يا 'a\\'b')"
|
||||
@ -9727,12 +9727,12 @@ msgstr ""
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
|
||||
"استفاده نماييد : 'a','b','c'...<br /> اگر احتياج داشتيد كه از علامت مميز "
|
||||
"استفاده نماييد : 'a','b','c'…<br /> اگر احتياج داشتيد كه از علامت مميز "
|
||||
"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
|
||||
"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' "
|
||||
"يا 'a\\'b')"
|
||||
@ -10700,7 +10700,7 @@ msgid "Show only alert values"
|
||||
msgstr "نمايش جدولها"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10815,7 +10815,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -13457,7 +13457,7 @@ msgstr "مقدار concurrent_insert صفر میباشد"
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين "
|
||||
#~ "قالب استفاده نماييد : 'a','b','c'...<br /> اگر احتياج داشتيد كه از علامت "
|
||||
#~ "قالب استفاده نماييد : 'a','b','c'…<br /> اگر احتياج داشتيد كه از علامت "
|
||||
#~ "مميز برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير "
|
||||
#~ "استفاده نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي "
|
||||
#~ "مثال'\\\\xyz' يا 'a\\'b')"
|
||||
@ -13468,7 +13468,7 @@ msgstr "مقدار concurrent_insert صفر میباشد"
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين "
|
||||
#~ "قالب استفاده نماييد : 'a','b','c'...<br /> اگر احتياج داشتيد كه از علامت "
|
||||
#~ "قالب استفاده نماييد : 'a','b','c'…<br /> اگر احتياج داشتيد كه از علامت "
|
||||
#~ "مميز برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير "
|
||||
#~ "استفاده نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي "
|
||||
#~ "مثال'\\\\xyz' يا 'a\\'b')"
|
||||
|
||||
56
po/fi.po
56
po/fi.po
@ -4202,10 +4202,10 @@ msgstr "Asetustiedosto"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Pitääkö näyttää varoitus (\"Haluatko varmasti...\"), kun tietoja aiotaan "
|
||||
"Pitääkö näyttää varoitus (\"Haluatko varmasti…\"), kun tietoja aiotaan "
|
||||
"kadottaa."
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6337,8 +6337,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Lisätiedot..."
|
||||
msgid "Details…"
|
||||
msgstr "Lisätiedot…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6597,8 +6597,8 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Lataa tuontitiedostoa..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Lataa tuontitiedostoa…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8419,14 +8419,14 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Näyttää vain osan merkkijonoa. Ensimmäinen valinta on tarkoitettu "
|
||||
"määrittelemään siirros, jonka kohdalta tekstin näyttäminen aloitetaan "
|
||||
"(Oletus: 0). Toinen valinta kertoo, kuinka monta merkkiä tekstistä "
|
||||
"näytetään. Tämän ollessa tyhjä merkkijonosta näytetään kaikki loput tekstit. "
|
||||
"Kolmas valinta määrittelee, mitä merkkejä merkkijonon perään lisätään sitä "
|
||||
"näytettäessä (Oletus: \"...\") ."
|
||||
"näytettäessä (Oletus: \"…\") ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -8717,9 +8717,9 @@ msgstr "Virhe pyynnön käsittelyssä"
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "Lisätiedot..."
|
||||
msgstr "Lisätiedot…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
#, fuzzy
|
||||
@ -9647,26 +9647,26 @@ msgid "Revoke"
|
||||
msgstr "Pura käyttöoikeudet"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... säilytä vanha käyttäjä."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… säilytä vanha käyttäjä."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... poista vanha käyttäjä käyttäjätauluista."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… poista vanha käyttäjä käyttäjätauluista."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa "
|
||||
"… peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa "
|
||||
"käyttäjä sen jälkeen."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... poista käyttäjätauluista vanha käyttäjä ja päivitä sen jälkeen "
|
||||
"… poista käyttäjätauluista vanha käyttäjä ja päivitä sen jälkeen "
|
||||
"käyttöoikeudet."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9674,8 +9674,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10106,17 +10106,17 @@ msgstr "Valitsemiesi käyttäjien poisto onnistui."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "ld type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: ,'b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: ,'b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single te (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Jos sarakkeen tietotyyppi on \"enum\" tai \"set\", syötä vaaditut arvot "
|
||||
"tässä muodossa: 'a','b','c'...<br />Jos tarvitset arvoissa kenoviivaa (\"\\"
|
||||
"tässä muodossa: 'a','b','c'…<br />Jos tarvitset arvoissa kenoviivaa (\"\\"
|
||||
"\") tai heittomerkkiä (\"'\"), laita merkin eteen kenoviiva (esim. '\\\\xyz' "
|
||||
"tai 'a\\'b')."
|
||||
|
||||
@ -10150,11 +10150,11 @@ msgstr "Muunnosvaihtoehdot"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Syötä muunnosvalinnoille arvot käyttäen tätä muotoa: 'a', 100, b,'c'...<br /"
|
||||
"Syötä muunnosvalinnoille arvot käyttäen tätä muotoa: 'a', 100, b,'c'…<br /"
|
||||
">Jos tarvitset arvoissa kenoviivaa (\"\\\") tai yksittäistä lainausmerkkiä "
|
||||
"(\"'\"), lisää merkin eteen kenoviiva (esim. '\\\\xyz' tai 'a\\'b')."
|
||||
|
||||
@ -11204,7 +11204,7 @@ msgid "Show only alert values"
|
||||
msgstr "Näytä avoimet taulut"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11349,10 +11349,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Kertoo niiden pyyntöjen määrän, jotka lukevat edellisen rivin "
|
||||
"avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC "
|
||||
"avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY … DESC "
|
||||
"-kyselyllä optimoimiseen."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
60
po/fr.po
60
po/fr.po
@ -4236,10 +4236,10 @@ msgstr "Fichier de configuration"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Un message (Êtes-vous certain...) devrait-il s'afficher quand vous êtes sur "
|
||||
"Un message (Êtes-vous certain…) devrait-il s'afficher quand vous êtes sur "
|
||||
"le point de perdre des données"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -5306,7 +5306,7 @@ msgstr "Ordre de tri par défaut"
|
||||
|
||||
#: libraries/config/messages.inc.php:330
|
||||
msgid "Use persistent connections to MySQL databases"
|
||||
msgstr "...au serveur MySQL"
|
||||
msgstr "…au serveur MySQL"
|
||||
|
||||
#: libraries/config/messages.inc.php:331
|
||||
msgid "Persistent connections"
|
||||
@ -6367,8 +6367,8 @@ msgstr ""
|
||||
"Veuillez vérifier les privilèges du répertoire contenant la base de données."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Détails..."
|
||||
msgid "Details…"
|
||||
msgstr "Détails…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6628,8 +6628,8 @@ msgid "%s of %s"
|
||||
msgstr "%s sur %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Téléversement du fichier d'importation en cours ..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Téléversement du fichier d'importation en cours …"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8420,12 +8420,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"N'affiche qu'une partie du champ. En première option, la position de départ "
|
||||
"(par défaut, 0). En seconde option, le nombre de caractères à afficher (par "
|
||||
"défaut, le reste). En troisième option, des caractères à afficher à la fin "
|
||||
"du texte (par défaut: «...»)."
|
||||
"du texte (par défaut: «…»)."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9564,33 +9564,33 @@ msgid "Revoke"
|
||||
msgstr "Révoquer"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... conserver intact l'ancien utilisateur."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… conserver intact l'ancien utilisateur."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... supprimer l'ancien utilisateur."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… supprimer l'ancien utilisateur."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... effacer tous les privilèges de l'ancien utilisateur, puis l'effacer."
|
||||
"… effacer tous les privilèges de l'ancien utilisateur, puis l'effacer."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... supprimer l'ancien utilisateur, puis recharger les privilèges au serveur."
|
||||
"… supprimer l'ancien utilisateur, puis recharger les privilèges au serveur."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Changement des informations de connexion / Copie d'utilisateur"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Créer un nouvel utilisateur avec les mêmes privilèges et ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Créer un nouvel utilisateur avec les mêmes privilèges et …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9994,12 +9994,12 @@ msgstr "Les colonnes ont été déplacées avec succès."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Les différentes valeurs des colonnes de type enum/set sont à spécifier sous "
|
||||
"la forme 'a','b','c'...<br />Pour utiliser un antislash(\"\\\") ou une "
|
||||
"la forme 'a','b','c'…<br />Pour utiliser un antislash(\"\\\") ou une "
|
||||
"apostrophe (\"'\") dans l'une de ces valeurs, faites-le précéder d'un "
|
||||
"antislash (par exemple '\\\\xyz' ou 'a\\'b')."
|
||||
|
||||
@ -10031,12 +10031,12 @@ msgstr "Options de transformation"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Veuillez entrer les valeurs des options de transformation en suivant ce "
|
||||
"format: 'a', 100, b,'c'...<br />Si vous devez entrer un caractère (\"\\\") "
|
||||
"format: 'a', 100, b,'c'…<br />Si vous devez entrer un caractère (\"\\\") "
|
||||
"ou une apostrophe (\"'\") parmi ces valeurs, faites-le précéder du caractère "
|
||||
"d'échappement, par exemple '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -11046,8 +11046,8 @@ msgid "Show only alert values"
|
||||
msgstr "Afficher uniquement les valeurs d'alerte"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filtrer par catégorie..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtrer par catégorie…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11189,10 +11189,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Le nombre de requêtes de lecture de la ligne précédente, en ordre de clé. "
|
||||
"Utilisé surtout pour optimiser ORDER BY ... DESC."
|
||||
"Utilisé surtout pour optimiser ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14189,7 +14189,7 @@ msgstr "Le paramètre concurrent_insert a une valeur de 0"
|
||||
#~ "Suggest a database name on the "Create Database" form (if "
|
||||
#~ "possible) or keep the text field empty"
|
||||
#~ msgstr ""
|
||||
#~ "...dans le dialogue de création de base, si possible, sinon laisser le "
|
||||
#~ "…dans le dialogue de création de base, si possible, sinon laisser le "
|
||||
#~ "champ vide"
|
||||
|
||||
#~ msgid "Suggest new database name"
|
||||
@ -14714,8 +14714,8 @@ msgstr "Le paramètre concurrent_insert a une valeur de 0"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Couleur d'arrière-plan"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Choisissez..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Choisissez…"
|
||||
|
||||
#~ msgid "Delete the matches for the "
|
||||
#~ msgstr "Supprimer de la table %s les occurences?"
|
||||
|
||||
58
po/gl.po
58
po/gl.po
@ -4188,10 +4188,10 @@ msgstr "Ficheiro de configuración"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Se se debe mostrar un aviso ("Ten a certeza...") cando se estea a "
|
||||
"Se se debe mostrar un aviso ("Ten a certeza…") cando se estea a "
|
||||
"piques de perder datos"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6415,8 +6415,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Comprobe os privilexios do directorio que contén a base de datos."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Detalles..."
|
||||
msgid "Details…"
|
||||
msgstr "Detalles…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6679,8 +6679,8 @@ msgid "%s of %s"
|
||||
msgstr "%s de %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Subindo o arquivo a importar..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Subindo o arquivo a importar…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8506,13 +8506,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Só mostra parte dunha cadea. A primeira opción é o número de caracteres que "
|
||||
"hai que saltar desde o comezo da cadea (por omisión, 0). A segunda opción é "
|
||||
"o número de caracteres que devolver (Por omisión: até o fin da cadea). A "
|
||||
"terceira opción é a cadea que engadir e/ou antepór cando se trunque (Por "
|
||||
"omisión: «...»)."
|
||||
"omisión: «…»)."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9625,25 +9625,25 @@ msgid "Revoke"
|
||||
msgstr "Revogar"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... manter o anterior."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… manter o anterior."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... eliminar o anterior das táboas de usuarios."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… eliminar o anterior das táboas de usuarios."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... retirarlle todos os privilexios activos ao anterior e eliminalo despois."
|
||||
"… retirarlle todos os privilexios activos ao anterior e eliminalo despois."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... eliminar o anterior das táboas de usuarios e recargar os privilexios "
|
||||
"… eliminar o anterior das táboas de usuarios e recargar os privilexios "
|
||||
"despois."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9651,8 +9651,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Modificar a información de acceso (login) / Copiar o usuario"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Crear un usuario novo cos mesmos privilexios e..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Crear un usuario novo cos mesmos privilexios e…"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10066,12 +10066,12 @@ msgstr "Elimináronse sen problemas os usuarios seleccionados."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Se o tipo de campo é «enum» ou «set», introduza os valores empregando este "
|
||||
"formato: 'a','b','c'...<br />Se precisar pór unha barra invertida (« \\») ou "
|
||||
"formato: 'a','b','c'…<br />Se precisar pór unha barra invertida (« \\») ou "
|
||||
"aspas simples (« '») entre estes valores, preceda a barra e as aspas de "
|
||||
"barras invertidas (por exemplo '\\\\xyz' ou 'a\\'b')."
|
||||
|
||||
@ -10105,12 +10105,12 @@ msgstr "Opcións de transformación"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Introduza os valores das opcións de transformación empregando este "
|
||||
"formato:'a', 100, b,'c'...<br />Se necesitar introducir unha barra para tras "
|
||||
"formato:'a', 100, b,'c'…<br />Se necesitar introducir unha barra para tras "
|
||||
"(«\\\") ou aspas simples («'\") entre estes valores, precédaos de barra para "
|
||||
"tras (por exemplo '\\\\xyz' ou 'a\\'b')."
|
||||
|
||||
@ -11118,8 +11118,8 @@ msgid "Show only alert values"
|
||||
msgstr "Mostrar só valores de alerta"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filtrar pola categoría..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtrar pola categoría…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11260,10 +11260,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Número de peticións para ler a fileira anterior na orde da chave. Este "
|
||||
"método de lectura utilízase sobre todo para optimizar ORDER BY ... DESC."
|
||||
"método de lectura utilízase sobre todo para optimizar ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -12343,7 +12343,7 @@ msgstr "Nome do ficheiro"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "O nome da chave primaria debe ser... «PRIMARY»!"
|
||||
msgstr "O nome da chave primaria debe ser… «PRIMARY»!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
@ -14587,7 +14587,7 @@ msgstr "concurrent_insert está definido como 0"
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Introduza os valores das opcións de transformación empregando este "
|
||||
#~ "formato:'a', 100, b,'c'...<br />Se necesitar introducir unha barra para "
|
||||
#~ "formato:'a', 100, b,'c'…<br />Se necesitar introducir unha barra para "
|
||||
#~ "trás (\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de "
|
||||
#~ "barra para trás (por exemplo '\\\\xyz' ou 'a\\'b')."
|
||||
|
||||
@ -14597,7 +14597,7 @@ msgstr "concurrent_insert está definido como 0"
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Introduza os valores das opcións de transformación empregando este "
|
||||
#~ "formato:'a', 100, b,'c'...<br />Se necesitar introducir unha barra para "
|
||||
#~ "formato:'a', 100, b,'c'…<br />Se necesitar introducir unha barra para "
|
||||
#~ "trás (\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de "
|
||||
#~ "barra para trás (por exemplo '\\\\xyz' ou 'a\\'b')."
|
||||
|
||||
|
||||
48
po/he.po
48
po/he.po
@ -4323,7 +4323,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6385,7 +6385,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6675,7 +6675,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8397,7 +8397,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9563,31 +9563,31 @@ msgid "Revoke"
|
||||
msgstr "שלילה"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... שמירת הישן."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… שמירת הישן."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... מחיקת הישן מטבלאות המשתמשים."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… מחיקת הישן מטבלאות המשתמשים."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr "... מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן."
|
||||
msgstr "… מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "שינוי מידע כניסה / העתקת משתמש"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10001,17 +10001,17 @@ msgstr "%s מסדי נתונים נמחקו בהצלחה."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"אם סוג השדה הוא \"enum\" או \"set\", אנא השתמש בערכים בתבנית הבאה : "
|
||||
"'a','b','c'...<br /> אם אתה צריך להשתמש באלכסונים (\"\\\") או בציטוט יחיד "
|
||||
"'a','b','c'…<br /> אם אתה צריך להשתמש באלכסונים (\"\\\") או בציטוט יחיד "
|
||||
"(\"'\") ביחד עם הערכים האלה, הכנס לוכסן אחורי לפניהם (לדוגמא '\\\\xyz' or 'a"
|
||||
"\\'b')."
|
||||
|
||||
@ -10045,12 +10045,12 @@ msgstr "לתבנית זאת אין אפשרויות"
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"אם סוג השדה הוא \"enum\" או \"set\", אנא השתמש בערכים בתבנית הבאה : "
|
||||
"'a','b','c'...<br /> אם אתה צריך להשתמש באלכסונים (\"\\\") או בציטוט יחיד "
|
||||
"'a','b','c'…<br /> אם אתה צריך להשתמש באלכסונים (\"\\\") או בציטוט יחיד "
|
||||
"(\"'\") ביחד עם הערכים האלה, הכנס לוכסן אחורי לפניהם (לדוגמא '\\\\xyz' or 'a"
|
||||
"\\'b')."
|
||||
|
||||
@ -11058,7 +11058,7 @@ msgid "Show only alert values"
|
||||
msgstr "ראיית טבלאות"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11174,7 +11174,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -13842,7 +13842,7 @@ msgstr ""
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "אם סוג השדה הוא \"enum\" או \"set\", אנא השתמש בערכים בתבנית הבאה : "
|
||||
#~ "'a','b','c'...<br /> אם אתה צריך להשתמש באלכסונים (\"\\\") או בציטוט יחיד "
|
||||
#~ "'a','b','c'…<br /> אם אתה צריך להשתמש באלכסונים (\"\\\") או בציטוט יחיד "
|
||||
#~ "(\"'\") ביחד עם הערכים האלה, הכנס לוכסן אחורי לפניהם (לדוגמא '\\\\xyz' "
|
||||
#~ "or 'a\\'b')."
|
||||
|
||||
@ -13852,7 +13852,7 @@ msgstr ""
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "אם סוג השדה הוא \"enum\" או \"set\", אנא השתמש בערכים בתבנית הבאה : "
|
||||
#~ "'a','b','c'...<br /> אם אתה צריך להשתמש באלכסונים (\"\\\") או בציטוט יחיד "
|
||||
#~ "'a','b','c'…<br /> אם אתה צריך להשתמש באלכסונים (\"\\\") או בציטוט יחיד "
|
||||
#~ "(\"'\") ביחד עם הערכים האלה, הכנס לוכסן אחורי לפניהם (לדוגמא '\\\\xyz' "
|
||||
#~ "or 'a\\'b')."
|
||||
|
||||
@ -14039,7 +14039,7 @@ msgstr ""
|
||||
#~ msgid "Native MS Excel format"
|
||||
#~ msgstr "תבנית MS Excel טבעית"
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "בחירת הכל"
|
||||
|
||||
|
||||
38
po/hi.po
38
po/hi.po
@ -1618,9 +1618,9 @@ msgstr "डोक्युमेंटेशन"
|
||||
|
||||
#: js/messages.php:211
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Rule details"
|
||||
msgstr "विवरण..."
|
||||
msgstr "विवरण…"
|
||||
|
||||
#: js/messages.php:212
|
||||
#, fuzzy
|
||||
@ -4305,7 +4305,7 @@ msgstr "विन्यास फाइल"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr "क्या एक चेतावनी प्रदर्शित किया जाना चाहिए जब आप डेटा खो रहे हो."
|
||||
|
||||
@ -6412,8 +6412,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "विवरण..."
|
||||
msgid "Details…"
|
||||
msgstr "विवरण…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6669,7 +6669,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "आयात की गई फ़ाइल का प्रारूप"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8384,7 +8384,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -8654,9 +8654,9 @@ msgstr "याचिका प्रसंस्करणमें त्रु
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "विवरण..."
|
||||
msgstr "विवरण…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
#, fuzzy
|
||||
@ -9570,21 +9570,21 @@ msgid "Revoke"
|
||||
msgstr "वापस लो"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... पुराने रखना"
|
||||
msgid "… keep the old one."
|
||||
msgstr "… पुराने रखना"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "पुराने यूसर को टेबल से हटाना"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -9593,7 +9593,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9995,7 +9995,7 @@ msgstr "%1$s टेबल को सफलतापूर्वक बदल द
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10026,7 +10026,7 @@ msgstr "परिवर्तन के विकल्प"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -11033,7 +11033,7 @@ msgid "Show only alert values"
|
||||
msgstr "खुला टेबल शो"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11152,7 +11152,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
60
po/hr.po
60
po/hr.po
@ -1661,9 +1661,9 @@ msgstr "Dokumentacija"
|
||||
|
||||
#: js/messages.php:211
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Rule details"
|
||||
msgstr "Detalji..."
|
||||
msgstr "Detalji…"
|
||||
|
||||
#: js/messages.php:212
|
||||
#, fuzzy
|
||||
@ -4452,7 +4452,7 @@ msgstr "Konfiguracijska datoteka"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6556,8 +6556,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Detalji..."
|
||||
msgid "Details…"
|
||||
msgstr "Detalji…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6859,7 +6859,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Oblikovanje uvezene datoteke"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8735,12 +8735,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Prikazuje dio niza. Prva opcija je broj znakova koje je potrebno preskočiti, "
|
||||
"od početka niza (zadano: 0). Druga opcija je broj znakova za povrat (zadano: "
|
||||
"do završetka niza). Treća opcija je niz koji je potrebno pridodati iza "
|
||||
"završetka i/ili prije početka kad započne srezivanje (zadano: \"...\")."
|
||||
"završetka i/ili prije početka kad započne srezivanje (zadano: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9026,9 +9026,9 @@ msgstr "Procesi"
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "Detalji..."
|
||||
msgstr "Detalji…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
#, fuzzy
|
||||
@ -9951,32 +9951,32 @@ msgid "Revoke"
|
||||
msgstr "Opozovi"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... zadržati staru."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… zadržati staru."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... izbriši starog iz korisničkih tablica."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… izbriši starog iz korisničkih tablica."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... opozovi sve aktivne privilegije iz stare i potom je izbriši."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… opozovi sve aktivne privilegije iz stare i potom je izbriši."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije."
|
||||
"… izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Promjena podataka prijave / Kopiranje korisnika"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Izradi novog korisnika s istim privilegijama i..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Izradi novog korisnika s istim privilegijama i…"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10403,17 +10403,17 @@ msgstr "Odabrani korisnici uspješno su izbrisani."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ako je vrata polja \"enum\" ili \"set\", unesite vrijednosti u sljedećem "
|
||||
"obliku: 'a','B','c'...<br />Ako je potrebno unijeti lijevu kosu crtu (\"\\"
|
||||
"obliku: 'a','B','c'…<br />Ako je potrebno unijeti lijevu kosu crtu (\"\\"
|
||||
"\") or a single quote (\"'\") amongst those values, precede it with a "
|
||||
"backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -10447,12 +10447,12 @@ msgstr "Opcije preoblikovanja"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Unesite vrijednosti za opcije preoblikovanja upotrebom ovog oblika: 'a', "
|
||||
"100, b,'c'...<br />Ako je potrebno unijeti lijevu kosu crtu (\"\\\") ili "
|
||||
"100, b,'c'…<br />Ako je potrebno unijeti lijevu kosu crtu (\"\\\") ili "
|
||||
"jednostruki navodnik (\"'\") unutar ovih vrijednosti, ispred znaka stavite "
|
||||
"lijevu kosu crtu (na primjer: '\\\\xyz' ili 'a\\'B')."
|
||||
|
||||
@ -11474,7 +11474,7 @@ msgid "Show only alert values"
|
||||
msgstr "Prikaži otvorene tablice"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtriraj po kategoriji"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11618,10 +11618,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Broj zahtjeva za čitanje prethodnog retka u redoslijedu ključa. Ovaj način "
|
||||
"čitanja uglavnom se upotrebljava za optimiziranje opcije ORDER BY ... DESC."
|
||||
"čitanja uglavnom se upotrebljava za optimiziranje opcije ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14629,7 +14629,7 @@ msgstr "najv. uzastopnih veza"
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Unesite vrijednosti za opcije preoblikovanja upotrebom ovog oblika: 'a', "
|
||||
#~ "100, b,'c'...<br />Ako je potrebno unijeti lijevu kosu crtu (\"\\\") ili "
|
||||
#~ "100, b,'c'…<br />Ako je potrebno unijeti lijevu kosu crtu (\"\\\") ili "
|
||||
#~ "jednostruki navodnik (\"'\") unutar ovih vrijednosti, ispred znaka "
|
||||
#~ "stavite lijevu kosu crtu (na primjer: '\\\\xyz' ili 'a\\'B')."
|
||||
|
||||
@ -14639,7 +14639,7 @@ msgstr "najv. uzastopnih veza"
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Unesite vrijednosti za opcije preoblikovanja upotrebom ovog oblika: 'a', "
|
||||
#~ "100, b,'c'...<br />Ako je potrebno unijeti lijevu kosu crtu (\"\\\") ili "
|
||||
#~ "100, b,'c'…<br />Ako je potrebno unijeti lijevu kosu crtu (\"\\\") ili "
|
||||
#~ "jednostruki navodnik (\"'\") unutar ovih vrijednosti, ispred znaka "
|
||||
#~ "stavite lijevu kosu crtu (na primjer: '\\\\xyz' ili 'a\\'B')."
|
||||
|
||||
|
||||
52
po/hu.po
52
po/hu.po
@ -4134,10 +4134,10 @@ msgstr "Konfigurációs fájl"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Meg kell-e adatvesztés előtt jeleníteni figyelmeztetést ("Biztosan..."
|
||||
"Meg kell-e adatvesztés előtt jeleníteni figyelmeztetést ("Biztosan…"
|
||||
"")"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6328,8 +6328,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Részletek..."
|
||||
msgid "Details…"
|
||||
msgstr "Részletek…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6589,8 +6589,8 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Az importfájl feltöltése..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Az importfájl feltöltése…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8404,13 +8404,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Valamely karakterlánc egy részét mutatja. Az első lehetőség a karakterlánc "
|
||||
"elejéről kihagyandó karakterek száma (alapértelmezés: 0). A második "
|
||||
"lehetőség a visszaadandó karakterek száma (alapértelmezés: a karakterlánc "
|
||||
"végéig). A harmadik lehetőség az elején és/vagy a végén hozzáfűzendő "
|
||||
"karakterlánc a tranzakció előfordulásakor (alapértelmezés: \"...\")."
|
||||
"karakterlánc a tranzakció előfordulásakor (alapértelmezés: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9542,32 +9542,32 @@ msgid "Revoke"
|
||||
msgstr "Visszavonás"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... a régiek megőrzése."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… a régiek megőrzése."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... a régiek törlése a felhasználói táblákból."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… a régiek törlése a felhasználói táblákból."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... az összes aktív jog visszaállítása a régiekből, majd törlés."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… az összes aktív jog visszaállítása a régiekből, majd törlés."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... a régiek törlése a felhasználói táblákból, majd a jogok újratöltése."
|
||||
"… a régiek törlése a felhasználói táblákból, majd a jogok újratöltése."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9979,12 +9979,12 @@ msgstr "A kiválasztott felhasználók törlése sikerült."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ha az oszlop típusa \"enum\" vagy \"set\", akkor az értékeket ilyen formában "
|
||||
"írja be: 'a','b','c'...<br />Ha fordított perjelet (\"\\\") vagy aposztrófot "
|
||||
"írja be: 'a','b','c'…<br />Ha fordított perjelet (\"\\\") vagy aposztrófot "
|
||||
"(\"'\") akar ezekben az értékekben használni, akkor fordított perjellel "
|
||||
"kezdje (például '\\\\xyz' vagy 'a\\'b')."
|
||||
|
||||
@ -10016,12 +10016,12 @@ msgstr "Átalakítás beállításai"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Írja be az átalakítási beállítások értékeit a következő formátumban: 'a', "
|
||||
"100, b,'c'...<br />Ha fordított perjelet (\"\\\") vagy idézőjelet (\"'\") "
|
||||
"100, b,'c'…<br />Ha fordított perjelet (\"\\\") vagy idézőjelet (\"'\") "
|
||||
"akar beszúrni az értékekbe, akkor kezdje fordított perjellel (például: '\\"
|
||||
"\\xyz' vagy 'a\\'b')."
|
||||
|
||||
@ -10995,8 +10995,8 @@ msgid "Show only alert values"
|
||||
msgstr "Csak a figyelmeztető értékek megjelenítése"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Szűrés kategória szerint..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Szűrés kategória szerint…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11136,10 +11136,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"A kulcssorrendben előző sort beolvasandó kérések száma. Ezt a beolvasási "
|
||||
"módszert főleg az ORDER BY ... DESC optimalizálásához használják."
|
||||
"módszert főleg az ORDER BY … DESC optimalizálásához használják."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
|
||||
26
po/hy.po
26
po/hy.po
@ -4009,7 +4009,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -5952,7 +5952,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6203,7 +6203,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -7839,7 +7839,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -8920,21 +8920,21 @@ msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -8943,7 +8943,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9329,7 +9329,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -9358,7 +9358,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10287,7 +10287,7 @@ msgid "Show only alert values"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10400,7 +10400,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
50
po/id.po
50
po/id.po
@ -4198,10 +4198,10 @@ msgstr "Berkas konfigurasi"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Apakah suatu peringatan ("Apakah Anda benar-benar yakin ...") "
|
||||
"Apakah suatu peringatan ("Apakah Anda benar-benar yakin …") "
|
||||
"harus ditampilkan bila Anda akan kehilangan data"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6268,8 +6268,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Harap periksa hak akses direktori basis data."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Rincian..."
|
||||
msgid "Details…"
|
||||
msgstr "Rincian…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6524,7 +6524,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Format berkas impor"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8269,14 +8269,14 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Hanya menampilkan sebagian dari sebuah String. Pilihan pertama adalah sebuah "
|
||||
"Offset untuk menentukan tempat dari permulaan teks Anda (Default 0). Pilihan "
|
||||
"kedua adalah sebuah Offset untuk menentukan jumlah teks yang akan "
|
||||
"dikembalikan. Bila ditinggal kosong, seluruh teks yang tersisa akan "
|
||||
"dibalikkan. Pilihan ketiga mendefinisikan Chars yang akan ditambahkan pada "
|
||||
"Output bila sebuah Substring dibalikkan (Default: ...) ."
|
||||
"Output bila sebuah Substring dibalikkan (Default: …) ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9390,32 +9390,32 @@ msgid "Revoke"
|
||||
msgstr "Cabut"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... mempertahankan yang lama."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… mempertahankan yang lama."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... hapus yang lama dari User Table."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… hapus yang lama dari User Table."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... cabut seluruh hak yang aktif, kemudian hapuskan yang lama."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… cabut seluruh hak yang aktif, kemudian hapuskan yang lama."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... hapuskan yang lama dari tabel pengguna, kemudian muat ulang hak akses."
|
||||
"… hapuskan yang lama dari tabel pengguna, kemudian muat ulang hak akses."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Ubah Informasi Masuk / Salin Pengguna"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Buat pengguna baru dengan hak akses yang sama dan ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Buat pengguna baru dengan hak akses yang sama dan …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9827,12 +9827,12 @@ msgstr "Sukses menghapus pengguna yang dipilih."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Jika jenis kolom adalah \"enum\" atau \"set\", harap masukkan nilai dengan "
|
||||
"format: 'a','b','c'...<br />Jika perlu memasukkan petik balik (\"\\\") atau "
|
||||
"format: 'a','b','c'…<br />Jika perlu memasukkan petik balik (\"\\\") atau "
|
||||
"petik tunggal (\"'\"), awali dengan petik balik (mis. '\\\\xyz' atau 'a"
|
||||
"\\'b')."
|
||||
|
||||
@ -9866,12 +9866,12 @@ msgstr "Pilihan transformasi"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Harap masukkan nilai untuk pilihan transformasi dengan menggunakan format "
|
||||
"sbb.: 'a', 100, b,'c'...<br />Bila sebuah Backslash (\"\\\") atau Single "
|
||||
"sbb.: 'a', 100, b,'c'…<br />Bila sebuah Backslash (\"\\\") atau Single "
|
||||
"Quote (\"'\") diperlukan di antara nilai tersebut, harap gunakan tanda "
|
||||
"Backslash (contoh: '\\\\xyz' atau 'a\\'b')."
|
||||
|
||||
@ -10826,8 +10826,8 @@ msgid "Show only alert values"
|
||||
msgstr "Tampilkan hanya nilai peringatan"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filter menurut kategori..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filter menurut kategori…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -10963,10 +10963,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Jumlah permintaan membaca baris sebelumnya dalam urutan kunci. Metode baca "
|
||||
"ini terutama digunakan untuk mengoptimalkan ORDER BY ... DESC."
|
||||
"ini terutama digunakan untuk mengoptimalkan ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
|
||||
52
po/it.po
52
po/it.po
@ -4195,10 +4195,10 @@ msgstr "File di configurazione"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Se visualizzazare di un messaggio di conferma ("Sei veramente sicuro..."
|
||||
"Se visualizzazare di un messaggio di conferma ("Sei veramente sicuro…"
|
||||
"") in caso di lancio di comandi che eliminano dati"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6413,8 +6413,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Controllate i privilegi della cartella che contiene il database."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Dettagli..."
|
||||
msgid "Details…"
|
||||
msgstr "Dettagli…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6679,8 +6679,8 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Caricamento del file di importazione in corso..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Caricamento del file di importazione in corso…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8492,14 +8492,14 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Mostra soltanto una parte della stringa. La prima opzione è l'offset che "
|
||||
"serve a definire dove inizia l'output del vostro testo (Prefinito: 0). La "
|
||||
"seconda opzione è un offset che indica quanto testo viene restituito "
|
||||
"(Predefinito: tutto il testo rimanente). La terza opzione definisce quali "
|
||||
"caratteri saranno aggiunti in fondo all'output quando una soptto-stringa "
|
||||
"viene restituita (Predefinito: \"...\")."
|
||||
"viene restituita (Predefinito: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9631,26 +9631,26 @@ msgid "Revoke"
|
||||
msgstr "Revoca"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... mantieni quello vecchio."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… mantieni quello vecchio."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... cancella quello vecchio dalla tabella degli utenti."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… cancella quello vecchio dalla tabella degli utenti."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... revoca tutti i privilegi attivi da quello vecchio e in seguito "
|
||||
"… revoca tutti i privilegi attivi da quello vecchio e in seguito "
|
||||
"cancellalo."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... cancella quello vecchio dalla tabella degli utenti e in seguito ricarica "
|
||||
"… cancella quello vecchio dalla tabella degli utenti e in seguito ricarica "
|
||||
"i privilegi."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9658,8 +9658,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Cambia le Informazioni di Login / Copia Utente"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Crea un nuovo utente con gli stessi privilegi e ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Crea un nuovo utente con gli stessi privilegi e …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10071,12 +10071,12 @@ msgstr "Gli utenti selezionati sono stati cancellati con successo."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Se il tipo di campo è \"enum\" o \"set\", immetti i valori usando il "
|
||||
"formato: 'a','b','c'...<br />Se hai bisogno di inserire una barra rovesciata "
|
||||
"formato: 'a','b','c'…<br />Se hai bisogno di inserire una barra rovesciata "
|
||||
"(\"\\\") o una virgolette singola quote (\"'\") prefissa a questi caratteri "
|
||||
"con un \"\\\" (per esempio '\\\\xyz' o 'a\\'b')."
|
||||
|
||||
@ -10110,12 +10110,12 @@ msgstr "Opzioni di transformazione"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Prego, immettere i valori per le opzioni di trasformazioneutilizzando questo "
|
||||
"formato: 'a', 100, b,'c'...<br />Se c'è la necessità di immettere un "
|
||||
"formato: 'a', 100, b,'c'…<br />Se c'è la necessità di immettere un "
|
||||
"backslash (\"\\\") o un apostrofo (\"'\") tra questi valori, essi vanno "
|
||||
"backslashati (ad esempio '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -11127,8 +11127,8 @@ msgid "Show only alert values"
|
||||
msgstr "Mostra solo i valori di allarme"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filtra per categoria..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtra per categoria…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11272,11 +11272,11 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Il numero di richieste per leggere la riga precedente nell'ordine delle "
|
||||
"chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare "
|
||||
"ORDER BY ... DESC."
|
||||
"ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
|
||||
48
po/ja.po
48
po/ja.po
@ -4197,10 +4197,10 @@ msgstr "設定ファイル"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"データを失う作業をしようとしたとき、「本当に実行しますか?...」という警告を出"
|
||||
"データを失う作業をしようとしたとき、「本当に実行しますか?…」という警告を出"
|
||||
"すかどうか。"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6375,8 +6375,8 @@ msgstr ""
|
||||
"データベースを含んでいるディレクトリのパーミッションを確認してください。"
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "詳細..."
|
||||
msgid "Details…"
|
||||
msgstr "詳細…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6638,8 +6638,8 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "インポートファイルをアップロードしています..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "インポートファイルをアップロードしています…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8435,12 +8435,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"文字列の一部のみを表示します。1 つ目のオプションは文字列の先頭から何文字ス"
|
||||
"キップするか (デフォルトは 0 です)、2 つ目のオプションは表示するテキストの文"
|
||||
"字数です (デフォルトは文字列の末尾までです)。3 つ目のオプションは文字列を切り"
|
||||
"詰めるときに前/後に補う省略記号です (デフォルトは ... です)。"
|
||||
"詰めるときに前/後に補う省略記号です (デフォルトは … です)。"
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9547,21 +9547,21 @@ msgid "Revoke"
|
||||
msgstr "取り消し"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr "元のユーザも残す"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "ユーザテーブルから元のユーザを削除する"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "元のユーザの特権をすべて無効にしてから削除する"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr "ユーザテーブルから元のユーザを削除し、特権の再読み込みをする"
|
||||
|
||||
@ -9570,7 +9570,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "ログイン情報の変更 / ユーザの複製"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "同じ特権を持つ新しいユーザを作る"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9975,11 +9975,11 @@ msgstr "カラムは正常に移動されました。"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"カラムのデータ型が「enum」ないし「set」の場合の値の書式: 'a','b','c'...<br />"
|
||||
"カラムのデータ型が「enum」ないし「set」の場合の値の書式: 'a','b','c'…<br />"
|
||||
"バックスラッシュ (\"\\\") やシングルクォート (\"'\") を含める必要がある場合"
|
||||
"は (\\\\xyz や a\\'b のように) その前にバックスラッシュを付けてください。"
|
||||
|
||||
@ -10011,11 +10011,11 @@ msgstr "変換オプション"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"変換オプションの値の書式: 'a','b','c'...<br />バックスラッシュ (\"\\\") やシ"
|
||||
"変換オプションの値の書式: 'a','b','c'…<br />バックスラッシュ (\"\\\") やシ"
|
||||
"ングルクォート (\"'\") を値に含める必要がある場合は ( \\\\xyz や a\\'b のよう"
|
||||
"に) バックスラッシュでエスケープしてください。"
|
||||
|
||||
@ -11019,8 +11019,8 @@ msgid "Show only alert values"
|
||||
msgstr "警告値のみ表示する"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "種別による絞り込み..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "種別による絞り込み…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11151,10 +11151,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER "
|
||||
"BY ... DESC の最適化に利用されます。"
|
||||
"BY … DESC の最適化に利用されます。"
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14624,7 +14624,7 @@ msgstr "concurrent_insert は 0 に設定されています。"
|
||||
#~ "those values, precede it with a backslash (for example '\\\\xyz' or 'a"
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "変換オプションの値の書式: 'a','b','c'...<br />バックスラッシュ (\"\\\") や"
|
||||
#~ "変換オプションの値の書式: 'a','b','c'…<br />バックスラッシュ (\"\\\") や"
|
||||
#~ "シングルクォート (\"'\") を値に含める必要がある場合は ( \\\\xyz や a\\'b "
|
||||
#~ "のように) バックスラッシュでエスケープしてください"
|
||||
|
||||
@ -14633,7 +14633,7 @@ msgstr "concurrent_insert は 0 に設定されています。"
|
||||
#~ "(\"\\\") or a single quote (\"'\") amongst those values, precede it with "
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "変換オプションの値の書式: 'a','b','c'...<br />バックスラッシュ (\"\\\") や"
|
||||
#~ "変換オプションの値の書式: 'a','b','c'…<br />バックスラッシュ (\"\\\") や"
|
||||
#~ "シングルクォート (\"'\") を値に含める必要がある場合は ( \\\\xyz や a\\'b "
|
||||
#~ "のように) バックスラッシュでエスケープしてください"
|
||||
|
||||
@ -14887,7 +14887,7 @@ msgstr "concurrent_insert は 0 に設定されています。"
|
||||
#~ msgid "Native MS Excel format"
|
||||
#~ msgstr "MS Excel のネイティブ形式"
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "全選択"
|
||||
|
||||
|
||||
54
po/ka.po
54
po/ka.po
@ -1618,9 +1618,9 @@ msgstr "დოკუმენტაცია"
|
||||
|
||||
#: js/messages.php:211
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Rule details"
|
||||
msgstr "დეტალები..."
|
||||
msgstr "დეტალები…"
|
||||
|
||||
#: js/messages.php:212
|
||||
#, fuzzy
|
||||
@ -4412,7 +4412,7 @@ msgstr "კონფიგურაციის ფაილი"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6601,8 +6601,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "დეტალები..."
|
||||
msgid "Details…"
|
||||
msgstr "დეტალები…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6904,7 +6904,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "შემოტანილი ფაილების ფორმატი"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8703,7 +8703,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -8992,9 +8992,9 @@ msgstr "პროცესები"
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "დეტალები..."
|
||||
msgstr "დეტალები…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
#, fuzzy
|
||||
@ -9912,24 +9912,24 @@ msgid "Revoke"
|
||||
msgstr "Revoke"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... ძველის შენახვა."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… ძველის შენახვა."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების "
|
||||
"… ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების "
|
||||
"გადატვირთვა."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9937,8 +9937,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10346,17 +10346,17 @@ msgstr "%s databases have been dropped successfully."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"If field type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -10386,7 +10386,7 @@ msgstr "გარდაქმნის პარამეტრები"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -11412,7 +11412,7 @@ msgid "Show only alert values"
|
||||
msgstr "Show open tables"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11531,7 +11531,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -14510,7 +14510,7 @@ msgstr "max. concurrent connections"
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Please enter the values for transformation options using this format: "
|
||||
#~ "'a', 100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a "
|
||||
#~ "'a', 100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a "
|
||||
#~ "single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
#~ "(for example '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -14520,7 +14520,7 @@ msgstr "max. concurrent connections"
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Please enter the values for transformation options using this format: "
|
||||
#~ "'a', 100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a "
|
||||
#~ "'a', 100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a "
|
||||
#~ "single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
#~ "(for example '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -14833,7 +14833,7 @@ msgstr "max. concurrent connections"
|
||||
#~ msgid "Native MS Excel format"
|
||||
#~ msgstr "Native MS Excel format"
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "ყველას მონიშნვა"
|
||||
|
||||
|
||||
26
po/kk.po
26
po/kk.po
@ -4042,7 +4042,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -5993,7 +5993,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6244,7 +6244,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -7881,7 +7881,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -8962,21 +8962,21 @@ msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -8985,7 +8985,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9374,7 +9374,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -9404,7 +9404,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10333,7 +10333,7 @@ msgid "Show only alert values"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10446,7 +10446,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
40
po/ko.po
40
po/ko.po
@ -4141,7 +4141,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6028,13 +6028,13 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Config authentication"
|
||||
msgstr "인증중입니다..."
|
||||
msgstr "인증중입니다…"
|
||||
|
||||
#: libraries/config/setup.forms.php:45
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Cookie authentication"
|
||||
msgstr "인증중입니다..."
|
||||
msgstr "인증중입니다…"
|
||||
|
||||
#: libraries/config/setup.forms.php:48
|
||||
msgid "HTTP authentication"
|
||||
@ -6044,7 +6044,7 @@ msgstr "HTTP 인증"
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Signon authentication"
|
||||
msgstr "인증중입니다..."
|
||||
msgstr "인증중입니다…"
|
||||
|
||||
#: libraries/config/setup.forms.php:247
|
||||
#: libraries/config/user_preferences.forms.php:151
|
||||
@ -6155,7 +6155,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6433,7 +6433,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8132,7 +8132,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9286,24 +9286,24 @@ msgid "Revoke"
|
||||
msgstr "제거"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
#, fuzzy
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "권한 테이블에서 사용자를 삭제하기만 함."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr "사용자를 삭제하고 사용권한을 갱신함."
|
||||
|
||||
@ -9312,7 +9312,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9719,12 +9719,12 @@ msgstr "선택한 사용자들을 삭제했습니다."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"필드 종류가 \"enum\"이나 \"set\"일 경우, 다음과 같은 형식으로 값을 입력하십시"
|
||||
"오: 'a','b','c'...<br />여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 한다"
|
||||
"오: 'a','b','c'…<br />여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 한다"
|
||||
"면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')."
|
||||
|
||||
#: libraries/tbl_columns_definition_form.inc.php:110
|
||||
@ -9753,12 +9753,12 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"필드 종류가 \"enum\"이나 \"set\"일 경우, 다음과 같은 형식으로 값을 입력하십시"
|
||||
"오: 'a',100, b,'c'...<br />여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 한다"
|
||||
"오: 'a',100, b,'c'…<br />여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 한다"
|
||||
"면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')."
|
||||
|
||||
#: libraries/tbl_columns_definition_form.inc.php:411
|
||||
@ -10748,7 +10748,7 @@ msgid "Show only alert values"
|
||||
msgstr "테이블 보기"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10863,7 +10863,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -13557,7 +13557,7 @@ msgstr "concurrent_insert가 0으로 설정되었습니다."
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "필드 종류가 \"enum\"이나 \"set\"일 경우, 다음과 같은 형식으로 값을 입력하"
|
||||
#~ "십시오: 'a','b','c'...<br />여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 "
|
||||
#~ "십시오: 'a','b','c'…<br />여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 "
|
||||
#~ "한다면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')."
|
||||
|
||||
#~ msgid ""
|
||||
@ -13566,7 +13566,7 @@ msgstr "concurrent_insert가 0으로 설정되었습니다."
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "필드 종류가 \"enum\"이나 \"set\"일 경우, 다음과 같은 형식으로 값을 입력하"
|
||||
#~ "십시오: 'a','b','c'...<br />여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 "
|
||||
#~ "십시오: 'a','b','c'…<br />여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 "
|
||||
#~ "한다면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')."
|
||||
|
||||
#~ msgid "New table"
|
||||
|
||||
52
po/lt.po
52
po/lt.po
@ -4218,10 +4218,10 @@ msgstr "Nustatymų failas"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Ar perspėjimas („Ar tikrai norite...“) turi būti rodomas kai kalbama apie "
|
||||
"Ar perspėjimas („Ar tikrai norite…“) turi būti rodomas kai kalbama apie "
|
||||
"duomenų praradimą"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6370,8 +6370,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Detalės..."
|
||||
msgid "Details…"
|
||||
msgstr "Detalės…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6631,7 +6631,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Įkelto failo formatas"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8396,13 +8396,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Rodoma tik dalis teksto. Pirmas parametras nurodo išvedamo teksto pradžią "
|
||||
"(nutylint: 0). Antrasis parametras nurodo išvedamo teksto kiekį. Jeigu "
|
||||
"antras parametras nenurodytas tai bus išvestas visas tekstas. Trečiasis "
|
||||
"parametras nurodo kurios raidės bus prijungtos prie išvedimo teksto "
|
||||
"(nutylint: ...)."
|
||||
"(nutylint: …)."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9541,25 +9541,25 @@ msgid "Revoke"
|
||||
msgstr "Panaikinti"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... palikti seną vartotoją."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… palikti seną vartotoją."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... pašalinti seną vartotoją iš vartotojų lentelės."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… pašalinti seną vartotoją iš vartotojų lentelės."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti."
|
||||
"… panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti "
|
||||
"… pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti "
|
||||
"privilegijas"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9567,8 +9567,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9979,12 +9979,12 @@ msgstr "Pažymėti vartotojai sėkmingai pašalinti."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Jeigu laukelio tipas yra \"enum\" arba \"set\", tuomet duomenų reikšmes "
|
||||
"reikia įvesti naudojant šį formatą: 'a','b','c'...<br />. Jeigu jums reikia "
|
||||
"reikia įvesti naudojant šį formatą: 'a','b','c'…<br />. Jeigu jums reikia "
|
||||
"įrašyti dešininį įžambųjį brūkšnį (\"\\\") arba kabutes(\"'\") tarp šių "
|
||||
"reikšmių, tuomet prieš šios simbolius reikia papildomo dešininio įžambaus "
|
||||
"brūkšnio (pavyzdžiui: '\\\\xyz' or 'a\\'b')."
|
||||
@ -10019,12 +10019,12 @@ msgstr "Transformacijos nustatymai"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Prašome įvesti transformacijos nustatymų reikšmes naudodami tokį įvedimo "
|
||||
"formatą: 'a', 100, b,'c'...<br />Jeigu tarp šių reikšmių prisireiks "
|
||||
"formatą: 'a', 100, b,'c'…<br />Jeigu tarp šių reikšmių prisireiks "
|
||||
"panaudoti viršutinį vertikalų pasvirą brūkšnį (\"\\\") arba viengubą kabutę "
|
||||
"(\"'\"), naudokite viršutinį vertikalų pasvirą brūkšnį prieš šiuos simbolius "
|
||||
"(pvz: '\\\\xyz' ar 'a\\'b')."
|
||||
@ -11013,8 +11013,8 @@ msgid "Show only alert values"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filtruoti pagal kategoriją..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtruoti pagal kategoriją…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11126,7 +11126,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -14231,5 +14231,5 @@ msgstr "MyISAM concurrent įterpimai"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Fono spalva"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Pasirinkti..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Pasirinkti…"
|
||||
|
||||
52
po/lv.po
52
po/lv.po
@ -4276,7 +4276,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6334,7 +6334,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6625,7 +6625,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8404,12 +8404,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Parāda tikai virknes daļu. Pirmā opcija ir nobīde, kas nosaka, kur Jūsu "
|
||||
"teksts sākas (noklusējums 0). Otrā opcija ir atgriežamā teksta garums. Ja "
|
||||
"tukša, atgriež visu atlikušo tekstu. Trešā opcija nosaka rakstzīmes, kas "
|
||||
"tiks pievienotas apgrieztās virknes galā (noklusējums: ...) ."
|
||||
"tiks pievienotas apgrieztās virknes galā (noklusējums: …) ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9600,26 +9600,26 @@ msgid "Revoke"
|
||||
msgstr "Atsaukt"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... paturēt veco lietotāju."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… paturēt veco lietotāju."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... dzēst veco lietotāju no lietotāju tabulas."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… dzēst veco lietotāju no lietotāju tabulas."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst "
|
||||
"… atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst "
|
||||
"viņu."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt "
|
||||
"… dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt "
|
||||
"privilēģijas."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9627,8 +9627,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10057,17 +10057,17 @@ msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ja lauka tips ir \"enum\" vai \"set\", lūdzu ievadiet vērtības atbilstoši "
|
||||
"šim formatam: 'a','b','c'...<br />Ja Jums vajag ielikt atpakaļējo slīpsvītru "
|
||||
"šim formatam: 'a','b','c'…<br />Ja Jums vajag ielikt atpakaļējo slīpsvītru "
|
||||
"(\\) vai vienkāršo pēdiņu (') kādā no šīm vērtībām, lieciet tās priekšā "
|
||||
"atpakaļējo slīpsvītru (piemēram, '\\\\xyz' vai 'a\\'b')."
|
||||
|
||||
@ -10101,12 +10101,12 @@ msgstr "Transformācijas opcijas"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Lūdzu ievadiet transformāciju opciju vērtības, lietojot šo formatu: 'a', "
|
||||
"100, b,'c'...<br />Ja Jums jālieto atpakaļējā slīpsvītra (\"\\\") vai "
|
||||
"100, b,'c'…<br />Ja Jums jālieto atpakaļējā slīpsvītra (\"\\\") vai "
|
||||
"vienkāršā pēdiņa (\"'\") starp šīm vērtībām, lieciet tās priekšā vēl vienu "
|
||||
"atpakaļējo slīpsvītru (piemēram '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -11115,7 +11115,7 @@ msgid "Show only alert values"
|
||||
msgstr "Rādīt tabulas"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11233,7 +11233,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -12185,7 +12185,7 @@ msgstr "Lietotājvārds"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Primārās atslēgas nosaukumam jābūt... PRIMARY!"
|
||||
msgstr "Primārās atslēgas nosaukumam jābūt… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
@ -13908,7 +13908,7 @@ msgstr ""
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Lūdzu ievadiet transformāciju opciju vērtības, lietojot šo formatu: 'a', "
|
||||
#~ "100, b,'c'...<br />Ja Jums jālieto atpakaļējā slīpsvītra (\"\\\") vai "
|
||||
#~ "100, b,'c'…<br />Ja Jums jālieto atpakaļējā slīpsvītra (\"\\\") vai "
|
||||
#~ "vienkāršā pēdiņa (\"'\") starp šīm vērtībām, lieciet tās priekšā vēl "
|
||||
#~ "vienu atpakaļējo slīpsvītru (piemēram '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -13918,7 +13918,7 @@ msgstr ""
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Lūdzu ievadiet transformāciju opciju vērtības, lietojot šo formatu: 'a', "
|
||||
#~ "100, b,'c'...<br />Ja Jums jālieto atpakaļējā slīpsvītra (\"\\\") vai "
|
||||
#~ "100, b,'c'…<br />Ja Jums jālieto atpakaļējā slīpsvītra (\"\\\") vai "
|
||||
#~ "vienkāršā pēdiņa (\"'\") starp šīm vērtībām, lieciet tās priekšā vēl "
|
||||
#~ "vienu atpakaļējo slīpsvītru (piemēram '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -14158,7 +14158,7 @@ msgstr ""
|
||||
#~ msgid "Native MS Excel format"
|
||||
#~ msgstr "Dati MS Excel formatā"
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "Iezīmēt visu"
|
||||
|
||||
|
||||
64
po/mk.po
64
po/mk.po
@ -4401,7 +4401,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6470,7 +6470,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6761,7 +6761,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8574,12 +8574,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Покажува дел од стрингот. Првата опција е број на знаци кои треба да се "
|
||||
"прескокнат од почетокот на стрингот (default 0). Другата опција е број на "
|
||||
"вратени знаци (default: до крај на стрингот). Третата опција е стринг кој се "
|
||||
"додава кага ќе дојде до отсекување (default: ...) ."
|
||||
"додава кага ќе дојде до отсекување (default: …) ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9536,7 +9536,7 @@ msgstr ""
|
||||
#: libraries/server_privileges.lib.php:227
|
||||
#: libraries/server_privileges.lib.php:868 server_privileges.php:65
|
||||
msgid "Allows creating temporary tables."
|
||||
msgstr "Дозволува креирање на привремени табели..."
|
||||
msgstr "Дозволува креирање на привремени табели…"
|
||||
|
||||
#: libraries/server_privileges.lib.php:231
|
||||
#: libraries/server_privileges.lib.php:951 server_privileges.php:77
|
||||
@ -9780,24 +9780,24 @@ msgid "Revoke"
|
||||
msgstr "Забрани"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... сочувај го стариот."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… сочувај го стариот."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... избриши ги старите од табелата на корисници."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… избриши ги старите од табелата на корисници."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... прво одземи ги сите привилегии на корисниците а потоа избриши ги."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… прво одземи ги сите привилегии на корисниците а потоа избриши ги."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... избриши го стариот корисник од табелата на корисници а потоа повторно "
|
||||
"… избриши го стариот корисник од табелата на корисници а потоа повторно "
|
||||
"вчитај ги привилегиите."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9805,8 +9805,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Промени ги информациите за најавувањето / Копирај го корисникот"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Направи нов корисник со исти привилегии и ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Направи нов корисник со исти привилегии и …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10236,17 +10236,17 @@ msgstr "Изабраните корисници успешно се избриш
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ако типот на полето е \"enum\" или \"set\", внесувајте вредност во формат: "
|
||||
"'a','b','c'...<br />Ако ви треба обратна коса црта (\"\\\") или апостроф "
|
||||
"'a','b','c'…<br />Ако ви треба обратна коса црта (\"\\\") или апостроф "
|
||||
"(\"'\") користите ги во escap форма (пример '\\\\xyz' или 'a\\'b')."
|
||||
|
||||
#: libraries/tbl_columns_definition_form.inc.php:110
|
||||
@ -10279,12 +10279,12 @@ msgstr "Опции на трансформацијата"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ве молиме внесете вредности за опциите на трансформацијата во следниов "
|
||||
"формат: 'a','b','c'...<br /> Ако треба да внесете обратна коса црта (\"\\\") "
|
||||
"формат: 'a','b','c'…<br /> Ако треба да внесете обратна коса црта (\"\\\") "
|
||||
"или апостроф (\"'\") во тие вредности, ставете обратна коса црта пред нив "
|
||||
"(пример '\\\\xyz' или 'a\\'b')."
|
||||
|
||||
@ -11292,7 +11292,7 @@ msgid "Show only alert values"
|
||||
msgstr "Прикажи табели"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11411,7 +11411,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -12363,7 +12363,7 @@ msgstr "Назив на корисник"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Името на примарниот клуч мора да биде... PRIMARY!"
|
||||
msgstr "Името на примарниот клуч мора да биде… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
@ -13080,13 +13080,13 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Allows creating temporary tables."
|
||||
msgid "Percentage of sorts that cause temporary tables"
|
||||
msgstr "Дозволува креирање на привремени табели..."
|
||||
msgstr "Дозволува креирање на привремени табели…"
|
||||
|
||||
#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221
|
||||
#, fuzzy
|
||||
#| msgid "Allows creating temporary tables."
|
||||
msgid "Too many sorts are causing temporary tables."
|
||||
msgstr "Дозволува креирање на привремени табели..."
|
||||
msgstr "Дозволува креирање на привремени табели…"
|
||||
|
||||
#: libraries/advisory_rules.txt:215 libraries/advisory_rules.txt:222
|
||||
msgid ""
|
||||
@ -13105,7 +13105,7 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Allows creating temporary tables."
|
||||
msgid "Rate of sorts that cause temporary tables"
|
||||
msgstr "Дозволува креирање на привремени табели..."
|
||||
msgstr "Дозволува креирање на привремени табели…"
|
||||
|
||||
#: libraries/advisory_rules.txt:223
|
||||
#, fuzzy, php-format
|
||||
@ -13590,7 +13590,7 @@ msgstr "Конекции"
|
||||
#, fuzzy
|
||||
#| msgid "Allows creating temporary tables."
|
||||
msgid "Too many connections are aborted."
|
||||
msgstr "Дозволува креирање на привремени табели..."
|
||||
msgstr "Дозволува креирање на привремени табели…"
|
||||
|
||||
#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410
|
||||
msgid ""
|
||||
@ -13627,7 +13627,7 @@ msgstr "Содржина"
|
||||
#, fuzzy
|
||||
#| msgid "Allows creating temporary tables."
|
||||
msgid "Too many clients are aborted."
|
||||
msgstr "Дозволува креирање на привремени табели..."
|
||||
msgstr "Дозволува креирање на привремени табели…"
|
||||
|
||||
#: libraries/advisory_rules.txt:417 libraries/advisory_rules.txt:424
|
||||
msgid ""
|
||||
@ -14128,7 +14128,7 @@ msgstr ""
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Ве молиме внесете вредности за опциите на трансформацијата во следниов "
|
||||
#~ "формат: 'a','b','c'...<br /> Ако треба да внесете обратна коса црта (\"\\"
|
||||
#~ "формат: 'a','b','c'…<br /> Ако треба да внесете обратна коса црта (\"\\"
|
||||
#~ "\") или апостроф (\"'\") во тие вредности, ставете обратна коса црта пред "
|
||||
#~ "нив (пример '\\\\xyz' или 'a\\'b')."
|
||||
|
||||
@ -14138,7 +14138,7 @@ msgstr ""
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Ве молиме внесете вредности за опциите на трансформацијата во следниов "
|
||||
#~ "формат: 'a','b','c'...<br /> Ако треба да внесете обратна коса црта (\"\\"
|
||||
#~ "формат: 'a','b','c'…<br /> Ако треба да внесете обратна коса црта (\"\\"
|
||||
#~ "\") или апостроф (\"'\") во тие вредности, ставете обратна коса црта пред "
|
||||
#~ "нив (пример '\\\\xyz' или 'a\\'b')."
|
||||
|
||||
@ -14384,7 +14384,7 @@ msgstr ""
|
||||
#~ msgid "Native MS Excel format"
|
||||
#~ msgstr "Изворни MS Excel податоци"
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "избери се"
|
||||
|
||||
|
||||
26
po/ml.po
26
po/ml.po
@ -4015,7 +4015,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -5964,7 +5964,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6215,7 +6215,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -7853,7 +7853,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -8934,21 +8934,21 @@ msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -8957,7 +8957,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9349,7 +9349,7 @@ msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -9378,7 +9378,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10308,7 +10308,7 @@ msgid "Show only alert values"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10421,7 +10421,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
52
po/mn.po
52
po/mn.po
@ -4413,7 +4413,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6466,7 +6466,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6767,7 +6767,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Оруулсан файлын тогтнол"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8571,13 +8571,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Only shows part of a string. First option is an offset to define where the "
|
||||
"output of your text starts (Default 0). Second option is an offset how much "
|
||||
"text is returned. If empty, returns all the remaining text. The third option "
|
||||
"defines which chars will be appended to the output when a substring is "
|
||||
"returned (Default: ...)."
|
||||
"returned (Default: …)."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9770,24 +9770,24 @@ msgid "Revoke"
|
||||
msgstr "Хүчингүй"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... хуучныг үлдээх."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… хуучныг үлдээх."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... хэрэглэгчийн хүснэгтүүдээс устгах."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… хэрэглэгчийн хүснэгтүүдээс устгах."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин "
|
||||
"… хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин "
|
||||
"дууд."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9795,8 +9795,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10214,17 +10214,17 @@ msgstr "Сонгогдсон хэрэглэгч устгагдлаа."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "ld type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: ,'b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: ,'b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single te (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Хэрэв талбарын төрөл нь \"enum\" ба \"set\", бол оруулах өгөгдлийн тогтнол "
|
||||
"нь: 'a','b','c'...<br />Хэрэв буруу ташуу зураас (\"\\\"\") эсвэл дан хашилт "
|
||||
"нь: 'a','b','c'…<br />Хэрэв буруу ташуу зураас (\"\\\"\") эсвэл дан хашилт "
|
||||
"(\"'\") тавих шаардлагатай бол буруу ташуу зураасыг давхар хэрэглэ. (Ж: '\\"
|
||||
"\\xyz' эсвэл 'a\\'b')."
|
||||
|
||||
@ -10258,11 +10258,11 @@ msgstr "Өөрчлөлийн сонголтууд"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Өөрчлөлийн сонголтыг оруулах утгын тогтнол нь: 'a', 100, b,'c'...<br />Хэрэв "
|
||||
"Өөрчлөлийн сонголтыг оруулах утгын тогтнол нь: 'a', 100, b,'c'…<br />Хэрэв "
|
||||
"та буруу ташуу зургаас эсвэл дан хашилт тавихыг хүсвэл буруу ташуу зураасыг "
|
||||
"өмнө нь тавина уу. (Ж: '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -11271,7 +11271,7 @@ msgid "Show only alert values"
|
||||
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11414,10 +11414,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь "
|
||||
"голчлон ORDER BY ... DESC-д хэрэглэгддэг."
|
||||
"голчлон ORDER BY … DESC-д хэрэглэгддэг."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14195,7 +14195,7 @@ msgstr "ХИ. давхацсан холболтууд"
|
||||
#~ "those values, precede it with a backslash (for example '\\\\xyz' or 'a"
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Өөрчлөлийн сонголтыг оруулах утгын тогтнол нь: 'a', 100, b,'c'...<br /"
|
||||
#~ "Өөрчлөлийн сонголтыг оруулах утгын тогтнол нь: 'a', 100, b,'c'…<br /"
|
||||
#~ ">Хэрэв та буруу ташуу зургаас эсвэл дан хашилт тавихыг хүсвэл буруу ташуу "
|
||||
#~ "зураасыг өмнө нь тавина уу. (Ж: '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -14204,7 +14204,7 @@ msgstr "ХИ. давхацсан холболтууд"
|
||||
#~ "(\"\\\") or a single quote (\"'\") amongst those values, precede it with "
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Өөрчлөлийн сонголтыг оруулах утгын тогтнол нь: 'a', 100, b,'c'...<br /"
|
||||
#~ "Өөрчлөлийн сонголтыг оруулах утгын тогтнол нь: 'a', 100, b,'c'…<br /"
|
||||
#~ ">Хэрэв та буруу ташуу зургаас эсвэл дан хашилт тавихыг хүсвэл буруу ташуу "
|
||||
#~ "зураасыг өмнө нь тавина уу. (Ж: '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -14418,7 +14418,7 @@ msgstr "ХИ. давхацсан холболтууд"
|
||||
#~ msgid "Native MS Excel format"
|
||||
#~ msgstr "Өгөгдөл MS Excel-ээс"
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "Бүгдийг сонгох"
|
||||
|
||||
|
||||
40
po/ms.po
40
po/ms.po
@ -4337,7 +4337,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6372,7 +6372,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6658,7 +6658,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8370,7 +8370,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9521,21 +9521,21 @@ msgid "Revoke"
|
||||
msgstr "TarikBalik"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -9544,7 +9544,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9960,17 +9960,17 @@ msgstr "angkalan data %s telah digugurkan."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Jika jenis medan ialah \"enum\" atau \"set\", sila masukkan nilai "
|
||||
"menggunakan format: 'a','b','c'...<br />Jika Anda ingin menggunakan "
|
||||
"menggunakan format: 'a','b','c'…<br />Jika Anda ingin menggunakan "
|
||||
"backslash (\"\\\") atau single quote (\"'\") didalam nilai tersebut, "
|
||||
"backslashes kan ia (cth '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -10001,12 +10001,12 @@ msgstr ""
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Jika jenis medan ialah \"enum\" atau \"set\", sila masukkan nilai "
|
||||
"menggunakan format: 'a','b','c'...<br />Jika Anda ingin menggunakan "
|
||||
"menggunakan format: 'a','b','c'…<br />Jika Anda ingin menggunakan "
|
||||
"backslash (\"\\\") atau single quote (\"'\") didalam nilai tersebut, "
|
||||
"backslashes kan ia (cth '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -11003,7 +11003,7 @@ msgid "Show only alert values"
|
||||
msgstr "Papar jadual"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11119,7 +11119,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -12068,7 +12068,7 @@ msgstr "Kata Pengenalan"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Nama kekunci utama mestilah... PRIMARY!"
|
||||
msgstr "Nama kekunci utama mestilah… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
@ -13742,7 +13742,7 @@ msgstr ""
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Jika jenis medan ialah \"enum\" atau \"set\", sila masukkan nilai "
|
||||
#~ "menggunakan format: 'a','b','c'...<br />Jika Anda ingin menggunakan "
|
||||
#~ "menggunakan format: 'a','b','c'…<br />Jika Anda ingin menggunakan "
|
||||
#~ "backslash (\"\\\") atau single quote (\"'\") didalam nilai tersebut, "
|
||||
#~ "backslashes kan ia (cth '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -13752,7 +13752,7 @@ msgstr ""
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Jika jenis medan ialah \"enum\" atau \"set\", sila masukkan nilai "
|
||||
#~ "menggunakan format: 'a','b','c'...<br />Jika Anda ingin menggunakan "
|
||||
#~ "menggunakan format: 'a','b','c'…<br />Jika Anda ingin menggunakan "
|
||||
#~ "backslash (\"\\\") atau single quote (\"'\") didalam nilai tersebut, "
|
||||
#~ "backslashes kan ia (cth '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -13919,7 +13919,7 @@ msgstr ""
|
||||
#~ msgid "Process list"
|
||||
#~ msgstr "Senarai Proses"
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "Sila pilih pangkalan data"
|
||||
|
||||
|
||||
54
po/nb.po
54
po/nb.po
@ -4188,10 +4188,10 @@ msgstr "Konfigurasjonsfil"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Om en advarsel ("Er du helt sikker...") skal vises når du er i "
|
||||
"Om en advarsel ("Er du helt sikker…") skal vises når du er i "
|
||||
"ferd med å miste data"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6356,8 +6356,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Detaljer..."
|
||||
msgid "Details…"
|
||||
msgstr "Detaljer…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6626,7 +6626,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Importfilformat"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8450,13 +8450,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Viser bare en delstreng. Første verdien er antall tegn fra starten hvor din "
|
||||
"tekst begynner (Standard: 0). Andre verdien er hvor mange tegn som skal "
|
||||
"returneres. Hvis den er tom så returneres resten av teksten. Den tredje "
|
||||
"verdien definerer hvilke tegn som vil bli lagt til resultatet når en "
|
||||
"delstreng blir returnert (Standard: ...)."
|
||||
"delstreng blir returnert (Standard: …)."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -8740,9 +8740,9 @@ msgstr "Feil i prosesseringsforespørsel"
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "Detaljer..."
|
||||
msgstr "Detaljer…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
#, fuzzy
|
||||
@ -9657,33 +9657,33 @@ msgid "Revoke"
|
||||
msgstr "Tilbakekall"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... behold den gamle."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… behold den gamle."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... slett den gamle fra brukertabellene."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… slett den gamle fra brukertabellene."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... tilbakekall alle aktive privilegier fra den gamle og slett den etterpå."
|
||||
"… tilbakekall alle aktive privilegier fra den gamle og slett den etterpå."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... slett den gamle fra brukertabellene og deretter oppfrisk privilegiene."
|
||||
"… slett den gamle fra brukertabellene og deretter oppfrisk privilegiene."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Endre innloggingsinformasjon / kopiere bruker"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Opprett ny bruker med de samme privilegier og ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Opprett ny bruker med de samme privilegier og …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10102,12 +10102,12 @@ msgstr "De valgte brukerne har blitt slettet."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Hvis kolonnetypen er \"enum\" eller \"set\", skriv inn verdien med dette "
|
||||
"formatet: 'a','b','c'...<br />Hvis du skulle trenge å ha en skråstrek (\"\\"
|
||||
"formatet: 'a','b','c'…<br />Hvis du skulle trenge å ha en skråstrek (\"\\"
|
||||
"\") eller en enkel apostrof (\"'\") blant disse verdiene, skriv en skråstrek "
|
||||
"foran (eks. '\\\\xyz' eller 'a\\'b')."
|
||||
|
||||
@ -10141,11 +10141,11 @@ msgstr "Transformasjonsvalg"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Skriv inn verdiene for transformasjon med dette formatet: 'a', 100, b,'c'..."
|
||||
"Skriv inn verdiene for transformasjon med dette formatet: 'a', 100, b,'c'…"
|
||||
"<br />Hvis du trenger å bruke en skråstrek (\"\\\") eller en enkel apostrof "
|
||||
"(\"'\") blant disse verdiene så sett en skråstrek foran (eks. '\\\\xyz' "
|
||||
"eller 'a\\'b')."
|
||||
@ -11198,7 +11198,7 @@ msgid "Show only alert values"
|
||||
msgstr "Vis åpne tabeller"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11344,10 +11344,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Antall forespørsler for å lese den forrige raden i nøkkelrekkefølge. Denne "
|
||||
"lesemetoden er hovedsakelig brukt for å optimalisere ORDER BY ... DESC."
|
||||
"lesemetoden er hovedsakelig brukt for å optimalisere ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -12485,7 +12485,7 @@ msgstr "Tabellnavn"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Navnet til primærnøkkelen må være... PRIMARY!"
|
||||
msgstr "Navnet til primærnøkkelen må være… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
|
||||
58
po/nl.po
58
po/nl.po
@ -4213,10 +4213,10 @@ msgstr "Configuratiebestand"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Of er een waarschuwing("Weet u zeker...") moet worden getoond op "
|
||||
"Of er een waarschuwing("Weet u zeker…") moet worden getoond op "
|
||||
"het moment dat u gegevens gaat verwijderen"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6350,8 +6350,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Gelieve de rechten op de folder met de databank na te kijken."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Details..."
|
||||
msgid "Details…"
|
||||
msgstr "Details…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6385,7 +6385,7 @@ msgstr "Type opnieuw"
|
||||
msgid "Password Hashing"
|
||||
msgstr "Wachtwoord-hashing"
|
||||
|
||||
# Kan ook vertaald worden als "werkt met ..."
|
||||
# Kan ook vertaald worden als "werkt met …"
|
||||
#: libraries/display_change_password.lib.php:85
|
||||
msgid "MySQL 4.0 compatible"
|
||||
msgstr "Compatibel met MySQL 4.0"
|
||||
@ -6616,8 +6616,8 @@ msgid "%s of %s"
|
||||
msgstr "%s van %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Uw geïmporteerde bestand wordt ingeladen..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Uw geïmporteerde bestand wordt ingeladen…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8414,14 +8414,14 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Toont alleen een stuk van een string. De eerst optie is een offset om te "
|
||||
"bepalen waar de output van uw tekst start (Standaard 0). De tweede optie is "
|
||||
"een offset van de hoeveelheid tekst die terug wordt gegeven (Standaard: tot "
|
||||
"het einde van de string). De derde optie definieert welke karakters worden "
|
||||
"toegevoegd aan de output wanneer een substring wordt teruggegeven "
|
||||
"(Standaard: \"...\")."
|
||||
"(Standaard: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9555,25 +9555,25 @@ msgid "Revoke"
|
||||
msgstr "Ongedaan maken"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... de oude behouden."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… de oude behouden."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... de oude verwijderen van de gebruikerstabellen."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… de oude verwijderen van de gebruikerstabellen."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... alle actieve rechten van de oude intrekken en deze daarna verwijderen."
|
||||
"… alle actieve rechten van de oude intrekken en deze daarna verwijderen."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... de oude verwijderen van de gebruikerstabellen en de rechten nadien "
|
||||
"… de oude verwijderen van de gebruikerstabellen en de rechten nadien "
|
||||
"vernieuwen."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9581,8 +9581,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Aanmeldingsinformatie wijzigen / Gebruiker kopiëren"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Een nieuwe gebruiker aanmaken met dezelfde rechten en ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Een nieuwe gebruiker aanmaken met dezelfde rechten en …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9990,12 +9990,12 @@ msgstr "De geselecteerde kolommen zijn met succes verplaatst."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Als het veldtype \"enum\" of \"set\" is, voer dan de waardes in volgens dit "
|
||||
"formaat: 'a','b','c'...<br />Als u een backslash moet plaatsen (\"\\\") of "
|
||||
"formaat: 'a','b','c'…<br />Als u een backslash moet plaatsen (\"\\\") of "
|
||||
"een enkel aanhalingsteken (\"'\") bij deze waardes, plaats er dan een "
|
||||
"backslash voor (voorbeeld '\\\\xyz' of 'a\\'b')."
|
||||
|
||||
@ -10027,12 +10027,12 @@ msgstr "Transformatieopties"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Voeg de waardes voor transformatieoptie in het volgende formaat in: 'a', "
|
||||
"100, b,'c'...<br />Wanneer u een backslash (\"\\\") of een enkele quote "
|
||||
"100, b,'c'…<br />Wanneer u een backslash (\"\\\") of een enkele quote "
|
||||
"(\"'\") moet invoegen in deze waardes, plaats er dan een backslash voor "
|
||||
"(bijvoorbeeld '\\\\xyz' of 'a\\'b')."
|
||||
|
||||
@ -11051,8 +11051,8 @@ msgid "Show only alert values"
|
||||
msgstr "Enkel belangrijke waarden tonen"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filteren op categorie..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filteren op categorie…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11194,10 +11194,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Het aantal leesopdrachten voor de voorgaande rij in de sleutelvolgorde. Dit "
|
||||
"wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC."
|
||||
"wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14660,5 +14660,5 @@ msgstr "concurrent_insert is ingesteld op 0"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Achtergrondkleur"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Kies..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Kies…"
|
||||
|
||||
26
po/pa.po
26
po/pa.po
@ -4011,7 +4011,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -5954,7 +5954,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6205,7 +6205,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -7842,7 +7842,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -8923,21 +8923,21 @@ msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -8946,7 +8946,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9332,7 +9332,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -9361,7 +9361,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10290,7 +10290,7 @@ msgid "Show only alert values"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10403,7 +10403,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
46
po/pl.po
46
po/pl.po
@ -1373,7 +1373,7 @@ msgstr "Analizowanie logów"
|
||||
|
||||
#: js/messages.php:160
|
||||
msgid "Analysing & loading logs. This may take a while."
|
||||
msgstr "Analiza i wczytywanie dzienników. To może trochę potrwać ..."
|
||||
msgstr "Analiza i wczytywanie dzienników. To może trochę potrwać …"
|
||||
|
||||
#: js/messages.php:161
|
||||
msgid "Cancel request"
|
||||
@ -4243,7 +4243,7 @@ msgstr "Plik konfiguracyjny"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Czy w wypadku ryzyka utraty danych ma być pokazywane ostrzeżenie ("Czy "
|
||||
@ -6460,8 +6460,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Proszę sprawdzić uprawnienia katalogu zawierającej bazę danych."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Szczegóły..."
|
||||
msgid "Details…"
|
||||
msgstr "Szczegóły…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6722,8 +6722,8 @@ msgid "%s of %s"
|
||||
msgstr "%s z %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Importowanie pliku importu..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Importowanie pliku importu…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8534,7 +8534,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Pokazuje jedynie część napisu. Pierwsza opcja to offset, od którego ma "
|
||||
"zacząć się wyświetlanie tekstu (domyślnie 0). Druga opcja to ilość "
|
||||
@ -9663,32 +9663,32 @@ msgid "Revoke"
|
||||
msgstr "Cofnij"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... pozostaw starego."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… pozostaw starego."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... usunąć starą z tabel użytkowników."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… usunąć starą z tabel użytkowników."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... unieważnij wszystkie aktywne uprawnienia ze starej i usuń je później."
|
||||
"… unieważnij wszystkie aktywne uprawnienia ze starej i usuń je później."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr "... usuń starą z tabel użytkownika i przeładuj uprawnienia później."
|
||||
msgstr "… usuń starą z tabel użytkownika i przeładuj uprawnienia później."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Zmień dane użytkownika / Kopiuj użytkownika"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10095,12 +10095,12 @@ msgstr "Kolumny przeniesiono pomyślnie."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Jeśli kolumna jest typu \"enum\" lub \"set\", proszę wpisać wartości w tym "
|
||||
"formacie: 'a', 'b', 'c'...<br />Jeśli kiedykolwiek trzeba umieścić ukośnik "
|
||||
"formacie: 'a', 'b', 'c'…<br />Jeśli kiedykolwiek trzeba umieścić ukośnik "
|
||||
"(\"\\\") lub pojedynczy cudzysłów (\"\") wśród tych wartości, należy "
|
||||
"poprzedzić go odwrotnym ukośnikiem (np. '\\\\xyz' lub '\\'b')."
|
||||
|
||||
@ -10133,7 +10133,7 @@ msgstr "Opcje transformacji"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -11143,8 +11143,8 @@ msgid "Show only alert values"
|
||||
msgstr "Pokaż tylko wartości alarmowe"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "&Filtruj wg kategorii..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "&Filtruj wg kategorii…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11284,7 +11284,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Liczba żądań odczytu poprzedniego wiersza w porządku indeksowym. Metoda "
|
||||
"używana głównie do optymalizacji ORDER BY … DESC."
|
||||
|
||||
48
po/pt.po
48
po/pt.po
@ -4185,10 +4185,10 @@ msgstr "Ficheiro de configuração"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Exibir aviso ("Tem a certeza...") quando estiver prestes a perder "
|
||||
"Exibir aviso ("Tem a certeza…") quando estiver prestes a perder "
|
||||
"dados"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6342,7 +6342,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6634,7 +6634,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8368,7 +8368,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9263,7 +9263,7 @@ msgstr ""
|
||||
#: libraries/server_privileges.lib.php:203
|
||||
#: libraries/server_privileges.lib.php:830 server_privileges.php:73
|
||||
msgid "Allows importing data from and exporting data into files."
|
||||
msgstr "Permite importar dados de... e exportar dados para ficheiros."
|
||||
msgstr "Permite importar dados de… e exportar dados para ficheiros."
|
||||
|
||||
#: libraries/server_privileges.lib.php:207
|
||||
#: libraries/server_privileges.lib.php:654
|
||||
@ -9534,25 +9534,25 @@ msgid "Revoke"
|
||||
msgstr "Anula"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... manter o antigo."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… manter o antigo."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... apagar o antigo das tabelas do utilizador."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… apagar o antigo das tabelas do utilizador."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... revogar todos os privilégios activos do antigo e a seguir apagá-lo."
|
||||
"… revogar todos os privilégios activos do antigo e a seguir apagá-lo."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... apagar o antigo das tabelas do utilizador e depois recarregue os "
|
||||
"… apagar o antigo das tabelas do utilizador e depois recarregue os "
|
||||
"privilégios."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9560,8 +9560,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Mudar a informação de login / Copiar Utilizador"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Criar um novo utilizador com os mesmo privilégios e ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Criar um novo utilizador com os mesmo privilégios e …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9984,17 +9984,17 @@ msgstr "Os utilizadores selecionado foram apagados com sucesso."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "ld type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: ,'b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: ,'b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single te (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Se o tipo de campo é \"enum\" ou \"set\", por favor introduza os valores no "
|
||||
"seguinte formato: 'a','b','c'...<br />Se precisar de colocar uma barra "
|
||||
"seguinte formato: 'a','b','c'…<br />Se precisar de colocar uma barra "
|
||||
"invertida (\"\\\") ou um apóstrofe (\"'\") entre esses valores, coloque uma "
|
||||
"barra invertida antes (por exemplo '\\\\xyz' ou 'a\\'b')."
|
||||
|
||||
@ -10026,12 +10026,12 @@ msgstr "Opções de tranformação"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Introduza os valores para as opções de transformação a usando este formato: "
|
||||
"'a', 100, b,'c'...<br />Se por acaso precisar de inserir um backslash (\"\\"
|
||||
"'a', 100, b,'c'…<br />Se por acaso precisar de inserir um backslash (\"\\"
|
||||
"\") ou uma pelica (\"'\") no meio desses valores, faça-o backslashes (por "
|
||||
"exemplo '\\\\xyz' ou 'a\\'b')."
|
||||
|
||||
@ -11038,7 +11038,7 @@ msgid "Show only alert values"
|
||||
msgstr "Mostra tabelas"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11155,7 +11155,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -12108,7 +12108,7 @@ msgstr "Nome do Utilizador"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "O nome da chave primária tem de ser... PRIMARY!"
|
||||
msgstr "O nome da chave primária tem de ser… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
|
||||
54
po/pt_BR.po
54
po/pt_BR.po
@ -4179,10 +4179,10 @@ msgstr "Arquivo de configuração"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Exibir aviso ("Você tem certeza...") quando estiver prestes a "
|
||||
"Exibir aviso ("Você tem certeza…") quando estiver prestes a "
|
||||
"perder dados"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6353,8 +6353,8 @@ msgstr ""
|
||||
"Por favor verifique os privilégios do diretório que contém o banco de dados."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Detalhes..."
|
||||
msgid "Details…"
|
||||
msgstr "Detalhes…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6615,8 +6615,8 @@ msgid "%s of %s"
|
||||
msgstr "%s de %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Fazendo upload do arquivo importado..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Fazendo upload do arquivo importado…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8394,13 +8394,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Mostrar apenas parte da string. Primeira opção é um offset para definir onde "
|
||||
"a saída do seu texto deve iniciar (Padrão: 0). Segunda opção é o quanto do "
|
||||
"texto deverá ser retornado. Se estiver em branco, retorna todo o restante do "
|
||||
"texto. Terceira opção define quais caracteres serão acrescentados na "
|
||||
"substring retornada (Padrão: ...)."
|
||||
"substring retornada (Padrão: …)."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9518,32 +9518,32 @@ msgid "Revoke"
|
||||
msgstr "Revogar"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... manter o antigo."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… manter o antigo."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... apagar o antigo da tabela de usuários."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… apagar o antigo da tabela de usuários."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... revogar todos privilégios do usuário antigo e depois apagar ele."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… revogar todos privilégios do usuário antigo e depois apagar ele."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... apagar o antigo da tabela de usuários e depois recarregar os privilégios."
|
||||
"… apagar o antigo da tabela de usuários e depois recarregar os privilégios."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Mudar informações de login / Copiar usuário"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Criar um novo usuário com os mesmos privilégios e ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Criar um novo usuário com os mesmos privilégios e …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9948,12 +9948,12 @@ msgstr "As colunas foram movidas com sucesso."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Se um tipo de campo é \"enum\" ou \"set\", por favor entre com valores "
|
||||
"usando este formato: 'a','b','c'...<br />Se você mesmo precisar colocar uma "
|
||||
"usando este formato: 'a','b','c'…<br />Se você mesmo precisar colocar uma "
|
||||
"barra contrária (\"\\\") ou aspas simples (\"'\") entre esses valores, "
|
||||
"coloque uma barra contrária antes (por exemplo '\\\\xyz' ou 'a\\'b')."
|
||||
|
||||
@ -9985,12 +9985,12 @@ msgstr "Opções de transformação"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Digite os valores para as opções de transformação usando este formato: 'a', "
|
||||
"100, b,'c'...<br />Se por acaso precisar inserir uma contra-barra (\"\\\") "
|
||||
"100, b,'c'…<br />Se por acaso precisar inserir uma contra-barra (\"\\\") "
|
||||
"ou aspas (\"'\") no meio desses valores, faça-o usando outra contra-barra "
|
||||
"(por exemplo '\\\\xyz' ou 'a\\'b')."
|
||||
|
||||
@ -11000,8 +11000,8 @@ msgid "Show only alert values"
|
||||
msgstr "Exibir somente valores de alerta"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filtrar por categoria..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtrar por categoria…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11141,10 +11141,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"O número de requisições para ler a linha precedente na ordem da chave. Este "
|
||||
"método de leitura é usado principalmente para otimizar ORDER BY ... DESC."
|
||||
"método de leitura é usado principalmente para otimizar ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -12215,7 +12215,7 @@ msgstr "Nome do arquivo"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "O nome da chave primária deve ser... \"PRIMARY\"!"
|
||||
msgstr "O nome da chave primária deve ser… \"PRIMARY\"!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
|
||||
64
po/ro.po
64
po/ro.po
@ -907,7 +907,7 @@ msgid ""
|
||||
"extended features have been deactivated. To find out why click %shere%s."
|
||||
msgstr ""
|
||||
"Opțiunile adiționale pentru folosirea tabelelor intercalate au fost "
|
||||
"dezactivate. Pentru a afla de ce ... %shere%s."
|
||||
"dezactivate. Pentru a afla de ce … %shere%s."
|
||||
|
||||
#: index.php:496
|
||||
#, php-format
|
||||
@ -1632,9 +1632,9 @@ msgstr "Recomandare"
|
||||
|
||||
#: js/messages.php:211
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Rule details"
|
||||
msgstr "Detalii..."
|
||||
msgstr "Detalii…"
|
||||
|
||||
#: js/messages.php:212
|
||||
msgid "Justification"
|
||||
@ -4362,10 +4362,10 @@ msgstr "Fișier de configurare"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Dacă un avertisment (" Sunteți sigur...") ar trebui afișat când "
|
||||
"Dacă un avertisment (" Sunteți sigur…") ar trebui afișat când "
|
||||
"sunteți pe cale sa pierdeți datele"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6668,8 +6668,8 @@ msgstr ""
|
||||
"de date."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Detalii..."
|
||||
msgid "Details…"
|
||||
msgstr "Detalii…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6959,7 +6959,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Formatul fișierului importat"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8815,13 +8815,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Afișează doar o parte a firului de executie. Prima optiune este un offset "
|
||||
"pentru definirea punctului de început a outputului de text (Default 0). A "
|
||||
"doua optiune este un offset de text returnat. Daca este gol, returneaza "
|
||||
"textul ramas. A treia optiune defineste caracterele care vor fi atasate la "
|
||||
"output la returnarea unui substring (Default: ...) ."
|
||||
"output la returnarea unui substring (Default: …) ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -10020,34 +10020,34 @@ msgid "Revoke"
|
||||
msgstr "Revocare"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... menține cel vechi."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… menține cel vechi."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... șterge cel vechi din tabelul de utilizatori."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… șterge cel vechi din tabelul de utilizatori."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"...revocă toate privilegiile active de la utilizatorul vechi și șterge-l "
|
||||
"…revocă toate privilegiile active de la utilizatorul vechi și șterge-l "
|
||||
"după aceea."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile."
|
||||
"… șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Schimbă informațiile de autentificare/Copiază utilizator"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Creează un utilizator nou cu aceleași privilegii și..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Creează un utilizator nou cu aceleași privilegii și…"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10472,17 +10472,17 @@ msgstr "Utilizatorii selectați au fost eliminați."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Dacă cîmpul este „enum” sau „set”, vă rugăm să adăugați valori folosind "
|
||||
"formatul: 'a','b','c'...<br />Daca aveti nevoie sa puneti bara intoarsa "
|
||||
"formatul: 'a','b','c'…<br />Daca aveti nevoie sa puneti bara intoarsa "
|
||||
"(backslash) (\"\\\") sau semnul (\"'\") la aceste valori, folosiți exemplul "
|
||||
"( '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -10516,12 +10516,12 @@ msgstr "Opțiuni de transformare"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Introduceți valorile pentru opțiunile de transformare utilizînd acest "
|
||||
"format: 'a', 100, b,'c'...<br />Dacă trebuie să folosiți backslash (\"\\\") "
|
||||
"format: 'a', 100, b,'c'…<br />Dacă trebuie să folosiți backslash (\"\\\") "
|
||||
"sau apostrof (\"'\") in aceste valori, introduceți backslash-uri (ex. '\\"
|
||||
"\\xyz' sau 'a\\'b')."
|
||||
|
||||
@ -11544,7 +11544,7 @@ msgid "Show only alert values"
|
||||
msgstr "Afișează tabele deschise"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11664,7 +11664,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -12629,7 +12629,7 @@ msgstr "Denumire tabel"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Numele cheii primare trebuie să fie... PRIMARY!"
|
||||
msgstr "Numele cheii primare trebuie să fie… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
@ -14706,7 +14706,7 @@ msgstr "concurrent_insert este setat la 0"
|
||||
#~ "phpMyAdmin nu poate citi corect fisierul de configuratie! <br />Acesta "
|
||||
#~ "se poate intampla in cazul in care PHP nu poate gasi fisierul sau nu o "
|
||||
#~ "poate parsa corect. <br />Vezi configuratia fisierului apasand pe linkul "
|
||||
#~ "de mai jos și citeste cu atentie erorile aparute ... In cele mai multe "
|
||||
#~ "de mai jos și citeste cu atentie erorile aparute … In cele mai multe "
|
||||
#~ "cazuri lipsesc apostroful sau ghilimele.<br />Daca primesti o pagina "
|
||||
#~ "goala, totul pare sa fie bine."
|
||||
|
||||
@ -14787,7 +14787,7 @@ msgstr "concurrent_insert este setat la 0"
|
||||
#~ "deactivated. To find out why click %shere%s."
|
||||
#~ msgstr ""
|
||||
#~ "Opțiunile adiționale pentru folosirea tabelelor intercalate au fost "
|
||||
#~ "dezactivate. Pentru a afla de ce ... %shere%s."
|
||||
#~ "dezactivate. Pentru a afla de ce … %shere%s."
|
||||
|
||||
#~ msgid "Ignore duplicate rows"
|
||||
#~ msgstr "Ignoră rînduri duplicate"
|
||||
@ -14805,7 +14805,7 @@ msgstr "concurrent_insert este setat la 0"
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Introduceți valorile pentru opțiunile de transformare utilizînd acest "
|
||||
#~ "format: 'a', 100, b,'c'...<br />Dacă trebuie să folosiți backslash (\"\\"
|
||||
#~ "format: 'a', 100, b,'c'…<br />Dacă trebuie să folosiți backslash (\"\\"
|
||||
#~ "\") sau apostrof (\"'\") in aceste valori, introduceți backslash-uri "
|
||||
#~ "(ex. '\\\\xyz' sau 'a\\'b')."
|
||||
|
||||
@ -14815,7 +14815,7 @@ msgstr "concurrent_insert este setat la 0"
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Introduceți valorile pentru opțiunile de transformare utilizînd acest "
|
||||
#~ "format: 'a', 100, b,'c'...<br />Dacă trebuie să folosiți backslash (\"\\"
|
||||
#~ "format: 'a', 100, b,'c'…<br />Dacă trebuie să folosiți backslash (\"\\"
|
||||
#~ "\") sau apostrof (\"'\") in aceste valori, introduceți backslash-uri "
|
||||
#~ "(ex. '\\\\xyz' sau 'a\\'b')."
|
||||
|
||||
|
||||
46
po/ru.po
46
po/ru.po
@ -4233,7 +4233,7 @@ msgstr "Конфигурационный файл"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr "Выводить предупреждение при попытке полного удаления данных"
|
||||
|
||||
@ -6373,8 +6373,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Пожалуйста, проверьте привилегии каталога содержащего базу данных."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Детали..."
|
||||
msgid "Details…"
|
||||
msgstr "Детали…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6635,8 +6635,8 @@ msgid "%s of %s"
|
||||
msgstr "%s из %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Загрузка файла импорта..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Загрузка файла импорта…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8412,13 +8412,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Показывает только часть строки. Первый параметр - сдвиг, определяющий начало "
|
||||
"выводимого текста (по умолчанию: 0). Второй параметр - количество "
|
||||
"возвращаемых символов (по умолчанию: до конца строки). Третий параметр "
|
||||
"определяет строку добавляемую вначале и/или в конце существующего отрывка "
|
||||
"(по умолчанию: \"...\")."
|
||||
"(по умолчанию: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9543,21 +9543,21 @@ msgid "Revoke"
|
||||
msgstr "Отменить"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr "и сохранить старого."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "и удалить старого из таблиц пользователей."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ", отменить все активные привилегии старого и затем удалить его."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ", удалить старого из таблиц пользователей и перезагрузить привилегии."
|
||||
|
||||
@ -9566,8 +9566,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Изменить/Копировать учетную запись"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Создать нового пользователя с такими же привилегиями..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Создать нового пользователя с такими же привилегиями…"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9972,12 +9972,12 @@ msgstr "Поля были успешно перемещены."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"При создании полей типа \"enum\" или \"set\", данные значения должны иметь "
|
||||
"формат: 'a','b','c'...<br />Символы обратной косой черты (\"\\\") и "
|
||||
"формат: 'a','b','c'…<br />Символы обратной косой черты (\"\\\") и "
|
||||
"одинарной кавычки (\"'\") необходимо экранировать (предварять) символом "
|
||||
"обратной косой черты, например: '\\\\xyz' или 'a\\'b'."
|
||||
|
||||
@ -10009,11 +10009,11 @@ msgstr "Параметры преобразований"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Значения параметров преобразований должны иметь формат: 'a', 100, b, 'c'..."
|
||||
"Значения параметров преобразований должны иметь формат: 'a', 100, b, 'c'…"
|
||||
"<br />Символы обратной косой черты (\"\\\") и одинарной кавычки (\"'\") "
|
||||
"необходимо экранировать (предварять) символом обратной косой черты, "
|
||||
"например: '\\\\xyz' или 'a\\'b'."
|
||||
@ -11021,8 +11021,8 @@ msgid "Show only alert values"
|
||||
msgstr "Выводить только предупреждающие значения"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Фильтр по категории..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Фильтр по категории…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11162,10 +11162,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Количество запросов на чтение предыдущей строки при ниспадающей сортировке "
|
||||
"индекса. Обычно используется при оптимизации: ORDER BY ... DESC."
|
||||
"индекса. Обычно используется при оптимизации: ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14662,5 +14662,5 @@ msgstr "concurrent_insert установлен в 0"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Цвет фона"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Выбрать..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Выбрать…"
|
||||
|
||||
52
po/si.po
52
po/si.po
@ -4138,10 +4138,10 @@ msgstr "වින්යාස ගොනුව"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"දත්ත අහිමිවීමකට පෙර අනතුරු ඇඟවීමක් ("ඔබට ඇත්තටම විශ්වාසද..." ආදී ලෙස) කල යුතුද "
|
||||
"දත්ත අහිමිවීමකට පෙර අනතුරු ඇඟවීමක් ("ඔබට ඇත්තටම විශ්වාසද…" ආදී ලෙස) කල යුතුද "
|
||||
"යන වග"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6216,8 +6216,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්රසාද පරීක්ෂා කරන්න."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "තොරතුරු..."
|
||||
msgid "Details…"
|
||||
msgstr "තොරතුරු…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6477,8 +6477,8 @@ msgid "%s of %s"
|
||||
msgstr "%s/%s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "ඔබගේ ආනයන ගොනුව උඩුගත කෙරෙමින්..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "ඔබගේ ආනයන ගොනුව උඩුගත කෙරෙමින්…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8209,7 +8209,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9303,31 +9303,31 @@ msgid "Revoke"
|
||||
msgstr "අහෝසි කරන්න"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... පැරණි එක තබා ගන්න."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… පැරණි එක තබා ගන්න."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... පැරැන්නෙන් සියලුම සක්රීය වරප්රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… පැරැන්නෙන් සියලුම සක්රීය වරප්රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr "... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්රසාද නැවත අලුත් කරන්න."
|
||||
msgstr "… භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්රසාද නැවත අලුත් කරන්න."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "සහ එකම වරප්රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "සහ එකම වරප්රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9716,17 +9716,17 @@ msgstr "තීර සාර්ථකව ගෙන යන ලදි."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "ld type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: ,'b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: ,'b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single te (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"If field type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -9754,7 +9754,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10738,8 +10738,8 @@ msgid "Show only alert values"
|
||||
msgstr "අනතුරුදායක අගයන් පමණක් පෙන්වන්න"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "වර්ගය මත පෙරන්න..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "වර්ගය මත පෙරන්න…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -10851,7 +10851,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -13824,5 +13824,5 @@ msgstr "concurrent_insert ශුන්යයට සිටුවා ඇත"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "පසුබිම් වර්ණය"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "තෝරන්න..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "තෝරන්න…"
|
||||
|
||||
52
po/sk.po
52
po/sk.po
@ -4141,10 +4141,10 @@ msgstr "Konfiguračný súbor"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Či sa má zobrazovať varovanie ("Ste si naozaj istí...") pokiaľ "
|
||||
"Či sa má zobrazovať varovanie ("Ste si naozaj istí…") pokiaľ "
|
||||
"hrozí strata dát"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6325,8 +6325,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Podrobnosti..."
|
||||
msgid "Details…"
|
||||
msgstr "Podrobnosti…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6590,7 +6590,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Formát importovaného súboru"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8318,12 +8318,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Zobrazí iba časť reťazca. Prvý parameter je posun od začiatku (predvolený je "
|
||||
"0) a druhý určuje dĺžku textu, ktorá sa ma zobraziť, ak nie je zadaný bude "
|
||||
"zobrazený zvyšok textu. Tretí parameter určuje znaky, ktoré budú pridané na "
|
||||
"koniec skráteného textu (predvolené je \"...\")."
|
||||
"koniec skráteného textu (predvolené je \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9434,25 +9434,25 @@ msgid "Revoke"
|
||||
msgstr "Zrušiť"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... zachovať pôvodného používateľa."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… zachovať pôvodného používateľa."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... zmazať pôvodného používateľa z tabuliek používateľov."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… zmazať pôvodného používateľa z tabuliek používateľov."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať."
|
||||
"… odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... zmazať pôvodného používateľa z tabuliek používateľov a potom "
|
||||
"… zmazať pôvodného používateľa z tabuliek používateľov a potom "
|
||||
"znovunačítať oprávnenia."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9460,8 +9460,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Vytvoriť nového používateľa s rovnakými právami a ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Vytvoriť nového používateľa s rovnakými právami a …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9874,12 +9874,12 @@ msgstr "Vybraní používatelia bol úspešne odstránený."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ak je pole typu \"enum\" alebo \"set\", prosím zadávajte hodnoty v tvare: "
|
||||
"'a','b','c'...<br />Ak potrebujete zadať spätné lomítko (\"\\\") alebo "
|
||||
"'a','b','c'…<br />Ak potrebujete zadať spätné lomítko (\"\\\") alebo "
|
||||
"apostrof (\"'\") pri týchto hodnotách, zadajte ich pomocou uvádzacieho "
|
||||
"spätného lomítka (napr. '\\\\xyz' alebo 'a\\'b')."
|
||||
|
||||
@ -9913,12 +9913,12 @@ msgstr "Parametre transformácie"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Prosím zadajte hodnoty pre parametre transformácie v nasledujúcom tvare: "
|
||||
"'a', 100, b,'c'...<br />Ak potrebujete použiť spätné lomítko (\"\\\") alebo "
|
||||
"'a', 100, b,'c'…<br />Ak potrebujete použiť spätné lomítko (\"\\\") alebo "
|
||||
"jednoduché úvodzovky (\"'\") medzi týmito hodnotami, vložte pred nich spätné "
|
||||
"lomítko (napr. '\\\\xyz' alebo 'a\\'b')."
|
||||
|
||||
@ -10874,7 +10874,7 @@ msgid "Show only alert values"
|
||||
msgstr "Zobraziť iba varovné hodnoty"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11011,10 +11011,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Počet požiadavkov na načítanie predchádzajúceho riadku podľa kľúča. Táto "
|
||||
"čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... "
|
||||
"čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY … "
|
||||
"DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -14036,7 +14036,7 @@ msgstr "concurrent_insert je nastavené na 0"
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Prosím zadajte hodnoty pre parametre transformácie v nasledujúcom tvare: "
|
||||
#~ "'a', 100, b,'c'...<br />Ak potrebujete použiť spätné lomítko (\"\\\") "
|
||||
#~ "'a', 100, b,'c'…<br />Ak potrebujete použiť spätné lomítko (\"\\\") "
|
||||
#~ "alebo jednoduché úvodzovky (\"'\") medzi týmito hodnotami, vložte pred "
|
||||
#~ "nich spätné lomítko (napr. '\\\\xyz' alebo 'a\\'b')."
|
||||
|
||||
@ -14046,7 +14046,7 @@ msgstr "concurrent_insert je nastavené na 0"
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Prosím zadajte hodnoty pre parametre transformácie v nasledujúcom tvare: "
|
||||
#~ "'a', 100, b,'c'...<br />Ak potrebujete použiť spätné lomítko (\"\\\") "
|
||||
#~ "'a', 100, b,'c'…<br />Ak potrebujete použiť spätné lomítko (\"\\\") "
|
||||
#~ "alebo jednoduché úvodzovky (\"'\") medzi týmito hodnotami, vložte pred "
|
||||
#~ "nich spätné lomítko (napr. '\\\\xyz' alebo 'a\\'b')."
|
||||
|
||||
|
||||
56
po/sl.po
56
po/sl.po
@ -4223,10 +4223,10 @@ msgstr "Konfiguracijska datoteka"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Ali se naj prikaže opozorilo ("Ali res želite ..."), ko boste "
|
||||
"Ali se naj prikaže opozorilo ("Ali res želite …"), ko boste "
|
||||
"izgubili podatke"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6331,8 +6331,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Prosimo, preverite pravice mape, v kateri se nahaja zbirka podatkov."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Podrobnosti ..."
|
||||
msgid "Details…"
|
||||
msgstr "Podrobnosti …"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6594,8 +6594,8 @@ msgid "%s of %s"
|
||||
msgstr "%s od %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Nalaganje datoteke za uvoz ..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Nalaganje datoteke za uvoz …"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8367,13 +8367,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Vrne le del niza. Prva možnost je odmik, ki določa, kje se bo začelo "
|
||||
"prikazano besedilo (Privzeto: 0). Druga možnost je odmik, ki pove, koliko "
|
||||
"besedila bo prikazanega. Če ni določen, bo izpisano vse preostalo besedilo. "
|
||||
"Tretja možnost pa določa, kateri znaki bodo pripeti vrnjenemu podnizu "
|
||||
"(Privzeto: \"...\")."
|
||||
"(Privzeto: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9492,24 +9492,24 @@ msgid "Revoke"
|
||||
msgstr "Odvzemi"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... obdrži starega."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… obdrži starega."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... izbriši starega s seznama uporabnikov."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… izbriši starega s seznama uporabnikov."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... prekliči vse aktivne pravice starega uporabnika ter jih izbriši."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… prekliči vse aktivne pravice starega uporabnika ter jih izbriši."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži "
|
||||
"… izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži "
|
||||
"njegove pravice."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9517,8 +9517,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Spremeni prijavne informacije / Kopiraj uporabnika"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Ustvari novega uporabnika z enakimi pravicami in ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Ustvari novega uporabnika z enakimi pravicami in …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9922,12 +9922,12 @@ msgstr "Stolpce sem uspešno premaknil."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Če je stolpec vrste \"enum\" ali \"set\", navedite vrednosti v obliki: "
|
||||
"'a','b','c' ...<br />Če želite med vrednostmi uporabiti poševnico (\"\\\") "
|
||||
"'a','b','c' …<br />Če želite med vrednostmi uporabiti poševnico (\"\\\") "
|
||||
"ali enojni narekovaj (\"'\"), pred tem znakom vnesite poševnico (npr. '\\"
|
||||
"\\xyz' ali 'a\\'b')."
|
||||
|
||||
@ -9959,12 +9959,12 @@ msgstr "Možnosti pretvorbe"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Vrednosti za možnosti pretvorbe vnesite v naslednji obliki: 'a', 100, "
|
||||
"b,'c'...<br />Če želite med vrednosti vnesti poševnico nazaj (\"\\\") ali "
|
||||
"b,'c'…<br />Če želite med vrednosti vnesti poševnico nazaj (\"\\\") ali "
|
||||
"enojni narekovaj (\"'\"), morate pred znak postaviti (še eno) poševnico "
|
||||
"nazaj (npr. '\\\\xyz' ali 'a\\'b')."
|
||||
|
||||
@ -10971,8 +10971,8 @@ msgid "Show only alert values"
|
||||
msgstr "Prikaži samo opozorilne vrednosti"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filtriraj po kategoriji ..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtriraj po kategoriji …"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11113,10 +11113,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Postopek "
|
||||
"branja se uporablja predvsem za optimizacijo ORDER BY ... DESC."
|
||||
"branja se uporablja predvsem za optimizacijo ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14553,5 +14553,5 @@ msgstr "concurrent_insert je nastavljeno na 0"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Barva ozadja"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Izberite ..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Izberite …"
|
||||
|
||||
56
po/sq.po
56
po/sq.po
@ -4145,7 +4145,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6203,7 +6203,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6366,7 +6366,7 @@ msgstr "Ruaje në server tek directory %s"
|
||||
#, fuzzy
|
||||
#| msgid "Save as file"
|
||||
msgid "Save output to a file"
|
||||
msgstr "Ruaje me emër..."
|
||||
msgstr "Ruaje me emër…"
|
||||
|
||||
#: libraries/display_export.lib.php:265
|
||||
#, fuzzy
|
||||
@ -6431,7 +6431,7 @@ msgstr "\"kompresuar me bzip2\""
|
||||
#, fuzzy
|
||||
#| msgid "Save as file"
|
||||
msgid "View output as text"
|
||||
msgstr "Ruaje me emër..."
|
||||
msgstr "Ruaje me emër…"
|
||||
|
||||
#: libraries/display_export.lib.php:413 libraries/display_import.lib.php:312
|
||||
#: libraries/plugins/export/ExportCodegen.class.php:107
|
||||
@ -6492,7 +6492,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8255,13 +8255,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Shfaq vetëm një pjesë të string-ës. Opcioni i parë është offset-i që shërben "
|
||||
"për të përcaktuar ku fillon output i tekstit tuaj (Default 0). Opcioni i "
|
||||
"dytë është një offset që tregon se sa tekst kthehet. Po të jetë bosh, kthen "
|
||||
"të gjithë tekstin e mbetur. Opcioni i tretë përcakton çfarë karakteresh do "
|
||||
"të shtohen në fund të output kur kthehet një nën-string-ë (Default: ...) ."
|
||||
"të shtohen në fund të output kur kthehet një nën-string-ë (Default: …) ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9454,32 +9454,32 @@ msgid "Revoke"
|
||||
msgstr "Hiq"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... mbaj të vjetrin."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… mbaj të vjetrin."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... elemino të vjetrin nga tabela e përdoruesve."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… elemino të vjetrin nga tabela e përdoruesve."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... hiq të gjitha të drejtat nga i vjetri e pastaj eleminoje."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… hiq të gjitha të drejtat nga i vjetri e pastaj eleminoje."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat."
|
||||
"… elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Ndrysho Informacionet e Login / Kopjo përdoruesin"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Krijo një përdorues të ri me të njëjta të drejta dhe ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Krijo një përdorues të ri me të njëjta të drejta dhe …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9903,17 +9903,17 @@ msgstr "Përdoruesit e zgjedhur u hoqën me sukses."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"N.q.s. fusha është \"enum\" apo \"set\", shtoni të dhënat duke përdorur "
|
||||
"formatin: 'a','b','c'...<br />Nëse megjithatë do t'u duhet të vini "
|
||||
"formatin: 'a','b','c'…<br />Nëse megjithatë do t'u duhet të vini "
|
||||
"backslashes (\"\\\") apo single quote (\"'\") para këtyre vlerave, backslash-"
|
||||
"ojini (për shembull '\\\\xyz' o 'a\\'b')."
|
||||
|
||||
@ -9947,12 +9947,12 @@ msgstr "Opcione të transformimeve"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ju lutem shkruani vlerat për opcionet e transformimit duke përdorur këtë "
|
||||
"format: 'a', 100, b,'c'...<br />Nëse keni nevojë të shtoni një backslash "
|
||||
"format: 'a', 100, b,'c'…<br />Nëse keni nevojë të shtoni një backslash "
|
||||
"(\"\\\") apo një apostrofë (\"'\") midis këtyre vlerave, duhet ti backslash-"
|
||||
"oni (për shembull '\\\\xyz' ose 'a\\'b')."
|
||||
|
||||
@ -10961,7 +10961,7 @@ msgid "Show only alert values"
|
||||
msgstr "Shfaq tabelat"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11079,7 +11079,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -12020,7 +12020,7 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Save as file"
|
||||
msgid "Save to file"
|
||||
msgstr "Ruaje me emër..."
|
||||
msgstr "Ruaje me emër…"
|
||||
|
||||
#: tbl_gis_visualization.php:179
|
||||
#, fuzzy
|
||||
@ -12030,7 +12030,7 @@ msgstr "Emri i përdoruesit"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Emri i kyçit primar duhet të jetë... PRIMARY!"
|
||||
msgstr "Emri i kyçit primar duhet të jetë… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
@ -13763,7 +13763,7 @@ msgstr ""
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Ju lutem shkruani vlerat për opcionet e transformimit duke përdorur këtë "
|
||||
#~ "format: 'a', 100, b,'c'...<br />Nëse keni nevojë të shtoni një backslash "
|
||||
#~ "format: 'a', 100, b,'c'…<br />Nëse keni nevojë të shtoni një backslash "
|
||||
#~ "(\"\\\") apo një apostrofë (\"'\") midis këtyre vlerave, duhet ti "
|
||||
#~ "backslash-oni (për shembull '\\\\xyz' ose 'a\\'b')."
|
||||
|
||||
@ -13773,7 +13773,7 @@ msgstr ""
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Ju lutem shkruani vlerat për opcionet e transformimit duke përdorur këtë "
|
||||
#~ "format: 'a', 100, b,'c'...<br />Nëse keni nevojë të shtoni një backslash "
|
||||
#~ "format: 'a', 100, b,'c'…<br />Nëse keni nevojë të shtoni një backslash "
|
||||
#~ "(\"\\\") apo një apostrofë (\"'\") midis këtyre vlerave, duhet ti "
|
||||
#~ "backslash-oni (për shembull '\\\\xyz' ose 'a\\'b')."
|
||||
|
||||
|
||||
48
po/sr.po
48
po/sr.po
@ -4435,7 +4435,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6534,7 +6534,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6838,7 +6838,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Формат датотека за увоз"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8665,12 +8665,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Показује део стринга. Прва опција је број знакова које треба прескочити од "
|
||||
"почетка стринга (подразумевано 0). Друга опција је број враћених знакова "
|
||||
"(подразумевано: до краја стринга). Трећа опција је стринг који се додаје "
|
||||
"када дође до одсецања (подразумевано: ...) ."
|
||||
"када дође до одсецања (подразумевано: …) ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9869,32 +9869,32 @@ msgid "Revoke"
|
||||
msgstr "Забрани"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... сачувај старе."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… сачувај старе."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... обриши старе из табела корисника."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… обриши старе из табела корисника."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... обустави све привилегије старог корисника и затим га обриши."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… обустави све привилегије старог корисника и затим га обриши."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... обриши старог из табеле корисника и затим поново учитај привилегије."
|
||||
"… обриши старог из табеле корисника и затим поново учитај привилегије."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Промени информације о пријави / Копирај корисника"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Направи новог корисника са истим привилегијама и ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Направи новог корисника са истим привилегијама и …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10323,16 +10323,16 @@ msgstr "Изабрани корисници су успешно обрисани
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "ld type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: ,'b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: ,'b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single te (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ако је поље \"enum\" или \"set\", унесите вредности у формату: 'a','b','c'..."
|
||||
"Ако је поље \"enum\" или \"set\", унесите вредности у формату: 'a','b','c'…"
|
||||
"<br />Ако вам треба обрнута коса црта (\"\\\") или апостроф (\"'\") "
|
||||
"користите их у \"избегнутом\" (escaped) облику (на пример '\\\\xyz' или 'a"
|
||||
"\\'b')."
|
||||
@ -10367,12 +10367,12 @@ msgstr "Опције трансформације"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Молимо унесите вредности за опције трансформације користећи овај облик: 'a', "
|
||||
"100, b,'c'...<br />Ако треба да унесете обрнуту косу црту (\"\\\") или "
|
||||
"100, b,'c'…<br />Ако треба да унесете обрнуту косу црту (\"\\\") или "
|
||||
"апостроф (\"'\") у те вредности, ставите обрнуту косу црту испред њих (на "
|
||||
"пример '\\\\xyz' или 'a\\'b')."
|
||||
|
||||
@ -11392,7 +11392,7 @@ msgid "Show only alert values"
|
||||
msgstr "Прикажи отворене табеле"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11535,10 +11535,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Број захтева за читањем претходног реда у поретку кључева. Ова метода читања "
|
||||
"се углавном користи за оптимизацију ORDER BY ... DESC."
|
||||
"се углавном користи за оптимизацију ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -12575,7 +12575,7 @@ msgstr "Назив табеле"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Име примарног кључа мора да буде... PRIMARY!"
|
||||
msgstr "Име примарног кључа мора да буде… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
|
||||
@ -4169,10 +4169,10 @@ msgstr "Konfiguraciona datoteka"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Da li upozorenje ("Da li ste sigurni...") treba da bude prikazano "
|
||||
"Da li upozorenje ("Da li ste sigurni…") treba da bude prikazano "
|
||||
"kada ste na putu da izgubite podatke"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6202,7 +6202,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6462,7 +6462,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Format datoteka za uvoz"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8189,12 +8189,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Pokazuje deo stringa. Prva opcija je broj znakova koje treba preskočiti od "
|
||||
"početka stringa (podrazumevano 0). Druga opcija je broj vraćenih znakova "
|
||||
"(podrazumevano: do kraja stringa). Treća opcija je string koji se dodaje "
|
||||
"kada dođe do odsecanja (podrazumevano: ...) ."
|
||||
"kada dođe do odsecanja (podrazumevano: …) ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9293,32 +9293,32 @@ msgid "Revoke"
|
||||
msgstr "Zabrani"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... sačuvaj stare."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… sačuvaj stare."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... obriši stare iz tabela korisnika."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… obriši stare iz tabela korisnika."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... obustavi sve privilegije starog korisnika i zatim ga obriši."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… obustavi sve privilegije starog korisnika i zatim ga obriši."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije."
|
||||
"… obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Promeni informacije o prijavi / Kopiraj korisnika"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Napravi novog korisnika sa istim privilegijama i ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Napravi novog korisnika sa istim privilegijama i …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9727,12 +9727,12 @@ msgstr "Izabrani korisnici su uspešno obrisani."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ako je polje \"enum\" ili \"set\", unesite vrednosti u formatu: "
|
||||
"'a','b','c'...<br />Ako vam treba obrnuta kosa crta (\"\\\") ili apostrof "
|
||||
"'a','b','c'…<br />Ako vam treba obrnuta kosa crta (\"\\\") ili apostrof "
|
||||
"(\"'\") koristite ih u izbegnutom (escaped) obliku (na primer '\\\\xyz' ili "
|
||||
"'a\\'b')."
|
||||
|
||||
@ -9766,12 +9766,12 @@ msgstr "Opcije transformacije"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Molimo unesite vrednosti za opcije transformacije koristeći ovaj oblik: 'a', "
|
||||
"100, b,'c'...<br />Ako treba da unesete obrnutu kosu crtu (\"\\\") ili "
|
||||
"100, b,'c'…<br />Ako treba da unesete obrnutu kosu crtu (\"\\\") ili "
|
||||
"apostrof (\"'\") u te vrednosti, stavite obrnutu kosu crtu ispred njih (na "
|
||||
"primer '\\\\xyz' ili 'a\\'b')."
|
||||
|
||||
@ -10709,7 +10709,7 @@ msgid "Show only alert values"
|
||||
msgstr "Prikaži samo vrednosti upozorenja"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10846,10 +10846,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Broj zahteva za čitanjem prethodnog reda u poretku ključeva. Ova metoda "
|
||||
"čitanja se uglavnom koristi za optimizaciju ORDER BY ... DESC."
|
||||
"čitanja se uglavnom koristi za optimizaciju ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -11854,7 +11854,7 @@ msgstr "Naziv datoteke"
|
||||
|
||||
#: tbl_indexes.php:71
|
||||
msgid "The name of the primary key must be \"PRIMARY\"!"
|
||||
msgstr "Ime primarnog ključa mora da bude... PRIMARY!"
|
||||
msgstr "Ime primarnog ključa mora da bude… PRIMARY!"
|
||||
|
||||
#: tbl_indexes.php:81
|
||||
msgid "Can't rename index to PRIMARY!"
|
||||
|
||||
56
po/sv.po
56
po/sv.po
@ -4199,10 +4199,10 @@ msgstr "Konfigurationsfil"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Anger om en varning ("Är du riktigt säker...") ska visas när du "
|
||||
"Anger om en varning ("Är du riktigt säker…") ska visas när du "
|
||||
"håller på att förlora data"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6318,8 +6318,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Kontrollera privilegierna för katalogen som innehåller databasen."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Detaljer..."
|
||||
msgid "Details…"
|
||||
msgstr "Detaljer…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6577,8 +6577,8 @@ msgid "%s of %s"
|
||||
msgstr "%s av %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "Ladda upp din importfil..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Ladda upp din importfil…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8344,13 +8344,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Visar del av en sträng. Första parametern är antalet tecken att hoppa över "
|
||||
"från början på strängen (standardvärde: 0). Andra parametern är antalet "
|
||||
"tecken som ska returneras (standardvärde: till slutet på strängen). Den "
|
||||
"tredje parametern är en sträng som läggs till i slutet och/eller början när "
|
||||
"trunkering utförs (standardvärde: \"...\")."
|
||||
"trunkering utförs (standardvärde: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9467,25 +9467,25 @@ msgid "Revoke"
|
||||
msgstr "Upphäv"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... behåll den gamla."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… behåll den gamla."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... ta bort den gamla från användartabellerna."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… ta bort den gamla från användartabellerna."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... upphäv alla aktiva privilegier från dan gamla och ta bort den efteråt."
|
||||
"… upphäv alla aktiva privilegier från dan gamla och ta bort den efteråt."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... ta bort den gamla från användartabellerna och ladda om privilegierna "
|
||||
"… ta bort den gamla från användartabellerna och ladda om privilegierna "
|
||||
"efteråt."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9493,8 +9493,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Ändra inloggningsinformation / Kopiera användare"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Skapa en ny användare med samma privilegier och ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Skapa en ny användare med samma privilegier och …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9900,12 +9900,12 @@ msgstr "Kolumnerna har flyttats framgångsrikt."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Om en fälttyp är \"enum\" eller \"set\", ange värden enligt följande format: "
|
||||
"'a','b','c'...<br />Om du behöver lägga till ett backslash (\"\\\") eller "
|
||||
"'a','b','c'…<br />Om du behöver lägga till ett backslash (\"\\\") eller "
|
||||
"ett enkelcitat (\"'\") i värdena, skriv ett backslash före tecknet (t.ex. "
|
||||
"'\\\\xyz' eller 'a\\'b')."
|
||||
|
||||
@ -9937,12 +9937,12 @@ msgstr "Omvandlingsparametrar"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ange värdena för omvandlingsparametrar enligt följande format: 'a', 100, "
|
||||
"b,'c'...<br />Om du behöver lägga till ett bakåtstreck (\"\\\") eller ett "
|
||||
"b,'c'…<br />Om du behöver lägga till ett bakåtstreck (\"\\\") eller ett "
|
||||
"enkelcitat (\"'\") i värdena, skriv ett bakåtstreck före tecknet (t.ex. '\\"
|
||||
"\\xyz' eller 'a\\'b')."
|
||||
|
||||
@ -10938,8 +10938,8 @@ msgid "Show only alert values"
|
||||
msgstr "Visa endast varnings värden"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Filtrera efter kategori ..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Filtrera efter kategori …"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11078,10 +11078,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Antalet efterfrågningar att läsa den föregående raden i nyckelordning. Denna "
|
||||
"läsmetod används huvudsakligen för att optimera ORDER BY ... DESC."
|
||||
"läsmetod används huvudsakligen för att optimera ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14478,8 +14478,8 @@ msgstr "concurrent_insert är satt till 0"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Bakgrundsfärg"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "välj..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "välj…"
|
||||
|
||||
#~ msgid "Delete the matches for the "
|
||||
#~ msgstr "radera matchande för %s tabellen?"
|
||||
|
||||
26
po/ta.po
26
po/ta.po
@ -4123,7 +4123,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6088,7 +6088,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6341,7 +6341,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -7998,7 +7998,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9103,21 +9103,21 @@ msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -9126,7 +9126,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9525,7 +9525,7 @@ msgstr "%s தரவுத்தளம் இரத்துசெய்யப
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -9556,7 +9556,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10500,7 +10500,7 @@ msgid "Show only alert values"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10613,7 +10613,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
38
po/te.po
38
po/te.po
@ -1579,9 +1579,9 @@ msgstr "పత్రావళి"
|
||||
|
||||
#: js/messages.php:211
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Rule details"
|
||||
msgstr "వివరాలు..."
|
||||
msgstr "వివరాలు…"
|
||||
|
||||
#: js/messages.php:212
|
||||
#, fuzzy
|
||||
@ -4240,7 +4240,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6222,8 +6222,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "వివరాలు..."
|
||||
msgid "Details…"
|
||||
msgstr "వివరాలు…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6481,7 +6481,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8171,7 +8171,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -8438,9 +8438,9 @@ msgstr ""
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "వివరాలు..."
|
||||
msgstr "వివరాలు…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
#, fuzzy
|
||||
@ -9317,21 +9317,21 @@ msgstr ""
|
||||
|
||||
# మొదటి అనువాదము
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... పాతదే ఉంచుము"
|
||||
msgid "… keep the old one."
|
||||
msgstr "… పాతదే ఉంచుము"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -9340,7 +9340,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9748,7 +9748,7 @@ msgstr "%s డేటాబేస్ తుడిచివేయడమైనద
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -9779,7 +9779,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10765,7 +10765,7 @@ msgid "Show only alert values"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10880,7 +10880,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
48
po/th.po
48
po/th.po
@ -4157,7 +4157,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6219,7 +6219,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6507,7 +6507,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8231,7 +8231,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9394,31 +9394,31 @@ msgid "Revoke"
|
||||
msgstr "เพิกถอน"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... เก็บของเก่าไว้."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… เก็บของเก่าไว้."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... ลบของเก่าทิ้งไปจากตารางผู้ใช้."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… ลบของเก่าทิ้งไปจากตารางผู้ใช้."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr "... ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น."
|
||||
msgstr "… ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9839,16 +9839,16 @@ msgstr "ลบผู้ใช้ที่เลือกไว้เรียบ
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"ถ้าชนิดของฟิลด์เป็น \"enum\" หรือ \"set\" โปรดใส่ค่าตามรูปแบบ: 'a','b','c'...<br /"
|
||||
"ถ้าชนิดของฟิลด์เป็น \"enum\" หรือ \"set\" โปรดใส่ค่าตามรูปแบบ: 'a','b','c'…<br /"
|
||||
">ถ้าต้องการใส่เครื่องหมาย backslash (\"\\\") หรือ อัญประกาศเดี่ยว (\"'\") "
|
||||
"เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')"
|
||||
|
||||
@ -9879,11 +9879,11 @@ msgstr "ตัวเลือกการแปลง"
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"ถ้าชนิดของฟิลด์เป็น \"enum\" หรือ \"set\" โปรดใส่ค่าตามรูปแบบ: 'a','b','c'...<br /"
|
||||
"ถ้าชนิดของฟิลด์เป็น \"enum\" หรือ \"set\" โปรดใส่ค่าตามรูปแบบ: 'a','b','c'…<br /"
|
||||
">ถ้าต้องการใส่เครื่องหมาย backslash (\"\\\") หรือ อัญประกาศเดี่ยว (\"'\") "
|
||||
"เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')"
|
||||
|
||||
@ -10891,7 +10891,7 @@ msgid "Show only alert values"
|
||||
msgstr "แสดงตาราง"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11008,7 +11008,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -13790,7 +13790,7 @@ msgstr "concurrent_insert ตั้งค่าไว้ที่ 0"
|
||||
#~ "those values, precede it with a backslash (for example '\\\\xyz' or 'a"
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "ถ้าชนิดของฟิลด์เป็น \"enum\" หรือ \"set\" โปรดใส่ค่าตามรูปแบบ: 'a','b','c'...<br /"
|
||||
#~ "ถ้าชนิดของฟิลด์เป็น \"enum\" หรือ \"set\" โปรดใส่ค่าตามรูปแบบ: 'a','b','c'…<br /"
|
||||
#~ ">ถ้าต้องการใส่เครื่องหมาย backslash (\"\\\") หรือ อัญประกาศเดี่ยว (\"'\") "
|
||||
#~ "เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')"
|
||||
|
||||
@ -13799,7 +13799,7 @@ msgstr "concurrent_insert ตั้งค่าไว้ที่ 0"
|
||||
#~ "(\"\\\") or a single quote (\"'\") amongst those values, precede it with "
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "ถ้าชนิดของฟิลด์เป็น \"enum\" หรือ \"set\" โปรดใส่ค่าตามรูปแบบ: 'a','b','c'...<br /"
|
||||
#~ "ถ้าชนิดของฟิลด์เป็น \"enum\" หรือ \"set\" โปรดใส่ค่าตามรูปแบบ: 'a','b','c'…<br /"
|
||||
#~ ">ถ้าต้องการใส่เครื่องหมาย backslash (\"\\\") หรือ อัญประกาศเดี่ยว (\"'\") "
|
||||
#~ "เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')"
|
||||
|
||||
@ -14010,7 +14010,7 @@ msgstr "concurrent_insert ตั้งค่าไว้ที่ 0"
|
||||
#~ "reloaded."
|
||||
#~ msgstr "ผู้ใช้ต่างๆ ยังคงมีสิทธิ USAGE จนกว่า ข้อมูลสิทธิ จะถูกเรียกใช้ใหม่อีกที."
|
||||
|
||||
#~ msgctxt "Create SELECT ... query"
|
||||
#~ msgctxt "Create SELECT … query"
|
||||
#~ msgid "Select"
|
||||
#~ msgstr "เลือกทั้งหมด"
|
||||
|
||||
|
||||
26
po/tk.po
26
po/tk.po
@ -4018,7 +4018,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -5961,7 +5961,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6212,7 +6212,7 @@ msgid "%s of %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -7849,7 +7849,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -8930,21 +8930,21 @@ msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -8953,7 +8953,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9341,7 +9341,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -9370,7 +9370,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10299,7 +10299,7 @@ msgid "Show only alert values"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10412,7 +10412,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
56
po/tr.po
56
po/tr.po
@ -4207,10 +4207,10 @@ msgstr "Yapılandırma dosyası"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Veri kaybı yaşamamanız için bir uyarı ("... yapmak istediğiniz için "
|
||||
"Veri kaybı yaşamamanız için bir uyarı ("… yapmak istediğiniz için "
|
||||
"emin misiniz?") görüntülenip görüntülenmemesidir"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6338,8 +6338,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "Lütfen veritabanını içeren dizinin yetkilerini kontrol edin."
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Ayrıntılar..."
|
||||
msgid "Details…"
|
||||
msgstr "Ayrıntılar…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6601,8 +6601,8 @@ msgid "%s of %s"
|
||||
msgstr "%s / %s"
|
||||
|
||||
#: libraries/display_import.lib.php:86
|
||||
msgid "Uploading your import file..."
|
||||
msgstr "İçe aktarma dosyanız gönderiliyor..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "İçe aktarma dosyanız gönderiliyor…"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
#, php-format
|
||||
@ -8376,13 +8376,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Karakter dizisinin bir kısmını görüntüler. İlk seçenek dizginin "
|
||||
"başlangıcından atlamak için karakter sayısıdır (Varsayılan 0). İkinci "
|
||||
"seçenek döndürülecek karakter sayısıdır (Varsayılan: dizginin sonuna kadar). "
|
||||
"Üçüncü seçenek kısaltma meydana geldiğinde eklemek ve/veya başa eklemek için "
|
||||
"dizgidir (Varsayılan: \"...\")."
|
||||
"dizgidir (Varsayılan: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9502,24 +9502,24 @@ msgid "Revoke"
|
||||
msgstr "Geri al"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... eski olanı sakla."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… eski olanı sakla."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... eski olanı kullanıcı tablolarından sil."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… eski olanı kullanıcı tablolarından sil."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... eski olandan bütün aktif yetkileri iptal et ve sonra da sil."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… eski olandan bütün aktif yetkileri iptal et ve sonra da sil."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden "
|
||||
"… eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden "
|
||||
"yükle."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
@ -9527,8 +9527,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9931,12 +9931,12 @@ msgstr "Sütunlar başarılı olarak taşındı."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Eğer sütun türü \"enum\" veya \"set\" ise lütfen değerleri bu biçimi "
|
||||
"kullanarak girin: 'a','b','c'...<br />Eğer bu değerler arasına hep ters eğik "
|
||||
"kullanarak girin: 'a','b','c'…<br />Eğer bu değerler arasına hep ters eğik "
|
||||
"çizgi (\"\\\") veya tek tırnak (\"'\") koymanız gerekirse, önlerine ters "
|
||||
"eğik çizgi koyun (örneğin '\\\\xyz' veya 'a\\'b')."
|
||||
|
||||
@ -9968,12 +9968,12 @@ msgstr "Dönüşüm seçenekleri"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Lütfen dönüşüm seçenekleri için değerleri bu biçimi kullanarak giriniz: 'a', "
|
||||
"100, b,'c'...<br />Eğer bu değerler arasına hep ters eğik çizgi (\"\\\") "
|
||||
"100, b,'c'…<br />Eğer bu değerler arasına hep ters eğik çizgi (\"\\\") "
|
||||
"veya tek tırnak (\"'\") koymanız gerekirse, önlerine ters eğik çizgi koyun "
|
||||
"(örneğin '\\\\xyz' veya 'a\\'b')."
|
||||
|
||||
@ -10972,8 +10972,8 @@ msgid "Show only alert values"
|
||||
msgstr "Sadece uyarı değerlerini göster"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgstr "Kategoriye göre süz..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "Kategoriye göre süz…"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
msgid "Show unformatted values"
|
||||
@ -11112,10 +11112,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Anahtar sırasında önceki satırı okumak için istek sayısıdır. Bu okuma "
|
||||
"yöntemi başlıca ORDER BY ... DESC komutunu uyarlamak için kullanılır."
|
||||
"yöntemi başlıca ORDER BY … DESC komutunu uyarlamak için kullanılır."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -14692,5 +14692,5 @@ msgstr "concurrent_insert 0'a ayarlı"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "Arkaplan rengi"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "Seçin..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "Seçin…"
|
||||
|
||||
38
po/tt.po
38
po/tt.po
@ -4397,7 +4397,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -6487,7 +6487,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6783,7 +6783,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Yöklänğan birem tözeleşe"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8577,13 +8577,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Only shows part of a string. First option is an offset to define where the "
|
||||
"output of your text starts (Default 0). Second option is an offset how much "
|
||||
"text is returned. If empty, returns all the remaining text. The third option "
|
||||
"defines which chars will be appended to the output when a substring is "
|
||||
"returned (Default: ...) ."
|
||||
"returned (Default: …) ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9768,21 +9768,21 @@ msgid "Revoke"
|
||||
msgstr "Töşer"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -9791,7 +9791,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -10206,16 +10206,16 @@ msgstr "Saylanğan qullanuçını beterü uñışlı uzdı."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Alan töre \"enum/set\" bulsa, bäyäsen bolayraq kertäse: 'a','b','c'...<br /"
|
||||
"Alan töre \"enum/set\" bulsa, bäyäsen bolayraq kertäse: 'a','b','c'…<br /"
|
||||
">Bäyä eçenä kireawış (\"\\\") yä sıñarquote (\"'\") kertäse bulsa, anı "
|
||||
"kireawıştırası bula (ürnäk: '\\\\xyz' yä ki 'a\\'b')."
|
||||
|
||||
@ -10249,12 +10249,12 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, backslash it (for example '\\\\xyz' or 'a"
|
||||
"\\'b')."
|
||||
|
||||
@ -11271,7 +11271,7 @@ msgid "Show only alert values"
|
||||
msgstr "Açıq tüşämä tezmäse"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11389,7 +11389,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -14155,7 +14155,7 @@ msgstr ""
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Please enter the values for transformation options using this format: "
|
||||
#~ "'a', 100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a "
|
||||
#~ "'a', 100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a "
|
||||
#~ "single quote (\"'\") amongst those values, backslash it (for example '\\"
|
||||
#~ "\\xyz' or 'a\\'b')."
|
||||
|
||||
@ -14165,7 +14165,7 @@ msgstr ""
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Please enter the values for transformation options using this format: "
|
||||
#~ "'a', 100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a "
|
||||
#~ "'a', 100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a "
|
||||
#~ "single quote (\"'\") amongst those values, backslash it (for example '\\"
|
||||
#~ "\\xyz' or 'a\\'b')."
|
||||
|
||||
|
||||
54
po/ug.po
54
po/ug.po
@ -1448,7 +1448,7 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Analyzing…"
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…"
|
||||
|
||||
#: js/messages.php:171
|
||||
#, fuzzy
|
||||
@ -1613,15 +1613,15 @@ msgstr "قوللانما"
|
||||
|
||||
#: js/messages.php:211
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Rule details"
|
||||
msgstr "تەپسىلاتلار..."
|
||||
msgstr "تەپسىلاتلار…"
|
||||
|
||||
#: js/messages.php:212
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Justification"
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…"
|
||||
|
||||
#: js/messages.php:213
|
||||
msgid "Used variable / formula"
|
||||
@ -4280,7 +4280,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
|
||||
@ -4796,13 +4796,13 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Authentication"
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…"
|
||||
|
||||
#: libraries/config/messages.inc.php:198
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Authentication settings"
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…"
|
||||
|
||||
#: libraries/config/messages.inc.php:199
|
||||
msgid "Server configuration"
|
||||
@ -6158,25 +6158,25 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Config authentication"
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…"
|
||||
|
||||
#: libraries/config/setup.forms.php:45
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Cookie authentication"
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…"
|
||||
|
||||
#: libraries/config/setup.forms.php:48
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "HTTP authentication"
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…"
|
||||
|
||||
#: libraries/config/setup.forms.php:51
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Signon authentication"
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…"
|
||||
|
||||
#: libraries/config/setup.forms.php:247
|
||||
#: libraries/config/user_preferences.forms.php:151
|
||||
@ -6284,8 +6284,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "تەپسىلاتلار..."
|
||||
msgid "Details…"
|
||||
msgstr "تەپسىلاتلار…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6572,7 +6572,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "كىرگۈزگەن ھۆججەت شەكلى"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -7718,7 +7718,7 @@ msgstr "كىرگۈزگەن ئىسلەتكۈچى ئىسمى\\پارول خاتا
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Can not find signon authentication script:"
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
|
||||
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ…"
|
||||
|
||||
#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134
|
||||
#, php-format
|
||||
@ -8280,7 +8280,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -8543,9 +8543,9 @@ msgstr ""
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "تەپسىلاتلار..."
|
||||
msgstr "تەپسىلاتلار…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
#, fuzzy
|
||||
@ -9431,21 +9431,21 @@ msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -9454,7 +9454,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9849,7 +9849,7 @@ msgstr "ساندان %s ئۆچۈرۈلدى."
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -9880,7 +9880,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10861,7 +10861,7 @@ msgid "Show only alert values"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10976,7 +10976,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
44
po/uk.po
44
po/uk.po
@ -4259,10 +4259,10 @@ msgstr "Конфігураційний файл"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Чи попередження ("Ви дійсно впевнені...") повинно бути бути "
|
||||
"Чи попередження ("Ви дійсно впевнені…") повинно бути бути "
|
||||
"відображене коли ви можете втратити дані"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6328,7 +6328,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6589,7 +6589,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Формат імпортованих файлів"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8349,13 +8349,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Показує лише частину тексту. Перша опція - це відступ який визначає з якого "
|
||||
"місця повинен початися вивід тексту (за замовчуванням: 0). Друга опція - "
|
||||
"визначає скільки тексту буде виведено. Якщо вона порожня - виводиться решта "
|
||||
"всього тексту. Третя опція - визначає які символи буде додано після "
|
||||
"виведеного текстового сегменту (за замовчуванням: ...) ."
|
||||
"виведеного текстового сегменту (за замовчуванням: …) ."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9478,34 +9478,34 @@ msgid "Revoke"
|
||||
msgstr "Відмінити"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... залишити старого."
|
||||
msgid "… keep the old one."
|
||||
msgstr "… залишити старого."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... знищити старого з таблиці користувачів."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… знищити старого з таблиці користувачів."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
"... анулювати всі активні права старого користувача, знищивши його після "
|
||||
"… анулювати всі активні права старого користувача, знищивши його після "
|
||||
"того."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
"... знищити старого з таблиці користувачів та перевантажити права після того."
|
||||
"… знищити старого з таблиці користувачів та перевантажити права після того."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "Змінити реєстраційні дані / Копіювати користувача"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Створити нового користувача з такими ж правами і ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Створити нового користувача з такими ж правами і …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9928,12 +9928,12 @@ msgstr "Вибраних користувачів успішно видален
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Для типів поля \"enum\" або \"set\", введіть значення в такому форматі: "
|
||||
"'a','b','c'...<br />Якщо вам буде потрібно ввести зворотню косу риску (\"\\"
|
||||
"'a','b','c'…<br />Якщо вам буде потрібно ввести зворотню косу риску (\"\\"
|
||||
"\") або поодинокі лапки (\"'\") посеред цих значень, поставте перед ними "
|
||||
"зворотню косу риску (наприклад, '\\\\xyz' чи 'a\\'b')."
|
||||
|
||||
@ -9967,11 +9967,11 @@ msgstr "Опції перетворення"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Введіть значення опцій перетворення у такому форматі: 'a', 100, b,'c'...<br /"
|
||||
"Введіть значення опцій перетворення у такому форматі: 'a', 100, b,'c'…<br /"
|
||||
">Якщо необхідно ввести зворотній слеш (\"\\\") чи поодинокі лапки (\"'\") у "
|
||||
"цих значеннях, поставте перед ними додатковий зворотній слеш (наприклад '\\"
|
||||
"\\xyz' чи 'a\\'b')."
|
||||
@ -10957,7 +10957,7 @@ msgid "Show only alert values"
|
||||
msgstr "Показати таблиці"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11074,7 +11074,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
30
po/ur.po
30
po/ur.po
@ -1462,7 +1462,7 @@ msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Authenticating…"
|
||||
msgid "Analyzing…"
|
||||
msgstr "توثیق کررہا ہے..."
|
||||
msgstr "توثیق کررہا ہے…"
|
||||
|
||||
#: js/messages.php:171
|
||||
#, fuzzy
|
||||
@ -4314,10 +4314,10 @@ msgstr "تشکیلی مسل"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"آیا ایک تنبیہ ہے ("کیا آپ کو یقین ہے...") جب کوائف کھوجانے کا خطرہ "
|
||||
"آیا ایک تنبیہ ہے ("کیا آپ کو یقین ہے…") جب کوائف کھوجانے کا خطرہ "
|
||||
"ہو تو دکھائی دے"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
@ -6452,7 +6452,7 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgid "Details…"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
@ -6719,7 +6719,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "درآمد مسل کی وضع"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8416,7 +8416,7 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
@ -9573,21 +9573,21 @@ msgid "Revoke"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
|
||||
@ -9596,7 +9596,7 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
@ -9996,7 +9996,7 @@ msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -10027,7 +10027,7 @@ msgstr ""
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
@ -11018,7 +11018,7 @@ msgid "Show only alert values"
|
||||
msgstr "بائیں جھروکہ میں علامت دکھائیں"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -11135,7 +11135,7 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
54
po/uz.po
54
po/uz.po
@ -1692,9 +1692,9 @@ msgstr "Документация"
|
||||
|
||||
#: js/messages.php:211
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Rule details"
|
||||
msgstr "Тафсилотлар..."
|
||||
msgstr "Тафсилотлар…"
|
||||
|
||||
#: js/messages.php:212
|
||||
#, fuzzy
|
||||
@ -4544,11 +4544,11 @@ msgstr "Конфигурацион файл"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Маълумот йўқолиши мумкин бўлган вазиятларда огоҳлантириш (\"Сиз ҳақиқатдан "
|
||||
"ҳам ...\") кўрсатиш керакми?"
|
||||
"ҳам …\") кўрсатиш керакми?"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
msgid "Confirm DROP queries"
|
||||
@ -6856,8 +6856,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Тафсилотлар..."
|
||||
msgid "Details…"
|
||||
msgstr "Тафсилотлар…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -7170,7 +7170,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Импорт қилинаётган файл формати"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -9063,12 +9063,12 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Сатрнинг фақат бир қисмини кўрсатади. Биринчи параметр - кўрсатиладиган матн "
|
||||
"бошигача силжиш қиймати (асл қиймати: 0). Иккинчи параметр - қайтариладиган "
|
||||
"белгилар сони (асл қиймати: сатр охиригача). Учинчи параметр - мавжуд парча "
|
||||
"боши ва/ёки охирига қўшиладиган матн (асл қиймати: \"...\")."
|
||||
"боши ва/ёки охирига қўшиладиган матн (асл қиймати: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9368,9 +9368,9 @@ msgstr "Жараёнлар"
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "Тафсилотлар..."
|
||||
msgstr "Тафсилотлар…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
#, fuzzy
|
||||
@ -10312,21 +10312,21 @@ msgid "Revoke"
|
||||
msgstr "Бекор қилиш"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr "ва эскисини сақлаш."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "ва фойдаланувчилар жадвалидан эскисини ўчириш."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш."
|
||||
@ -10336,8 +10336,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш…"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10770,17 +10770,17 @@ msgstr "Белгиланган фойдаланувчилар муваффақи
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"\"enum\" ва \"set\" туридаги майдонлар тузганда, маълумотлар қуйидаги "
|
||||
"форматда бўлиши керак: \"a\",\"b\",\"c\"...<br />Тескари эгри чизиқ (\\) ва "
|
||||
"форматда бўлиши керак: \"a\",\"b\",\"c\"…<br />Тескари эгри чизиқ (\\) ва "
|
||||
"битталик қўштирноқ (\") белгилари олдидан тескари эгри чизиқ бўлиши керак, "
|
||||
"масалан: \"\\\\xyz\" ёки \"a\\\"b\"."
|
||||
|
||||
@ -10814,12 +10814,12 @@ msgstr "Ўгиришлар параметрлари"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"Ўгиришлар парамерлари қийматлари қуйидаги форматда бўлиши шарт: \"a\", 100, "
|
||||
"\"b\", \"c\"...<br />Тескари эгри чизиқ (\\) ва битталик қўштирноқ (\") "
|
||||
"\"b\", \"c\"…<br />Тескари эгри чизиқ (\\) ва битталик қўштирноқ (\") "
|
||||
"белгилари олдидан тескари эгри чизиқ бўлиши керак, масалан: \"\\\\xyz\" ёки "
|
||||
"\"a\\\"b\"."
|
||||
|
||||
@ -11886,7 +11886,7 @@ msgid "Show only alert values"
|
||||
msgstr "Очиқ жадваллар рўйхати"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -12029,10 +12029,10 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Индексни камайиб бориш тартибида сортировка қилинганда олдинги ёзувни ўқишга "
|
||||
"бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... "
|
||||
"бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY … "
|
||||
"DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -15358,7 +15358,7 @@ msgstr "Максимал уланишлар сони "
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Ўгиришлар парамерлари қийматлари қуйидаги форматда бўлиши шарт: \"a\", "
|
||||
#~ "100, \"b\", \"c\"...<br />Тескари эгри чизиқ (\\) ва битталик қўштирноқ "
|
||||
#~ "100, \"b\", \"c\"…<br />Тескари эгри чизиқ (\\) ва битталик қўштирноқ "
|
||||
#~ "(\") белгилари олдидан тескари эгри чизиқ бўлиши керак, масалан: \"\\\\xyz"
|
||||
#~ "\" ёки \"a\\\"b\"."
|
||||
|
||||
@ -15368,7 +15368,7 @@ msgstr "Максимал уланишлар сони "
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "Ўгиришлар парамерлари қийматлари қуйидаги форматда бўлиши шарт: \"a\", "
|
||||
#~ "100, \"b\", \"c\"...<br />Тескари эгри чизиқ (\\) ва битталик қўштирноқ "
|
||||
#~ "100, \"b\", \"c\"…<br />Тескари эгри чизиқ (\\) ва битталик қўштирноқ "
|
||||
#~ "(\") белгилари олдидан тескари эгри чизиқ бўлиши керак, масалан: \"\\\\xyz"
|
||||
#~ "\" ёки \"a\\\"b\"."
|
||||
|
||||
|
||||
@ -1698,9 +1698,9 @@ msgstr "Dokumentatsiya"
|
||||
|
||||
#: js/messages.php:211
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Rule details"
|
||||
msgstr "Tafsilotlar..."
|
||||
msgstr "Tafsilotlar…"
|
||||
|
||||
#: js/messages.php:212
|
||||
#, fuzzy
|
||||
@ -4556,11 +4556,11 @@ msgstr "Konfiguratsion fayl"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr ""
|
||||
"Ma`lumot yo‘qolishi mumkin bo‘lgan vaziyatlarda ogohlantirish (\"Siz "
|
||||
"haqiqatdan ham ...\") ko‘rsatish kerakmi?"
|
||||
"haqiqatdan ham …\") ko‘rsatish kerakmi?"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
msgid "Confirm DROP queries"
|
||||
@ -6877,8 +6877,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "Tafsilotlar..."
|
||||
msgid "Details…"
|
||||
msgstr "Tafsilotlar…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -7191,7 +7191,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "Import qilinayotgan fayl formati"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -9094,13 +9094,13 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"Satrning faqat bir qismini ko‘rsatadi. Birinchi parametr - ko‘rsatiladigan "
|
||||
"matn boshigacha siljish qiymati (asl qiymati: 0). Ikkinchi parametr - "
|
||||
"qaytariladigan belgilar soni (asl qiymati: satr oxirigacha). Uchinchi "
|
||||
"parametr - mavjud parcha boshi va/yoki oxiriga qo‘shiladigan matn (asl "
|
||||
"qiymati: \"...\")."
|
||||
"qiymati: \"…\")."
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
#, fuzzy
|
||||
@ -9401,9 +9401,9 @@ msgstr "Jarayonlar"
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "Tafsilotlar..."
|
||||
msgstr "Tafsilotlar…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
#, fuzzy
|
||||
@ -10350,21 +10350,21 @@ msgid "Revoke"
|
||||
msgstr "Bekor qilish"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgid "… keep the old one."
|
||||
msgstr "va eskisini saqlash."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "va foydalanuvchilar jadvalidan eskisini o‘chirish."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish."
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr ""
|
||||
", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta "
|
||||
@ -10375,8 +10375,8 @@ msgid "Change Login Information / Copy User"
|
||||
msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish…"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -10812,17 +10812,17 @@ msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi."
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "field type is \"enum\" or \"set\", please enter the values using this "
|
||||
#| "mat: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "mat: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") a "
|
||||
#| "single quote (\"'\") amongst those values, precede it with a kslash (for "
|
||||
#| "example '\\\\xyz' or 'a\\'b')."
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"\"enum\" va \"set\" turidagi maydonlar tuzganda, ma`lumotlar quyidagi "
|
||||
"formatda bo‘lishi kerak: \"a\",\"b\",\"c\"...<br />Teskari egri chiziq (\\) "
|
||||
"formatda bo‘lishi kerak: \"a\",\"b\",\"c\"…<br />Teskari egri chiziq (\\) "
|
||||
"va bittalik qo‘shtirnoq (\") belgilari oldidan teskari egri chiziq bo‘lishi "
|
||||
"kerak, masalan: \"\\\\xyz\" yoki \"a\\\"b\"."
|
||||
|
||||
@ -10856,12 +10856,12 @@ msgstr "O‘girishlar parametrlari"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"O‘girishlar paramerlari qiymatlari quyidagi formatda bo‘lishi shart: \"a\", "
|
||||
"100, \"b\", \"c\"...<br />Teskari egri chiziq (\\) va bittalik qo‘shtirnoq "
|
||||
"100, \"b\", \"c\"…<br />Teskari egri chiziq (\\) va bittalik qo‘shtirnoq "
|
||||
"(\") belgilari oldidan teskari egri chiziq bo‘lishi kerak, masalan: \"\\\\xyz"
|
||||
"\" yoki \"a\\\"b\"."
|
||||
|
||||
@ -11938,7 +11938,7 @@ msgid "Show only alert values"
|
||||
msgstr "Ochiq jadvallar ro‘yxati"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -12081,11 +12081,11 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"Indeksni kamayib borish tartibida sortirovka qilinganda oldingi yozuvni "
|
||||
"o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun "
|
||||
"qo‘llaniladi: ORDER BY ... DESC."
|
||||
"qo‘llaniladi: ORDER BY … DESC."
|
||||
|
||||
#: server_status_variables.php:411
|
||||
msgid ""
|
||||
@ -15422,7 +15422,7 @@ msgstr "Maksimal ulanishlar soni "
|
||||
#~ "\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "O‘girishlar paramerlari qiymatlari quyidagi formatda bo‘lishi shart: \"a"
|
||||
#~ "\", 100, \"b\", \"c\"...<br />Teskari egri chiziq (\\) va bittalik "
|
||||
#~ "\", 100, \"b\", \"c\"…<br />Teskari egri chiziq (\\) va bittalik "
|
||||
#~ "qo‘shtirnoq (\") belgilari oldidan teskari egri chiziq bo‘lishi kerak, "
|
||||
#~ "masalan: \"\\\\xyz\" yoki \"a\\\"b\"."
|
||||
|
||||
@ -15432,7 +15432,7 @@ msgstr "Maksimal ulanishlar soni "
|
||||
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
|
||||
#~ msgstr ""
|
||||
#~ "O‘girishlar paramerlari qiymatlari quyidagi formatda bo‘lishi shart: \"a"
|
||||
#~ "\", 100, \"b\", \"c\"...<br />Teskari egri chiziq (\\) va bittalik "
|
||||
#~ "\", 100, \"b\", \"c\"…<br />Teskari egri chiziq (\\) va bittalik "
|
||||
#~ "qo‘shtirnoq (\") belgilari oldidan teskari egri chiziq bo‘lishi kerak, "
|
||||
#~ "masalan: \"\\\\xyz\" yoki \"a\\\"b\"."
|
||||
|
||||
|
||||
52
po/zh_CN.po
52
po/zh_CN.po
@ -4104,9 +4104,9 @@ msgstr "配置文件"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr "当查询可能丢失数据时是否显示警告 ("您真的要...")"
|
||||
msgstr "当查询可能丢失数据时是否显示警告 ("您真的要…")"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
msgid "Confirm DROP queries"
|
||||
@ -6198,8 +6198,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "请检查数据库目录的权限。"
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "详细..."
|
||||
msgid "Details…"
|
||||
msgstr "详细…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6457,7 +6457,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "导入文件的格式"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8196,11 +8196,11 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"显示部分字符串。第一个选项定义了文本开始输出的字数 (默认为 0)。第二个选项是要"
|
||||
"返回的字数 (默认直到结尾)。第三个选项是当发生截取的时候,将会加在字符串之前/"
|
||||
"后的输出 (默认为:“...”)。"
|
||||
"后的输出 (默认为:“…”)。"
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -9298,31 +9298,31 @@ msgid "Revoke"
|
||||
msgstr "撤销"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... 保留旧用户。"
|
||||
msgid "… keep the old one."
|
||||
msgstr "… 保留旧用户。"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... 从用户表中删除旧用户。"
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… 从用户表中删除旧用户。"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... 撤销旧用户的所有权限,然后删除旧用户。"
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… 撤销旧用户的所有权限,然后删除旧用户。"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr "... 从用户表中删除旧用户,然后重新载入权限。"
|
||||
msgstr "… 从用户表中删除旧用户,然后重新载入权限。"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "修改登录信息/复制用户"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "创建具有相同权限的新用户然后 ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "创建具有相同权限的新用户然后 …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9726,11 +9726,11 @@ msgstr "已成功删除选中的用户。"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"如字段类型是“enum”或“set”,请使用以下格式输入:'a','b','c'...<br />如果需要输"
|
||||
"如字段类型是“enum”或“set”,请使用以下格式输入:'a','b','c'…<br />如果需要输"
|
||||
"入反斜杠(“\\”)或单引号(“'”),请在前面加上反斜杠(如 '\\\\xyz' 或 'a\\'b')。"
|
||||
|
||||
#: libraries/tbl_columns_definition_form.inc.php:110
|
||||
@ -9759,11 +9759,11 @@ msgstr "转换选项"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"请使用此格式输入转换选项的值:'a',100,b,'c'...<br />如果您需要在值中输入反斜"
|
||||
"请使用此格式输入转换选项的值:'a',100,b,'c'…<br />如果您需要在值中输入反斜"
|
||||
"杠 (“\\”)或单引号(“'”),请在前面加上反斜杠 (如 '\\\\xyz' 或 'a\\'b')。"
|
||||
|
||||
#: libraries/tbl_columns_definition_form.inc.php:411
|
||||
@ -10723,7 +10723,7 @@ msgid "Show only alert values"
|
||||
msgstr "仅显示报警值"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr "按分类显示。。。"
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10849,9 +10849,9 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... "
|
||||
"根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY … "
|
||||
"DESC 的查询。"
|
||||
|
||||
#: server_status_variables.php:411
|
||||
@ -14024,5 +14024,5 @@ msgstr "concurrent_insert 被设为 0"
|
||||
#~ msgid "Background color"
|
||||
#~ msgstr "背景色"
|
||||
|
||||
#~ msgid "Choose..."
|
||||
#~ msgstr "选择 ..."
|
||||
#~ msgid "Choose…"
|
||||
#~ msgstr "选择 …"
|
||||
|
||||
54
po/zh_TW.po
54
po/zh_TW.po
@ -1346,7 +1346,7 @@ msgstr "分析用的紀錄檔"
|
||||
|
||||
#: js/messages.php:160
|
||||
msgid "Analysing & loading logs. This may take a while."
|
||||
msgstr "讀取且分析紀錄檔中... 這可能會花費一些時間。"
|
||||
msgstr "讀取且分析紀錄檔中… 這可能會花費一些時間。"
|
||||
|
||||
#: js/messages.php:161
|
||||
msgid "Cancel request"
|
||||
@ -4137,9 +4137,9 @@ msgstr "設定檔案"
|
||||
|
||||
#: libraries/config/messages.inc.php:44
|
||||
msgid ""
|
||||
"Whether a warning ("Are your really sure...") should be displayed "
|
||||
"Whether a warning ("Are your really sure…") should be displayed "
|
||||
"when you're about to lose data"
|
||||
msgstr "當查詢可能丟失資料時是否顯示警告 ("您真的要...")"
|
||||
msgstr "當查詢可能丟失資料時是否顯示警告 ("您真的要…")"
|
||||
|
||||
#: libraries/config/messages.inc.php:45
|
||||
msgid "Confirm DROP queries"
|
||||
@ -6224,8 +6224,8 @@ msgid "Please check privileges of directory containing database."
|
||||
msgstr "請檢查資料庫所在的資料夾權限。"
|
||||
|
||||
#: libraries/database_interface.lib.php:2037
|
||||
msgid "Details..."
|
||||
msgstr "詳細..."
|
||||
msgid "Details…"
|
||||
msgstr "詳細…"
|
||||
|
||||
#: libraries/dbi/drizzle-wrappers.lib.php:387
|
||||
msgid "Can't seek in an unbuffered result set"
|
||||
@ -6483,7 +6483,7 @@ msgstr ""
|
||||
#: libraries/display_import.lib.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Format of imported file"
|
||||
msgid "Uploading your import file..."
|
||||
msgid "Uploading your import file…"
|
||||
msgstr "匯入檔案的格式"
|
||||
|
||||
#: libraries/display_import.lib.php:94
|
||||
@ -8214,11 +8214,11 @@ msgid ""
|
||||
"skip from the beginning of the string (Default 0). The second option is the "
|
||||
"number of characters to return (Default: until end of string). The third "
|
||||
"option is the string to append and/or prepend when truncation occurs "
|
||||
"(Default: \"...\")."
|
||||
"(Default: \"…\")."
|
||||
msgstr ""
|
||||
"顯示部分字元串。第一個選項定義了文字開始輸出的字數 (預設爲 0)。第二個選項是要"
|
||||
"返回的字數 (預設直到結尾)。第三個選項是當發生截取的時候,將會加在字元串之前/"
|
||||
"後的輸出 (預設爲:“...”)"
|
||||
"後的輸出 (預設爲:“…”)"
|
||||
|
||||
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
|
||||
msgid ""
|
||||
@ -8488,9 +8488,9 @@ msgstr "要求處理得程序中有錯誤"
|
||||
#: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:900
|
||||
#: libraries/rte/rte_triggers.lib.php:347
|
||||
#, fuzzy
|
||||
#| msgid "Details..."
|
||||
#| msgid "Details…"
|
||||
msgid "Details"
|
||||
msgstr "詳細..."
|
||||
msgstr "詳細…"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:420
|
||||
msgid "Event name"
|
||||
@ -9376,31 +9376,31 @@ msgid "Revoke"
|
||||
msgstr "移除"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1934
|
||||
msgid "... keep the old one."
|
||||
msgstr "... 保留舊使用者"
|
||||
msgid "… keep the old one."
|
||||
msgstr "… 保留舊使用者"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1935
|
||||
msgid "... delete the old one from the user tables."
|
||||
msgstr "... 從使用者資料表中刪除舊使用者"
|
||||
msgid "… delete the old one from the user tables."
|
||||
msgstr "… 從使用者資料表中刪除舊使用者"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1936
|
||||
msgid ""
|
||||
"... revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "... 移除舊使用者的所有權限,然後刪除舊使用者"
|
||||
"… revoke all active privileges from the old one and delete it afterwards."
|
||||
msgstr "… 移除舊使用者的所有權限,然後刪除舊使用者"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1937
|
||||
msgid ""
|
||||
"... delete the old one from the user tables and reload the privileges "
|
||||
"… delete the old one from the user tables and reload the privileges "
|
||||
"afterwards."
|
||||
msgstr "... 從使用者資料表中刪除舊使用者,然後重新載入權限"
|
||||
msgstr "… 從使用者資料表中刪除舊使用者,然後重新載入權限"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1948
|
||||
msgid "Change Login Information / Copy User"
|
||||
msgstr "修改登錄資訊/複製使用者"
|
||||
|
||||
#: libraries/server_privileges.lib.php:1954
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "建立具有相同權限的新使用者然後 ..."
|
||||
msgid "Create a new user with the same privileges and …"
|
||||
msgstr "建立具有相同權限的新使用者然後 …"
|
||||
|
||||
#: libraries/server_privileges.lib.php:2231
|
||||
msgid "Column-specific privileges"
|
||||
@ -9810,11 +9810,11 @@ msgstr "已成功刪除選中的使用者"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:101
|
||||
msgid ""
|
||||
"If column type is \"enum\" or \"set\", please enter the values using this "
|
||||
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"format: 'a','b','c'…<br />If you ever need to put a backslash (\"\\\") or "
|
||||
"a single quote (\"'\") amongst those values, precede it with a backslash "
|
||||
"(for example '\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"如欄位類型是“enum”或“set”,請使用以下格式輸入:'a','b','c'...<br />如果需要輸"
|
||||
"如欄位類型是“enum”或“set”,請使用以下格式輸入:'a','b','c'…<br />如果需要輸"
|
||||
"入反斜槓(“\\”)或單引號(“'”),請在前面加上反斜槓(如 '\\\\xyz' 或 'a\\'b')"
|
||||
|
||||
#: libraries/tbl_columns_definition_form.inc.php:110
|
||||
@ -9843,11 +9843,11 @@ msgstr "轉換選項"
|
||||
#: libraries/tbl_columns_definition_form.inc.php:173
|
||||
msgid ""
|
||||
"Please enter the values for transformation options using this format: 'a', "
|
||||
"100, b,'c'...<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"100, b,'c'…<br />If you ever need to put a backslash (\"\\\") or a single "
|
||||
"quote (\"'\") amongst those values, precede it with a backslash (for example "
|
||||
"'\\\\xyz' or 'a\\'b')."
|
||||
msgstr ""
|
||||
"請使用此格式輸入轉換選項的值:'a',100,b,'c'...<br />如果您需要在值中輸入反斜"
|
||||
"請使用此格式輸入轉換選項的值:'a',100,b,'c'…<br />如果您需要在值中輸入反斜"
|
||||
"槓 (“\\”)或單引號(“'”),請在前面加上反斜槓 (如 '\\\\xyz' 或 'a\\'b')"
|
||||
|
||||
#: libraries/tbl_columns_definition_form.inc.php:411
|
||||
@ -10832,7 +10832,7 @@ msgid "Show only alert values"
|
||||
msgstr "顯示開啟的表"
|
||||
|
||||
#: server_status_variables.php:94
|
||||
msgid "Filter by category..."
|
||||
msgid "Filter by category…"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_variables.php:114
|
||||
@ -10963,9 +10963,9 @@ msgstr ""
|
||||
#: server_status_variables.php:407
|
||||
msgid ""
|
||||
"The number of requests to read the previous row in key order. This read "
|
||||
"method is mainly used to optimize ORDER BY ... DESC."
|
||||
"method is mainly used to optimize ORDER BY … DESC."
|
||||
msgstr ""
|
||||
"根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY ... "
|
||||
"根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY … "
|
||||
"DESC 的查詢"
|
||||
|
||||
#: server_status_variables.php:411
|
||||
|
||||
@ -91,7 +91,7 @@ function getFilterHtml($ServerStatusData)
|
||||
$retval .= '</div>';
|
||||
$retval .= '<div class="formelement">';
|
||||
$retval .= '<select id="filterCategory" name="filterCategory">';
|
||||
$retval .= '<option value="">' . __('Filter by category...') . '</option>';
|
||||
$retval .= '<option value="">' . __('Filter by category…') . '</option>';
|
||||
|
||||
foreach ($ServerStatusData->sections as $section_id => $section_name) {
|
||||
if (isset($ServerStatusData->categoryUsed[$section_id])) {
|
||||
@ -405,7 +405,7 @@ function getStatusVariablesDescriptions()
|
||||
),
|
||||
'Handler_read_prev' => __(
|
||||
'The number of requests to read the previous row in key order.'
|
||||
. ' This read method is mainly used to optimize ORDER BY ... DESC.'
|
||||
. ' This read method is mainly used to optimize ORDER BY … DESC.'
|
||||
),
|
||||
'Handler_read_rnd' => __(
|
||||
'The number of requests to read a row based on a fixed position.'
|
||||
|
||||
Loading…
Reference in New Issue
Block a user