From 2ff0e610fce1d8687f0901991c73d054ef6f4769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 3 Jun 2010 14:46:59 +0200 Subject: [PATCH 01/75] Fix some unicode problems with the script. --- scripts/update-from-po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/update-from-po b/scripts/update-from-po index 82dba5204..e39088ec7 100755 --- a/scripts/update-from-po +++ b/scripts/update-from-po @@ -67,11 +67,9 @@ CODE2LANG = { } if len(sys.argv) != 2: - print 'Usage: update-from-po PATH_TO_PO_FILES' + print 'Usage: update-from-po PO_FILES' sys.exit(1) -pofiles = os.listdir(sys.argv[1]) - f = file('lang/english-utf-8.inc.php', 'r') langmap = {} for line in f: @@ -80,7 +78,8 @@ for line in f: parts = line.split(' = ') langmap[parts[1].strip(';').strip('\'')] = parts[0].strip('$') -for pofile in pofiles: +for pofile_full in sys.argv[1:]: + pofile = os.path.basename(pofile_full) if pofile[-3:] != '.po': print 'Not a po file, skipping: %s' % pofile continue @@ -89,6 +88,7 @@ for pofile in pofiles: lang = CODE2LANG[pofile[:-3]] except KeyError: print 'Language for %s not defined!' % pofile + continue try: langfile = codecs.open('lang/%s-utf-8.inc.php' % lang, 'r', 'utf-8').readlines() @@ -97,7 +97,7 @@ for pofile in pofiles: continue print 'Updating %s from: %s' % (lang, pofile) - po = polib.pofile(os.path.join(sys.argv[1], pofile)) + po = polib.pofile(os.path.join(sys.argv[1], pofile_full)) for translation in po.translated_entries(): if translation.msgctxt is None: @@ -110,7 +110,7 @@ for pofile in pofiles: continue for i in xrange(len(langfile)): if langfile[i][:2 + keylen] == '$%s ' % key: - langfile[i] = '$%s = \'%s\';\n' % (key, msgstr) + langfile[i] = u'$%s = \'%s\';\n' % (key, msgstr) - out = file('lang/%s-utf-8.inc.php' % lang, 'w') - out.writelines([x.encode('utf-8') for x in langfile]) + out = codecs.open('lang/%s-utf-8.inc.php' % lang, 'w', 'utf-8') + out.writelines(langfile) From bf4fbb395a2ff3ac33272546d521904bf2b4cfee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 3 Jun 2010 14:47:12 +0200 Subject: [PATCH 02/75] Update translations from master branch. --- lang/arabic-utf-8.inc.php | 46 ++--- lang/dutch-utf-8.inc.php | 2 +- lang/slovenian-utf-8.inc.php | 378 +++++++++++++++++------------------ 3 files changed, 211 insertions(+), 215 deletions(-) diff --git a/lang/arabic-utf-8.inc.php b/lang/arabic-utf-8.inc.php index 362e4648e..c04780be7 100644 --- a/lang/arabic-utf-8.inc.php +++ b/lang/arabic-utf-8.inc.php @@ -88,6 +88,7 @@ $strBLOBRepositoryEnabled = 'مفعل'; $strBLOBRepositoryEnable = 'فعل'; $strBLOBRepositoryRepair = 'صلح'; $strBookmarkAllUsers = 'اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية'; +$strBookmarkCreated = 'تم إنشاء العلامة المرجعية %s'; $strBookmarkDeleted = 'لقد حذفت العلامة المرجعية.'; $strBookmarkLabel = 'علامة'; $strBookmarkQuery = 'علامة مرجعية SQL-استعلام'; @@ -126,11 +127,13 @@ $strConnections = 'اتصالات'; $strConstraintsForDumped = 'قيود الجداول المحفوظة'; $strConstraintsForTable = 'القيود للجدول'; $strCookiesRequired = 'يجب تفعيل دعم الكوكيز في هذه المرحلة.'; +$strCopyDatabaseOK = 'تم نسخ قاعدة البيانات %s إلى %s'; $strCopyTableOK = 'الجدول %s لقد تم نسخه إلى %s.'; $strCopyTableSameNames = 'لا يمكن نسخ الجدول إلى نفسه!'; $strCopyTable = 'نسخ الجدول إلى'; $strCopy = 'انسخ'; $strCouldNotKill = 'لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا.'; +$strCreateDatabaseBeforeCopying = 'CREATE DATABASE قبل النسخ'; $strCreateIndexTopic = 'تصميم فهرسه جديده'; $strCreateIndex = 'تصميم فهرسه على %s عمود'; $strCreateNewDatabase = 'تكوين قاعدة بيانات جديدة'; @@ -169,6 +172,7 @@ $strCheck = 'تحقق'; $strChoosePage = 'رجاء اختر صفحة لتعديلها'; $strDanish = 'الدنمركية'; +$strDatabaseEmpty = 'إسم قاعدة البيانات خالي!'; $strDatabaseExportOptions = 'خيارات تصدير قاعدة بيانات'; $strDatabaseHasBeenDropped = 'قاعدة بيانات %s محذوفه.'; $strDatabasesDropped = 'تم حذف قواعد البيانات %s بنجاح.'; @@ -182,7 +186,10 @@ $strDataDict = 'قاموس البيانات'; $strDataOnly = 'بيانات فقط'; $strData = 'بيانات'; $strDBComment = 'ملاحظة قاعدة البيانات: '; +$strDBCopy = 'إنسخ قاعدة البيانات إلى'; +$strDbIsEmpty = 'قاعدة البيانات فارغة!'; $strDbPrivileges = 'صلاحيات خاصة بقاعدة البيانات'; +$strDBRename = 'أعد تسمية قاعدة البيانات ﺇﻠﻰ'; $strDbSpecific = 'خاص بقاعدة بيانات'; $strDefaultValueHelp = 'للقيم الافتراضية، الرجاء أدخل قيمة مفردة، دون علامات هروب أو تنصيص، باستخدام التنسيق: a'; $strDefault = 'افتراضي'; @@ -204,7 +211,7 @@ $strDisplayPDF = 'إظهار بناء ملف PDF'; $strDoAQuery = 'تجعل "استعلام بواسطة المثال" (wildcard: "%")'; $strDocu = 'مستندات وثائقية'; $strDownloadFile = 'نزل الملف'; -$strDoYouReally = 'هل تريد التنفيذ حقا'; +$strDoYouReally = 'هل تريد حقا '; $strDropUsersDb = 'احذف قواعد البيانات التي لها نفس أسماء المستخدمين.'; $strDrop = 'حذف'; $strDumpingData = 'إرجاع أو استيراد بيانات الجدول'; @@ -225,6 +232,7 @@ $strEnd = 'نهاية'; $strEngines = 'محركات'; $strEnglishPrivileges = ' ملاحظه: اسم الامتياز لـMySQL يظهر ويقرأ باللغة الإنجليزية فقط '; $strEnglish = 'الإنجليزية'; +$strErrorRenamingTable = 'خطأ في إعادة تسمية الجدول %1$s إلى %2$s'; $strError = 'خطأ'; $strEsperanto = 'إسبرانتو'; $strEstonian = 'الإستونية'; @@ -293,6 +301,7 @@ $strId = 'رقم'; $strIgnore = 'تجاهل'; $strImportFiles = 'استورد الملفات'; $strImport = 'استورد'; +$strIndexesSeemEqual = 'الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما.'; $strIndexes = 'فهارس'; $strIndexHasBeenDropped = 'فهرسة محذوفة %s'; $strIndexName = 'اسم الفهرس :'; @@ -306,6 +315,8 @@ $strInsertAsNewRow = 'إدخال كتسجيل جديد'; $strInsert = 'إدخال'; $strInternalRelations = 'العلاقات الداخلية'; $strInUse = 'قيد الإستعمال'; +$strInvalidDatabase = 'قاعدة البيانات غير صالحة'; +$strInvalidTableName = 'اسم الجدول غير صالح'; $strJapanese = 'اليابانية'; $strJumpToDB = 'إذهب إلى قاعدة بيانات "%s".'; @@ -340,7 +351,7 @@ $strLoginInformation = 'بيانات الدخول'; $strLogin = 'دخول'; $strLogout = 'تسجيل خروج'; $strLogPassword = 'كلمة السر:'; -$strLogServer = 'خادم السجل'; +$strLogServer = 'الخادم:'; $strLogUsername = 'اسم المستخدم:'; $strMediaWiki = 'جدول ميدياويكي'; @@ -380,7 +391,7 @@ $strNone = 'لا شيء'; $strNoOptions = 'هذا التنسيق ليس له أي خيارات'; $strNoPassword = 'لا كلمة سر'; $strNoPermission = 'خادم الويب ليس لديه صلاحية لحفظ الملف %s.'; -$strNoPhp = 'بدون شيفرة PHP'; +$strNoPhp = 'بدون كود PHP'; $strNoPrivileges = 'امتياز غير موجود'; $strNoRights = 'ليس لديك الحقوق الكافية بأن تكون هنا الآن!'; $strNoSpace = 'لا توجد مساحة كافية لحفظ الملف %s.'; @@ -423,8 +434,9 @@ $strPersian = 'فارسية'; $strPhoneBook = 'دفتر الهاتف'; $strPHPVersion = ' PHP إصدارة'; $strPhp = 'أنشئ شيفرة PHP'; +$strPlayAudio = 'شغل الصوت'; $strPmaDocumentation = 'مستندات وثائقية لـ phpMyAdmin (بالإنجليزية)'; -$strPmaUriError = 'المتغير $cfg[\'PmaAbsoluteUri\'] يجب تعديله في ملف الكوفيك !'; +$strPmaUriError = 'المتغير $cfg[\'PmaAbsoluteUri\'] يجب تعديله في ملف التعريف !'; $strPolish = 'البولندية'; $strPortrait = 'طول الصفحة'; $strPos1 = 'بداية'; @@ -490,7 +502,8 @@ $strRelations = 'الروابط'; $strRelationView = 'عرض الروابط'; $strReloadingThePrivileges = 'قيد إعادة قراءة الصلاحيات.'; $strRemoveSelectedUsers = 'احذف المستخدمين المحددين'; -$strRenameTableOK = 'تم تغيير اسمهم إلى %s جدول%s'; +$strRenameDatabaseOK = 'تم إعادة تسمية قاعدة البيانات %s إلى %s'; +$strRenameTableOK = 'تم إعادة تسمية الجدول %s إلى %s'; $strRenameTable = 'تغيير اسم جدول إلى'; $strRepairTable = 'إصلاح الجدول'; $strRepair = 'صلح'; @@ -566,7 +579,7 @@ $strSetupOptionNone = '- لا شيء -'; $strSetupSQLQuery_Edit_name = 'تحرير'; $strSetupSQLQuery_Explain_name = 'اشرح SQL'; $strSetupSQLQuery_Refresh_name = 'حدث'; -$strSetupSQLQuery_ShowAsPHP_name = 'أنشئ شيفرة PHP'; +$strSetupSQLQuery_ShowAsPHP_name = 'أنشئ كود PHP'; $strSetupWarning = 'تحذير'; $strSetupZipDump_name = 'زيب'; $strShowAll = 'شاهد الكل'; @@ -630,7 +643,7 @@ $strTableOfContents = 'جدول المحتويات'; $strTableOptions = 'خيارات الجدول'; $strTables = '%s جدول (جداول)'; $strTableStructure = 'بنية الجدول'; -$strTable = 'الجدول '; +$strTable = 'الجدول'; $strTblPrivileges = 'صلاحيات خاصة بالجدول'; $strTextAreaLength = ' بسبب طوله,
فمن المحتمل أن هذا الحقل غير قابل للتحرير '; $strThai = 'التايلندية'; @@ -644,6 +657,7 @@ $strTrackingDate = 'تاريخ'; $strTrackingReportClose = 'أغلق'; $strTrackingStatusActive = 'نشط'; $strTrackingStatusNotActive = 'غير نشط'; +$strTrackingThCreated = 'أنشئ'; $strTrackingThUpdated = 'محدث'; $strTrackingThVersion = 'نسخة'; $strTrackingUsername = 'اسم المستخدم'; @@ -696,6 +710,8 @@ $strVar = 'متغير'; $strViewDumpDatabases = 'اعرض أو احفظ بناء قواعد البيانات.'; $strViewDumpDB = 'عرض بنية قاعدة البيانات'; $strViewDump = 'عرض بنية الجدول '; +$strViewImage = 'اعرض الصورة'; +$strViewVideo = 'اعرض الفيديو'; $strWebServerUploadDirectoryError = 'الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه.'; $strWebServerUploadDirectory = 'دليل تحميل الملفات على خادم الشبكة'; @@ -731,7 +747,6 @@ $strBLOBRepositoryDisableAreYouSure = 'Are you sure you want to disable all BLOB $strBLOBRepositoryDisableStrongWarning = 'You are about to DISABLE a BLOB Repository!'; //to translate $strBLOBRepositoryRemove = 'Remove BLOB Repository Reference'; //to translate $strBLOBRepositoryUpload = 'Upload to BLOB repository'; //to translate -$strBookmarkCreated = 'Bookmark %s created'; //to translate $strBookmarkReplace = 'Replace existing bookmark of same name'; //to translate $strBrowseDistinctValues = 'Browse distinct values'; //to translate $strBufferPoolActivity = 'Buffer Pool Activity'; //to translate @@ -751,10 +766,8 @@ $strConfigDefaultFileError = 'Could not load default configuration from: "%1$s"' $strConfigDirectoryWarning = 'Directory [code]config[/code], which is used by the setup script, still exists in your phpMyAdmin directory. You should remove it once phpMyAdmin has been configured.'; //to translate $strConnectionError = 'Cannot connect: invalid settings.'; //to translate $strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate -$strCopyDatabaseOK = 'Database %s has been copied to %s'; //to translate $strCouldNotConnectSource = 'Could not connect to the source'; //to translate $strCouldNotConnectTarget = 'Could not connect to the target'; //to translate -$strCreateDatabaseBeforeCopying = 'CREATE DATABASE before copying'; //to translate $strCreateRelation = 'Create relation'; //to translate $strCreateUserDatabase = 'Database for user'; //to translate $strCreateUserDatabaseName = 'Create database with same name and grant all privileges'; //to translate @@ -763,7 +776,6 @@ $strCreateUserDatabaseWildcard = 'Grant all privileges on wildcard name (usernam $strCustomColor = 'Custom color'; //to translate $strCzechSlovak = 'Czech-Slovak'; //to translate -$strDatabaseEmpty = 'The database name is empty!'; //to translate $strDatabaseHasBeenCreated = 'Database %1$s has been created.'; //to translate $strDatabaseNotExisting = '\'%s\' database does not exist.'; //to translate $strDatabase_src = 'Source database'; //to translate @@ -771,9 +783,6 @@ $strDatabase_trg = 'Target database'; //to translate $strDataDiff = 'Data Difference'; //to translate $strDataPages = 'Pages containing data'; //to translate $strDataSyn = 'Data Synchronization'; //to translate -$strDBCopy = 'Copy database to'; //to translate -$strDbIsEmpty = 'Database seems to be empty!'; //to translate -$strDBRename = 'Rename database to'; //to translate $strDefaultEngine = '%s is the default storage engine on this MySQL server.'; //to translate $strDefragment = 'Defragment table'; //to translate $strDeleteNoUsersSelected = 'No users selected for deleting!'; //to translate @@ -798,7 +807,6 @@ $strEngineUnsupported = 'This MySQL server does not support the %s storage engin $strErrorInZipFile = 'Error in ZIP archive:'; //to translate $strErrorRelationAdded = 'Error: Relation not added.'; //to translate $strErrorRelationExists = 'Error: relation already exists.'; //to translate -$strErrorRenamingTable = 'Error renaming table %1$s to %2$s'; //to translate $strErrorSaveTable = 'Error saving coordinates for Designer.'; //to translate $strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate $strExportImportToScale = 'Export/Import to scale'; //to translate @@ -849,7 +857,6 @@ $strImportSuccessfullyFinished = 'Import has been successfully finished, %d quer $strImportUploadInfoNotAvailable = 'Please be patient, the file is being uploaded. Details about the upload are not available.'; //to translate $strImportXLS = 'Excel 97-2003 XLS Workbook'; //to translate $strImportXLSX = 'Excel 2007 XLSX Workbook'; //to translate -$strIndexesSeemEqual = 'The indexes %1$s and %2$s seem to be equal and one of them could possibly be removed.'; //to translate $strIndexWarningTable = 'Problems with indexes of table `%s`';//to translate $strInnoDBAutoextendIncrement = 'Autoextend increment'; //to translate $strInnoDBAutoextendIncrementDesc = ' The increment size for extending the size of an autoextending tablespace when it becomes full.'; //to translate @@ -867,14 +874,12 @@ $strInvalidColumn = 'Invalid column (%s) specified!'; //to translate $strInvalidCSVFieldCount = 'Invalid field count in CSV input on line %d.'; //to translate $strInvalidCSVFormat = 'Invalid format of CSV input on line %d.'; //to translate $strInvalidCSVParameter = 'Invalid parameter for CSV import: %s'; //to translate -$strInvalidDatabase = 'Invalid database'; //to translate $strInvalidFieldAddCount = 'You have to add at least one field.'; //to translate $strInvalidFieldCount = 'Table must have at least one field.'; //to translate $strInvalidLDIImport = 'This plugin does not support compressed imports!'; //to translate $strInvalidRowNumber = '%d is not valid row number.'; //to translate $strInvalidServerHostname = 'Invalid hostname for server %1$s. Please review your configuration.'; //to translate $strInvalidServerIndex = 'Invalid server index: "%s"'; //to translate -$strInvalidTableName = 'Invalid table name'; //to translate $strJoins = 'Joins'; //to translate @@ -965,7 +970,6 @@ $strPDFReportExplanation = '(Generates a report containing the data of a single $strPDFReportTitle = 'Report title'; //to translate $strPhpArray = 'PHP array'; //to translate $strPHPExtension = 'PHP extension'; //to translate -$strPlayAudio = 'Play audio'; //to translate $strPleaseSelectPrimaryOrUniqueKey = 'Please select the primary key or a unique key'; //to translate $strPort = 'Port'; //to translate $strPrivDescAlterRoutine = 'Allows altering and dropping stored routines.'; //to translate @@ -998,7 +1002,6 @@ $strReload = 'Reload'; //to translate $strRemoteServer = 'Remote server'; //to translate $strRemoveCRLF = 'Remove CRLF characters within fields'; //to translate $strRemovePartitioning = 'Remove partitioning'; //to translate -$strRenameDatabaseOK = 'Database %s has been renamed to %s'; //to translate $strReplicationAddLines = 'Now, add the following lines at the end of your my.cnf and please restart the MySQL server afterwards.'; //to translate $strReplicationAddSlaveUser = 'Add slave replication user'; //to translate $strReplicationConfiguredMaster = 'This server is configured as master in a replication process.'; //to translate @@ -1592,7 +1595,6 @@ $strTrackingSQLExecution = 'SQL execution'; //to translate $strTrackingSQLExported = 'SQL statements exported. Please copy the dump or execute it.'; //to translate $strTrackingStatements = 'Tracking statements'; //to translate $strTrackingStructureSnapshot = 'Structure snapshot'; //to translate -$strTrackingThCreated = 'Created'; //to translate $strTrackingThLastVersion = 'Last version'; //to translate $strTrackingTrackDDStatements = 'Track these data definition statements:'; //to translate $strTrackingTrackDMStatements = 'Track these data manipulation statements:'; //to translate @@ -1627,9 +1629,7 @@ $strUseTabKey = 'Use TAB key to move from value to value, or CTRL+arrows to move $strVersionInformation = 'Version information'; //to translate $strViewHasAtLeast = 'This view has at least this number of rows. Please refer to %sdocumentation%s.'; //to translate $strViewHasBeenDropped = 'View %s has been dropped'; //to translate -$strViewImage = 'View image'; //to translate $strViewName = 'VIEW name'; //to translate -$strViewVideo = 'View video'; //to translate $strView = 'View'; //to translate $strWriteRequests = 'Write requests'; //to translate diff --git a/lang/dutch-utf-8.inc.php b/lang/dutch-utf-8.inc.php index 98ccbdef6..a45c1d5f0 100644 --- a/lang/dutch-utf-8.inc.php +++ b/lang/dutch-utf-8.inc.php @@ -1153,7 +1153,7 @@ $strSetupServers_port_name = 'Server poort'; $strSetupServers_relation_desc = 'Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/relation]relation-links[/a] te ondersteunen, suggestie: [kbd]pma_relation[/kbd]'; $strSetupServers_relation_name = 'Relatie tabel'; $strSetupServers_ShowDatabasesCommand_desc = 'SQL-commando om de beschikbare databases op te vragen'; -$strSetupServers_ShowDatabasesCommand_name = 'SHOW DATABASES commando'; +$strSetupServers_ShowDatabasesCommand_name = 'SHOW DATABASES opdracht'; $strSetupServers_SignonSession_desc = 'Zie [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authenticatie typen[/a] voor een voorbeeld'; $strSetupServers_SignonSession_name = 'Signon sessienaam'; $strSetupServers_SignonURL_name = 'Signon URL'; diff --git a/lang/slovenian-utf-8.inc.php b/lang/slovenian-utf-8.inc.php index d0ddadbce..c1e982940 100644 --- a/lang/slovenian-utf-8.inc.php +++ b/lang/slovenian-utf-8.inc.php @@ -52,10 +52,11 @@ $strAnalyze = 'Analiziraj'; $strAnalyzeTable = 'Analiziraj tabelo'; $strAnd = 'In'; $strAndThen = 'in potem'; +$strAngularLinks = 'Oglate povezave'; $strAnIndex = 'Na %s je dodan indeks'; -$strAnyHost = 'Katerikoli gostitelj'; -$strAny = 'Katerikoli'; -$strAnyUser = 'Katerikoli uporabnik'; +$strAnyHost = 'Kateri koli gostitelj'; +$strAny = 'Kateri koli'; +$strAnyUser = 'Kateri koli uporabnik'; $strApplyChanges = 'Uporabi izbrane spremembe'; $strApproximateCount = 'Morda je približno. Glej [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]'; $strAPrimaryKey = 'Na %s je dodan primarni ključ'; @@ -71,7 +72,7 @@ $strAutomaticLayout = 'Samodejna postavitev'; $strBack = 'Nazaj'; $strBaltic = 'Baltsko'; $strBeginCut = 'ZAČETEK IZREZA'; -$strBeginRaw = 'BEGIN RAW'; +$strBeginRaw = 'ZAČETEK NAVADNO'; $strBinaryDoNotEdit = 'Dvojiško - ne urejaj'; $strBinary = 'Dvojiško'; $strBinaryLog = 'Dvojiški dnevnik'; @@ -100,6 +101,13 @@ $strBookmarkView = 'Samo pogled'; $strBrowseDistinctValues = 'Prebrskaj različne vrednosti'; $strBrowseForeignValues = 'Prebrskaj tuje vrednosti'; $strBrowse = 'Prebrskaj'; +$strBufferPoolActivity = 'Dejavnost zaloge medpomnilnika'; +$strBufferPoolUsage = 'Uporaba zaloge medpomnilnika'; +$strBufferPool = 'Zaloga medpomnilnika'; +$strBufferReadMissesInPercent = 'Zgrešena branja v %'; +$strBufferReadMisses = 'Zgrešena branja'; +$strBufferWriteWaits = 'Čakajoča pisanja'; +$strBufferWriteWaitsInPercent = 'Čakajoča pisanja v %'; $strBulgarian = 'Bolgarsko'; $strBusyPages = 'Zasedene strani'; $strBzip = '"bzipano"'; @@ -268,7 +276,7 @@ $strEnabled = 'Omogočeno'; $strEncloseInTransaction = 'Vključi izvoz v transakcijo'; $strEndCut = 'KONEC IZREZA'; $strEnd = 'Konec'; -$strEndRaw = 'END RAW'; +$strEndRaw = 'KONEC NAVADNO'; $strEngineAvailable = '%s je na voljo na tem strežniku MySQL.'; $strEngineDisabled = '%s je onemogočeno za ta strežnik MySQL.'; $strEngines = 'Pogoni'; @@ -288,6 +296,7 @@ $strEvents = 'Dogodki'; $strExcelEdition = 'Izdaja za Excel'; $strExecuteBookmarked = 'Izvedi izbrano poizvedbo'; $strExplain = 'Razloži SQL stavek'; +$strExportImportToScale = 'Izvozi/Uvozi v razmerju'; $strExport = 'Izvozi'; $strExportMustBeFile = 'Izbrana vrsta izvoza mora biti shranjena v datoteko!'; $strExtendedInserts = 'Razširjene poizvedbe insert'; @@ -397,6 +406,7 @@ $strIndexWarningTable = 'Težave z indeksi tabele `%s`'; $strInnoDBAutoextendIncrementDesc = ' Velikost povečevanja pri razširjanju velikosti samorazširitvenega prostora v tabeli, ko ta postane poln.'; $strInnoDBAutoextendIncrement = 'Povečevanje pri samorazširitvi'; $strInnoDBBufferPoolSizeDesc = 'Velikost spominskega medpomnilnika, ki ga InnoDB uporablja za predpomnjenje podatkov in indeksov svojih tabel.'; +$strInnoDBBufferPoolSize = 'Velikost zaloge medpomnilnika'; $strInnoDBDataFilePath = 'Podatkovne datoteke'; $strInnoDBDataHomeDirDesc = 'Pogosti del poti mape za vse podatkovne datoteke InnoDB.'; $strInnoDBDataHomeDir = 'Domača mapa podatkov'; @@ -426,6 +436,7 @@ $strInvalidServerHostname = 'Neveljavno ime gostitelja za strežnik %1$s. Prosim $strInvalidTableName = 'Neveljavno ime tabele'; $strJapanese = 'Japonsko'; +$strJoins = 'Stiki'; $strJumpToDB = 'Preskoči na podatkovno zbirko "%s".'; $strJustDeleteDescr = '"Izbrisani" uporabniki lahko še vedno normalno dostopajo do strežnika, dokler ne osvežite privilegijev'; $strJustDelete = 'Samo izbriši uporabnike iz tabel privilegijev.'; @@ -448,10 +459,11 @@ $strLatexIncludeCaption = 'Vključi ime tabele'; $strLatexLabel = 'Označi ključ'; $strLaTeX = 'LaTeX'; $strLatexStructure = 'Struktura tabele __TABLE__'; +$strLatchedPages = 'Zapahnjene strani'; $strLatvian = 'Latvijsko'; $strLDI = 'CSV z uporabo LOAD DATA'; $strLDILocal = 'Uporabi ključno besedo LOCAL'; -$strLengthSet = 'Dolžina/Vrednosti*'; +$strLengthSet = 'Dolžina/Vrednosti'; $strLimitNumRows = 'Število vrstic na stran'; $strLinesTerminatedBy = 'Vrstice zaključene z'; $strLinkNotFound = 'Povezave ni mogoče najti'; @@ -469,7 +481,7 @@ $strLogServer = 'Strežnik:'; $strLogUsername = 'Uporabniško ime:'; $strLongOperation = 'Ta operacija lahko traja dolgo časa. Vseeno nadaljujem?'; -$strMaxConnects = 'največ sočasnih povezav'; +$strMaxConnects = 'Največ sočasnih povezav'; $strMaximalQueryLength = 'Največja dolžina ustvarjene poizvedbe'; $strMaximumSize = 'Največja velikost: %s%s'; $strMbExtensionMissing = 'Razširitev PHP mbstring ni bila najdena in kaže, da uporabljate večbajtni nabor znakov. Brez razširitve mbstring phpMyAdmin ni sposoben pravilno razcepiti nizov, kar lahko vodi v nepričakovane rezultate.'; @@ -480,7 +492,7 @@ $strMIME_available_transform = 'Razpoložljive pretvorbe'; $strMIME_description = 'Opis'; $strMIME_MIMEtype = 'Vrsta MIME'; $strMIME_nodescription = 'Za to pretvorbo ni na voljo opisa.
Za funkcije %s se pozanimajte pri avtorju.'; -$strMIME_transformation_note = 'Seznam razpoložljivih možnosti pretvorbe in pretvorbe vrst MIME boste videli, če kliknete na %sopise transformacij%s'; +$strMIME_transformation_note = 'Za seznam razpoložljivih možnosti pretvorbe in vrst MIME kliknite na %sopise transformacij%s'; $strMIME_transformation_options = 'Možnosti pretvorbe'; $strMIME_transformation_options_note = 'Vrednosti za možnosti pretvorbe vnesite v naslednji obliki: \'a\', 100, b,\'c\'...
Če želite med vrednosti vnesti poševnico nazaj ("\") ali enojni narekovaj ("\'"), morate pred ta znak postaviti (še eno) poševnico nazaj (npr. \'\\\\xyz\' ali \'a\\\'b\').'; $strMIME_transformation = 'Pretvorba z brskalnikom'; @@ -496,12 +508,14 @@ $strMoveTableSameNames = 'Tabele ni mogoče premakniti same vase!'; $strMultilingual = 'večjezično'; $strMyISAMDataPointerSizeDesc = 'Privzeta velikost kazalca v bajtih, ki se naj uporablja s CREATE TABLE za tabele MyISAM, ko možnost MAX_ROWS ni določena.'; $strMyISAMDataPointerSize = 'Velikost kazalca podatkov'; +$strMyISAMMaxExtraSortFileSizeDesc = 'Če bi bila začasna datoteka, uporabljena za hitro ustvarjanje indeksa MyISAM, večja kot uporabljena vrednost predpomnilnika ključev določena tukaj, raje izberite način predpomnilnika ključev.'; $strMyISAMMaxExtraSortFileSize = 'Največja velikost začasnih datotek ob ustvarjanju indeksa'; $strMyISAMMaxSortFileSizeDesc = 'Največja velikost začasnih datotek, ki jih lahko MySQL uporablja, ko ponovno ustvarja indeks MyISAM (med REPAIR TABLE, ALTER TABLE ali LOAD DATA INFILE).'; $strMyISAMMaxSortFileSize = 'Največja velikost začasnih razvrstitvenih datotek'; $strMyISAMRecoverOptionsDesc = 'Način za samodejno obnovitev sesutih tabel MyISAM, ko je določen preko zagonske možnosti strežnika --myisam-recover.'; $strMyISAMRecoverOptions = 'Način samodejne obnovitve'; -$strMyISAMRepairThreads = 'Popravi niti'; +$strMyISAMRepairThreadsDesc = 'Če je vrednost večja od 1, so indeksi tabel MyISAM med popravljanjem zaradi postopka razvrščanja ustvarjeni vzporedno (vsak indeks v svoji niti).'; +$strMyISAMRepairThreads = 'Niti popravljanja'; $strMyISAMSortBufferSizeDesc = 'Medpomnilnik, ki je dodeljen razvrščanju indeksov MyISAM med REPAIR TABLE ali ustvarjanju indeksov s CREATE INDEX ali ALTER TABLE.'; $strMyISAMSortBufferSize = 'Velikost medpomnilnika razvrščanja'; $strMysqlClientVersion = 'Različica odjemalca MySQL'; @@ -541,6 +555,7 @@ $strNoTablesFound = 'V podatkovni zbirki ni mogoče najti tabel.'; $strNoThemeSupport = 'Podprta ni nobena tema; prosimo, preverite vašo konfiguracijo in/ali dodajte teme v mapo %s.'; $strNotNumber = 'To ni število!'; $strNotOK = 'ni v redu'; +$strNotPresent = 'ni prisotno'; $strNotSet = 'Tabele %s ni mogoče najti ali pa ni v %s'; $strNoUsersFound = 'Ni mogoče najti uporabnika(ov).'; $strNoValidateSQL = 'Preskoči preverjanje pravilnosti SQL stavka'; @@ -564,6 +579,7 @@ $strOr = 'Ali'; $strOverhead = 'Presežek'; $strOverwriteExisting = 'Prepiši obstoječo(e) datoteko(e)'; +$strPacked = 'Stisnjeno'; $strPageNumber = 'Številka strani:'; $strPagesToBeFlushed = 'Strani za izplakniti'; $strPaperSize = 'Velikost papirja'; @@ -578,7 +594,26 @@ $strPassword = 'Geslo'; $strPasswordHashing = 'Šifriranje gesel'; $strPasswordChanged = 'Geslo za %s je uspešno spremenjeno.'; $strPasswordNotSame = 'Gesli se ne ujemata!'; +$strPBXTDataLogThresholdDesc = 'Največja velikost podatkovnega dnevnika. Privzeta vrednost je 64 MB. PBXT lahko ustvari največ 32000 podatkovnih dnevnikov, katere uporabljajo vse tabele. Tako se lahko ta vrednost poveča za povečanje skupne količine podatkov, ki so lahko shranjeni v zbirki podatkov.'; +$strPBXTDataLogThreshold = 'Omejitev podatkovnega dnevnika'; +$strPBXTGarbageThresholdDesc = 'Odstotek smeti v dnevniški datoteki, preden je ta stisnjena. Vrednost je med 1 in 99. Privzeto je 50.'; +$strPBXTGarbageThreshold = 'Omejitev smeti'; +$strPBXTCheckpointFrequencyDesc = 'Količina podatkov, zapisanih v dnevnik transakcij, preden se izvede nadzorna točka. Privzeta vrednost je 24 MB.'; +$strPBXTCheckpointFrequency = 'Pogostnost nadzornih točk'; +$strPBXTIndexCacheSizeDesc = 'Količina pomnilnika uporabljena za predpomnjenje indeksov. Privzeta vrednost je 32 MB. Tukaj dodeljen pomnilnik se uporablja samo za predpomnjenje strani indeksov.'; $strPBXTIndexCacheSize = 'Velikost predpomnilnika indeksov'; +$strPBXTLogBufferSizeDesc = 'Velikost medpomnilnika uporabljenega med pisanjem podatkovnega dnevnika. Privzeto je 256 MB. Pogon vsaki niti dodeli en medpomnilnik, vendar samo v primeru, če mora nit zapisovati v podatkovni dnevnik.'; +$strPBXTLogBufferSize = 'Velikost medpomnilnika dnevnikov'; +$strPBXTLogCacheSizeDesc = 'Količina spomina dodeljenega predpomnilniku dnevnika transakcij, ki se uporablja za predpomnjenje ob podatkih dnevnika transakcij. Privzeto je 16 MB.'; +$strPBXTLogCacheSize = 'Velikost predpomnilnika dnevnika'; +$strPBXTLogFileCountDesc = 'Število datotek transakcijskih dnevnikov (pbxt/system/xlog*.xt), ki jih vzdržuje sistem. Če število dnevnikov presega to vrednost, bodo stari dnevniki izbrani, v naprotnem primeru pa bodo preimenovani in dodeljena jim bo naslednja najvišja številka.'; +$strPBXTLogFileCount = 'Število dnevniških datotek'; +$strPBXTLogFileThresholdDesc = 'Velikost dnevnika transakcij pred prehodom in ustvarjanjem novega dnevnika. Privzeta vrednost je 16 MB.'; +$strPBXTLogFileThreshold = 'Omejitev dnevniške datoetke'; +$strPBXTRecordCacheSizeDesc = 'Količina dodeljenega spomina zapisljivemu predpomnilniku, uporabljenemu za predpomnjenje podatkov tabele. Privzeta vrednost je 32 MB. Ta spomin se uporablja za predpomnjenje sprememb datotek oprimkov podatkov (.xtd) in kazalcev vrstic (.xtr).'; +$strPBXTRecordCacheSize = 'Velikost predpomnilnika zapisov'; +$strPBXTTransactionBufferSizeDesc = 'Velikost globalnega medpomnilnika dnevnika transakcij (pogon dodeli dva medpomnilnika te velikosti). Privzeto je 1 MB.'; +$strPBXTTransactionBufferSize = 'Velikost medpomnilnika transakcij'; $strPdfDbSchema = 'Shema podatkovne baze "%s" - Stran %s'; $strPdfInvalidTblName = 'Tabela "%s" ne obstaja!'; $strPdfNoTables = 'Ni tabel'; @@ -670,6 +705,7 @@ $strQueryTime = 'Poizvedba je potrebovala %01.4f s'; $strQueryType = 'Vrsta poizvedbe'; $strQueryWindowLock = 'Ne prepiši te poizvedbe od zunaj'; +$strReadRequests = 'Zahtev branja'; $strRebuild = 'Ponovno sestavi'; $strReceived = 'Prejeto'; $strRecommended = 'priporočeno'; @@ -696,11 +732,44 @@ $strRepairTable = 'Popravi tabelo'; $strReplaceNULLBy = 'Zamenjaj NULL z'; $strReplaceTable = 'Podatke v tabeli zamenjaj z datoteko'; $strReplicationAddLines = 'Sedaj dodajte naslednje vrstice na konec razdelka [mysqld] v vašem my.cnf in nato, prosimo, ponovno zaženite strežnik MySQL.'; +$strReplicationAddSlaveUser = 'Dodaj uporabnika podvojevanja podrejencev'; +$strReplicationConfiguredMaster = 'Ta strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja.'; +$strReplicationControlSlave = 'Upravljaj podrejenca:'; +$strReplicationErrorGetPosition = 'Ne morem prebrati položaja dnevnika glavnega strežnika. Možne težave s privilegiji na glavnem strežniku.'; +$strReplicationErrorMasterConnect = 'Ne morem se povezati z glavnim strežnikom %s.'; +$strReplicationChangedSuccesfully = 'Glavni strežnik je uspešno spremenjen v %s'; +$strReplicationMasterConfiguration = 'Konfiguracija glavnega strežnika'; +$strReplicationMasterChooseAll = 'Podvoji vse zbirke podatkov; prezri:'; +$strReplicationMasterChooseIgn = 'Prezri vse zbirke podatkov; podvoji:'; +$strReplicationMasterChooseMode = 'Ta strežnik ni konfiguriran kot glavni strežnik v postopku podvojevanja. Izbirate lahko med ali podvojevanjem vseh zbirk podatkov in prezrtjem nekaterih (uporabno, če želite podvojiti večino zbirk podatkov) ali prezrtjem vseh zbirk podatkov po privzetem in podvojitvijo samo določenih zbirk podatkov. Prosimo, izberite način:'; +$strReplicationMaster = 'Podvojevanje glavnega strežnika'; $strReplication = 'Podvojevanje'; +$strReplicationRestartServer = 'Ko enkrat ponovno zažetene strežnik MySQL, prosimo, kliknite na gumb Pojdi. Nato bi morali videti sporočilo, ki vam sporoča, da ta strežnik je konfiguriran kot glavni strežnik'; $strReplicationSelectDatabases = 'Prosimo, izberite zbirke podatkov:'; +$strReplicationServernConfiguredMaster = 'Ta strežnik ni konfiguriran kot glavni strežnik v postopku podvojevanja. Ali ga želite konfigurirati?'; +$strReplicationShowConnectedSlavesNote = 'Samo podrejenci, ki so bili zagnani z možnostjo --report-host=host_name, so vidni na tem seznamu.'; +$strReplicationShowConnectedSlaves = 'Pokaži povezane podrejence'; +$strReplicationSlaveConfiguration = 'Konfiguracija podrejencev'; +$strReplicationSlaveConfigured = 'Strežnik je konfiguriran kot podrejenec v postopku podvojevanja. Ali želite:'; +$strReplicationSlaveErrorManagement = 'Upravljanje napak:'; +$strReplicationSlaveChangeMaster = 'Spremeni ali ponovno konfiguriraj glavni strežnik'; +$strReplicationSlaveIOThread = 'Nit IO samo %s'; +$strReplicationSlaveIOThreadNotRunning = 'Podrejenčeva nit IO ni zagnana!'; +$strReplicationSlaveNotConfigured = 'Ta strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ali ga želite konfigurirati?'; +$strReplicationSlave = 'Podvojevanje podrejencev'; +$strReplicationSlaveReset = 'Ponovno zaženi podrejenca'; +$strReplicationSlaveSeeStatus = 'Oglej si tabelo stanj podrejencev'; $strReplicationSlaveSkipCurrentError = 'Preskoči trenutno napako'; $strReplicationSlaveSkipNextErrors = 'napak.'; $strReplicationSlaveSkipNext = 'Preskoči naslednjo'; +$strReplicationSlaveSQLThread = 'Nit SQL samo %s'; +$strReplicationSlaveSQLThreadNotRunning = 'Podrejenčeva nit SQL ni zagnana!'; +$strReplicationStatus_master = 'Stanje glavnega strežnika'; +$strReplicationStatus_slave = 'Stanje podrejenca'; +$strReplicationStatus = 'Stanje podvojevanja'; +$strReplicationSynchronize = 'Sinhroniziraj zbirke podatkov z glavnim strežnikom'; +$strReplicationUnableToChange = 'Ne morem spremeniti glavnega strežnika'; +$strReplicationUnknownError = 'Neznana napaka'; $strReset = 'Ponastavi'; $strResourceLimits = 'Omejitve virov'; $strRestartInsertion = 'Ponovno začni vstavljanje z %s vrsticami'; @@ -768,6 +837,8 @@ $strSessionValue = 'Vrednost seje'; $strSetEnumVal = 'Če je polje vrste "enum" ali "set", navedite vrednosti v obliki: \'a\',\'b\',\'c\'...
Če želite med vrednostmi uporabiti poševnico ("\") ali enojni narekovaj ("\'"), pred tem znakom vnesite poševnico (n.pr. \'\\\\xyz\' ali \'a\\\'b\').'; $strSettings = 'nastavitve'; $strSetupAllowAnywhereRecoding_name = 'Omogoči pretvarjanje nabora znakov'; +$strSetupAllowArbitraryServer_desc = 'Če je omogočeno, lahko uporabnik vstopi v kateri koli strežnik MySQL v prijavnem obrazcu z overovitvijo piškotkov'; +$strSetupAllowArbitraryServerMsg = 'Ta [a@?page=form&formset=features#tab_Security]možnost[/a] naj bo onemogočena, saj omogoča napadalcem, da se z načinom bruteforce prijavijo v kateri koli strežnik MySQL. Če menite, da je to potrebno, uporabite [a@?page=form&formset=features#tab_Security]seznam zaupanih proxyjev[/a]. Kakor koli, zaščita temelječa na IP ni zanesljiva, če vaš IP pripada ISP-ju, na katerega je povezanih tisoče uporabnikov, vključno z vami.'; $strSetupAllowArbitraryServer_name = 'Dovoli prijavo v kateri koli strežnik MySQL'; $strSetupAllowUserDropDatabase_name = 'Pokaži povezavo »Zavrzi zbirko podatkov« normalnim uporabnikom'; $strSetupblowfish_secret_desc = 'Skrivno geslo, ki se uporabi pri šifriranju piškotkov v overovitvi [kbd]cookie[/kbd]'; @@ -838,6 +909,10 @@ $strSetupFalse = 'ne'; $strSetupForceSSL_desc = 'Vsili varno povezavo med uporabo phpMyAdmin'; $strSetupForceSSLMsg = 'Ta [a@?page=form&formset=features#tab_Security]možnost[/a] naj bo omogočena, če jo vaš spletni strežnik podpira'; $strSetupForceSSL_name = 'Vsili povezavo SSL'; +$strSetupForeignKeyDropdownOrder_desc = 'Vrstni red za predmete na spustnem seznamu tujih ključev; [kbd]content[/kbd] je sklicevan podatek, [kbd]id[/kbd] je vrednost ključa'; +$strSetupForeignKeyDropdownOrder_name = 'Vrstni red spustnega seznama tujih ključev'; +$strSetupForeignKeyMaxLimit_desc = 'Uporabljen bo spustni seznam, če je prisotnih manj elementov'; +$strSetupForeignKeyMaxLimit_name = 'Omejitev tujih ključev'; $strSetupForm_Browse_desc = 'Prilagodite način brskanja'; $strSetupForm_Browse = 'Način brskanja'; $strSetupForm_Edit_desc = 'Prilagodite način urejanja'; @@ -866,7 +941,10 @@ $strSetupForm_Security = 'Varnost'; $strSetupForm_Server_config_desc = 'Napredne nastavitve strežnika; ne spreminjajte teh možnosti, če ne veste čemu služijo'; $strSetupForm_Server_config = 'Konfiguracija strežnika'; $strSetupForm_Server_desc = 'Vnesite parametre povezave s strežnikom'; +$strSetupForm_Server_login_options_desc = 'Vnesite prijavne možnosti za overovitev signon'; +$strSetupForm_Server_login_options = 'Prijavne možnosti signon'; $strSetupForm_Server = 'Osnovne nastavitve'; +$strSetupForm_Server_pmadb_desc = 'Konfigurira zbirko podatkov phpMyAdmin za pridobitev dostopa do dodatnih funkcij, glej [a@../Documentation.html#linked-tables]infrastrukturo povezanih tabel[/a] v dokumentaciji'; $strSetupFormset_customization = 'Prilagoditev'; $strSetupFormset_export = 'Prilagodi možnosti izvoza'; $strSetupFormset_features = 'Lastnosti'; @@ -928,8 +1006,14 @@ $strSetupLetUserChoose = 'naj uporabnik izbere'; $strSetupLightTabs_desc = 'Uporabi grafično manj zahtevne zavihke'; $strSetupLightTabs_name = 'Lahki zavihki'; $strSetupLoad = 'Naloži'; +$strSetupLoginCookieDeleteAll_desc = 'Če je TRUE, odjava izbriše piškotke za vse strežnike; če je nastavljeno na FALSE, se odjava izvrši samo za trenutni strežnik. Nastavitev FALSE lahko hitro povzroči pozabljanje odjavljanja iz ostalih strežnikov, ko ste povezani na več strežnikov.'; $strSetupLoginCookieDeleteAll_name = 'Izbriši vse piškotke ob odjavi'; +$strSetupLoginCookieRecall_desc = 'Določi, ali se naj prejšnji prijavni podatki v načinu overovitve piškotkov prikličejo ali ne'; +$strSetupLoginCookieRecall_name = 'Prikliči uporabniško ime'; +$strSetupLoginCookieStore_desc = 'Določa, kako dolgo (v sekundah) naj bo prijavni piškotek shranjen v brskalniku. Privzeta vrednost 0 pomeni, da bo shranjen samo za obstoječo sejo in bo izbrisan takoj, ko zaprete okno brskalnika. To je priporočeno za okolja, ki jim ne zaupate.'; +$strSetupLoginCookieStore_name = 'Shranjevanje prijavnih piškotkov'; $strSetupLoginCookieValidity_desc = 'Določa, kako dolgo (v sekundah) je prijavni piškotek veljaven'; +$strSetupLoginCookieValidityMsg = '[a@?page=form&formset=features#tab_Security]Veljavnost prijavnega piškotka[/a] naj bo nastavljena na največ 1800 sekund (30 minut). Vrednosti večje od 1800 lahko predstavljajo varnostno tveganje, kot je pretvarjanje za drugo osebo.'; $strSetupLoginCookieValidity_name = 'Veljavnost prijavnega piškotka'; $strSetupMaxDbList_desc = 'Največje število podatkovnih zbirk prikazanih v levem okvirju in na seznamu zbirk podatkov'; $strSetupMaxDbList_name = 'Največ podatkovnih zbirk'; @@ -941,6 +1025,7 @@ $strSetupMaxTableList_desc = 'Največje število tabel prikazanih na seznamu tab $strSetupMaxTableList_name = 'Največ tabel'; $strSetupMemoryLimit_desc = 'Število bajtov, ki jih skript lahko dodeli, npr. [kbd]32M[/kbd] ([kbd]0[/kbd] za neomejeno)'; $strSetupMemoryLimit_name = 'Omejitev spomina'; +$strSetupNavigationBarIconic_name = 'Ikonska navigacijska vrstica'; $strSetupNewServer = 'Nov strežnik'; $strSetupNoServers = 'Ni konfiguriranih strežnikov'; $strSetupOBGzip_desc = 'Uporabi izhod medpomnjenja GZip za povečano hitrost v prenosih HTTP'; @@ -952,8 +1037,10 @@ $strSetupOverview = 'Pregled'; $strSetupPersistentConnections_desc = 'Uporabi vztrajne povezave s podatkovnimi zbirkami MySQL'; $strSetupPersistentConnections_name = 'Vztrajne povezave'; $strSetupPropertiesIconic_desc = 'Uporabi samo ikone, samo besedilo ali oboje'; +$strSetupPropertiesIconic_name = 'Ikonski posegi tabel'; $strSetupProtectBinary_desc = 'Prepeči urejanje polj BLOB in BINARY'; $strSetupProtectBinary_name = 'Zaščiti dvojiška polja'; +$strSetupQueryHistoryDB_desc = 'Omogočite, če želite zgodovino poizvedb temelječo na zbirki podatkov (potrebuje pmadb). Če je onemogočeno, se za prikaz zgodovine poizvedb uporabi rutina JavaScript (ki se izgubi ob zaprtju okna).'; $strSetupQueryHistoryDB_name = 'Trajna zgodovina poizvedb'; $strSetupQueryHistoryMax_desc = 'Koliko poizvedb je hranjenih v zgodovini'; $strSetupQueryHistoryMax_name = 'Dolžina zgodovine poizvedb'; @@ -962,9 +1049,27 @@ $strSetupQueryWindowDefTab_name = 'Privzet zavihek okna za poizvedbe'; $strSetupRecodingEngine_desc = 'Določi katere funkcije bodo uporabljene za pretvorbo nabora znakov'; $strSetupRecodingEngine_name = 'Pogon rekodiranja'; $strSetupRestoreDefaultValue = 'Povrni privzeto vrednost'; +$strSetupRevertErroneousFields = 'Poskusi povrniti zmotna polja na njihove privzete vrednosti'; $strSetupSaveDir_desc = 'Mapa, kamor se lahko na strežnik shranijo izvozi'; $strSetupSaveDir_name = 'Mapa za shranjevanje'; +$strSetupServerAuthConfigMsg = 'Nastavili ste vrsto overovitve [kbd]config[/kbd] in vključili uporabniško ime in geslo za samodejno prijavo, kar ni zaželena možnost za gostitelje aktivnih strani. Vsakdo, ki ve ali ugane vaš URL phpMyAdmina, lahko neposredno dostopa do vaše plošče phpMyAdmin. Nastavite [a@?page=servers&mode=edit&id=%1$d#tab_Server]vrsto overovitve[/a] na [kbd]cookie[/kbd] ali [kbd]http[/kbd].'; +$strSetupServerExtensionMsg = 'Zaradi zmogljivostnih razlogov uporabljajte mysqli'; +$strSetupServerNoPasswordMsg = 'Dovoljujete povezavo s strežnikom brez gesla.'; $strSetupServersAdd = 'Dodaj nov strežnik'; +$strSetupServers_AllowDeny_order_desc = 'Pustite prazno, če se ne uporablja'; +$strSetupServers_AllowDeny_order_name = 'Zaporedje overovitve gostitelja'; +$strSetupServers_AllowDeny_rules_desc = 'Pustite prazno za privzeto'; +$strSetupServers_AllowDeny_rules_name = 'Pravila overovitve gostitelja'; +$strSetupServers_AllowNoPassword_name = 'Dovoli prijave brez gesla'; +$strSetupServers_AllowRoot_name = 'Dovoli prijavo root'; +$strSetupServers_auth_swekey_config_desc = 'Pot konfiguracijske datoteke za [a@http://swekey.com]strojno overovitev SweKey[/a] (se ne nahaja v korenski mapi dokumentov; predlagano: /etc/swekey.conf)'; +$strSetupServers_auth_swekey_config_name = 'Konfiguracijska datoteka SweKey'; +$strSetupServers_auth_type_desc = 'Način overovitve za uporabo'; +$strSetupServers_auth_type_name = 'Vrsta overovitve'; +$strSetupServers_bookmarktable_desc = 'Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/bookmark]zaznamkov[/a]; predlagano: [kbd]pma_bookmark[/kbd]'; +$strSetupServers_bookmarktable_name = 'Tabela zaznamkov'; +$strSetupServers_column_info_desc = 'Pustite prazno, če ne želite komentarjev/vrst mime stolpcev; predlagano: [kbd]pma_column_info[/kbd]'; +$strSetupServers_column_info_name = 'Tabela informacij stolpcev'; $strSetupServers_compress_desc = 'Stisni povezavo s strežnikom MySQL'; $strSetupServers_compress_name = 'Stisni povezavo'; $strSetupServers_connect_type_desc = 'Način povezave s strežnikom; pustite [kbd]tcp[/kbd], če niste prepričani'; @@ -972,24 +1077,53 @@ $strSetupServers_connect_type_name = 'Vrsta povezave'; $strSetupServers_controlpass_name = 'Geslo krmilnega uporabnika'; $strSetupServers_controluser_desc = 'Posebni uporabnik MySQL, konfiguriran z omejenimi dovoljenji; več informacij je na voljo na [a@http://wiki.phpmyadmin.net/pma/controluser]wikiji[/a]'; $strSetupServers_controluser_name = 'Krmilni uporabnik'; -$strSetupServers_CountTables_desc = 'Preštej tabele, ko prikazujem seznam podatkovnih zbirk'; +$strSetupServers_CountTables_desc = 'Preštej tabele med prikazovanjem seznama podatkovnih zbirk'; $strSetupServers_CountTables_name = 'Preštej tabele'; -$strSetupServers_designer_coords_desc = 'Pustite prazno, če ne želite podpore Oblikovalnika, predlagano: [kbd]pma_designer_coords[/kbd]'; +$strSetupServers_designer_coords_desc = 'Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: [kbd]pma_designer_coords[/kbd]'; $strSetupServers_designer_coords_name = 'Tabela Oblikovalnika'; +$strSetupServers_DisableIS_desc = 'Več informacij na [a@http://sf.net/support/tracker.php?aid=1849494]sledilniku hroščev PMA[/a] in[a@http://bugs.mysql.com/19588]hroščih MySQL[/a]'; $strSetupServers_DisableIS_name = 'Onemogoči uporabo INFORMATION_SCHEMA'; +$strSetupServerSecurityInfoMsg = 'Če menite, da je to potrebno, uporabite dodatne nastavitve zaščite – nastavitve [a@?page=servers&mode=edit&id=%1$d#tab_Server_config]overovitve gostitelja[/a] in [a@?page=form&formset=features#tab_Security]seznam zaupanih proxyjev[/a]. Kakor koli, zaščita temelječa na IP ni zanesljiva, če vaš IP pripada ISP-ju, na katerega je povezanih tisoče uporabnikov, vključno z vami.'; $strSetupServersEdit = 'Uredi strežnik'; +$strSetupServers_extension_desc = 'Katera razširitev PHP naj se uporablja; uporabite mysqli, če je podprt'; +$strSetupServers_extension_name = 'Razširitev PHP za uporabo'; +$strSetupServers_hide_db_desc = 'Skrije zbirke podatkov, ki se ujemajo z običajnim izrazom (PCRE)'; $strSetupServers_hide_db_name = 'Skrij zbirke podatkov'; +$strSetupServers_history_desc = 'Pustite prazno, če ne želite podpore zgodovine poizvedb SQL; predlagano: [kbd]pma_history[/kbd]'; +$strSetupServers_history_name = 'Tabela zgodovine poizvedb SQL'; $strSetupServers_host_desc = 'Ime gostitelja, kjer teče strežnik MySQL'; $strSetupServers_host_name = 'Ime gostitelja strežnika'; $strSetupServers_LogoutURL_name = 'Odjavni URL'; $strSetupServers_nopassword_desc = 'Poskusi se povezati brez gesla'; $strSetupServers_nopassword_name = 'Poveži se brez gesla'; +$strSetupServers_only_db_name = 'Prikaži samo navedene zbirke podatkov'; +$strSetupServers_password_name = 'Geslo za overovitev config'; +$strSetupServers_pdf_pages_desc = 'Pustite prazno, če ne želite podpore PDF-sheme; predlagano: [kbd]pma_pdf_pages[/kbd]'; +$strSetupServers_pdf_pages_name = 'PDF-shema: tabele strani'; +$strSetupServers_pmadb_desc = 'Zbirka podatkov uporabljena za relacije, zaznamke in funkcije PDF. Oglejte si [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] za vse informacije. Pustite prazno, če ne želite podpore. Predlagano: [kbd]phpmyadmin[/kbd]'; $strSetupServers_pmadb_name = 'Podatkovna zbirka PMA'; +$strSetupServers_port_desc = 'Vrata, na katera naj bo strežnik MySQL priključen; pustite prazno za privzeto'; $strSetupServers_port_name = 'Vrata strežnika'; +$strSetupServers_relation_desc = 'Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/relation]relacijskih povezav[/a]; priporočeno: [kbd]pma_relation[/kbd]'; $strSetupServers_relation_name = 'Relacijska tabela'; +$strSetupServers_ShowDatabasesCommand_desc = 'Ukaz SQL za pridobitev razpoložljivih zbirk podatkov'; +$strSetupServers_ShowDatabasesCommand_name = 'Ukaz SHOW DATABASES'; +$strSetupServers_SignonSession_desc = 'Oglejte si [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]vrste overovitev[/a] za primer'; +$strSetupServers_SignonSession_name = 'Ime seje signon'; +$strSetupServers_SignonURL_name = 'URL signon'; +$strSetupServerSslMsg = 'Uporabite povezave SSL, če jih vaš spletni strežnik podpira'; +$strSetupServers_socket_desc = 'Vtičnica na katero je povezan strežnik MySQL; pustite prazno za privzeto'; $strSetupServers_socket_name = 'Vtičnica strežnika'; $strSetupServers_ssl_desc = 'Omogoči SSL za povezavo s strežnikom MySQL'; $strSetupServers_ssl_name = 'Uporabi SSL'; +$strSetupServers_table_coords_desc = 'Pustite prazno, če ne želite podpore PDF-sheme; predlagano: [kbd]pma_table_coords[/kbd]'; +$strSetupServers_table_coords_name = 'PDF-shema: koordinate tabel'; +$strSetupServers_user_desc = 'Pustite prazno, če ne uporabljate overovitve config'; +$strSetupServers_user_name = 'Uporabnik za overovitev config'; +$strSetupServers_verbose_desc = 'Uporabniku prijazen opis tega strežnika. Pustite prazno, če se naj namesto tega prikaže ime gostitelja.'; +$strSetupServers_verbose_check_desc = 'Onemogočite, če veste, da so vaše tabele pma_* ažurirane. To prepreči preverjanja združljivosti in tako poveča zmogljivost.'; +$strSetupServers_verbose_check_name = 'Preverjanje razširitve'; +$strSetupServers_verbose_name = 'Razširjeno ime tega strežnika'; $strSetupSetValue = 'Določi vrednost: %s'; $strSetupShowAll_desc = 'Ali se naj uporabniku prikaže gumb "prikaži vse (zapise)"'; $strSetupShowAll_name = 'Dovoli prikaz vseh vrstic'; @@ -998,6 +1132,7 @@ $strSetupShowForm = 'Pokaži obrazec'; $strSetupShowFunctionFields_desc = 'Prikaže polja funkcij v načinu urejanja/vstavljanja'; $strSetupShowFunctionFields_name = 'Prikaži polja funkcij'; $strSetupShowHiddenMessages = 'Prikaži skrita sporočila (#MSG_COUNT)'; +$strSetupShowChgPassword_desc = 'Pomnite, da omogočanje tega nima učinka z načinom overovitve [kbd]config[/kbd], saj je geslo vgrajeno v konfiguracijsko datoteko; to ne omejuje možnosti izvedbe enakega ukaza neposredno'; $strSetupShowChgPassword_name = 'Pokaži obrazec za spremembo gesla'; $strSetupShowPhpInfo_desc = 'Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]'; $strSetupShowPhpInfo_name = 'Prikaži povezavo phpinfo()'; @@ -1008,8 +1143,10 @@ $strSetupShowStats_desc = 'Dovoli prikaz statistike podatkovne zbirke in tabele $strSetupShowStats_name = 'Pokaži statistiko'; $strSetupShowTooltipAliasDB_desc = 'Če so zaslonski namigi omogočeni in ima zbirka podatkov določen komentar, bo to zamenjalo komentar in pravo ime'; $strSetupShowTooltipAliasDB_name = 'Prikaži komentar zbirke podatkov namesto njenega imena'; +$strSetupShowTooltipAliasTB_desc = 'Ko je nastavljeno na [kbd]nested[/kbd], je pridevek imena tabele uporabljen samo za razdružitev/združitev tabel v skladu z določilom $cfg[\'LeftFrameTableSeparator\'], zato je samo mapa imenovana kot pridevek, sama imena tabel pa ostanejo nespremenjena'; $strSetupShowTooltipAliasTB_name = 'Prikaži komentar tabele namesto njenega imena'; $strSetupShowTooltip_name = 'Prikaži komentarje tabel v zaslonskih namigih'; +$strSetupSkipLockedTables_desc = 'Označi uporabljene tabele in omogoči prikaz zbirk podatkov z zaklenjenimi tabelami'; $strSetupSkipLockedTables_name = 'Preskoči zaklenjene tabele'; $strSetupSQLQuery_Edit_name = 'Uredi'; $strSetupSQLQuery_Explain_name = 'Razloži stavek SQL'; @@ -1018,11 +1155,15 @@ $strSetupSQLQuery_ShowAsPHP_name = 'Ustvari kodo PHP'; $strSetupSuggestDBName_desc = 'Predlagaj ime zbirke podatkov v obrazcu "Ustvari zbirko podatkov" (če je le mogoče) ali pusti besedilno polje prazno'; $strSetupSuggestDBName_name = 'Predlagaj novo ime zbirke podatkov'; $strSetupTrue = 'da'; +$strSetupTrustedProxies_desc = 'Vnesite proxyje kot [kbd]IP: zaupana glava HTTP[/kbd]. Sledeči primer navaja, da naj phpMyAdmin zaupa glavi HTTP_X_FORWARDED_FOR (X-Forwarded-For) prihajajoči iz proxyja 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]'; $strSetupTrustedProxies_name = 'Seznam zaupanja vrednih proxyjev za sprejetje/zavrnitev IP'; $strSetupUploadDir_desc = 'Mapa na strežniku, kamor lahko naložite datoteke za uvoz'; $strSetupUploadDir_name = 'Mapa za nalaganje'; $strSetupUseDbSearch_desc = 'Dovoli iskanje po celotni zbirki podatkov'; $strSetupUseDbSearch_name = 'Uporabi iskanje po zbirki podatkov'; +$strSetupVerboseMultiSubmit_desc = 'Prikaže spremenjene vrstice vsakega stavka v večstavčni poizvedbi. Oglejte si libraries/import.lib.php za privzete podatke o tem, koliko poizvedb lahko stavek vsebuje.'; +$strSetupVerboseMultiSubmit_name = 'Zgosti večkratne stavke'; +$strSetupVersionCheckDataError = 'Branje različice je spodletelo. Morda niste povezani v internet ali pa se posodobitveni strežnik ne odziva.'; $strSetupVersionCheckInvalid = 'Od strežnika sem dobil neveljavno besedilo različice'; $strSetupVersionCheckLink = 'Preveri za najnovejšo različico'; $strSetupVersionCheckNewAvailable = 'Na voljo je novejša različica phpMyAdmina, zato razmislite o posodobitvi. Najnovejša različica je %s, izdaja %s.'; @@ -1049,9 +1190,13 @@ $strShowingPhp = 'Prikazovanje kot koda PHP'; $strShowingRecords = 'Prikazujem vrstice'; $strShowingSQL = 'Prikazovanje poizvedbe SQL'; $strShowKeys = 'Prikaži samo ključe'; +$strShowMasterStatus = 'Pokaži stanje glavnega strežnika'; $strShowOpenTables = 'Pokaži odprte tabele'; $strShowPHPInfo = 'Pokaži podatke o PHP'; $strShow = 'Pokaži'; +$strShowSlaveHosts = 'Prikaži gostitelje podrejencev'; +$strShowSlaveStatus = 'Prikaži stanje podrejencev'; +$strShowStatusBinlog_cache_useDescr = 'Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega dnevnika.'; $strShowStatusCreated_tmp_filesDescr = 'Koliko začasnih datotek je ustvaril mysqld.'; $strShowStatusDelayed_writesDescr = 'Število zapisanih vrstic INSERT DELAYED.'; $strShowStatusFlush_commandsDescr = 'Število izvedenih izjav FLUSH.'; @@ -1062,14 +1207,29 @@ $strShowStatusHandler_updateDescr = 'Število zahtev za posodobitev vrstice v ta $strShowStatusHandler_writeDescr = 'Število zahtev za vstavitev vrstice v tabelo.'; $strShowStatusInnodb_buffer_pool_pages_dataDescr = 'Število strani, ki vsebujejo podatke (umazane ali čiste)'; $strShowStatusInnodb_buffer_pool_pages_dirtyDescr = 'Število trenutno umazanih strani.'; +$strShowStatusInnodb_buffer_pool_pages_flushedDescr = 'Število strani zaloge medpomnilnika, za katere je bila zaprošena izplaknitev.'; $strShowStatusInnodb_buffer_pool_pages_freeDescr = 'Število prostih strani.'; +$strShowStatusInnodb_buffer_pool_pages_totalDescr = 'Skupna velikost zaloge medpomnilnika, v straneh.'; +$strShowStatusInnodb_buffer_pool_write_requestsDescr = 'Število zapisov storjenih v zalogi medpomnilnika InnoDB.'; $strShowStatusInnodb_data_fsyncsDescr = 'Število dozdajšnjih posegov fsync().'; +$strShowStatusInnodb_data_pending_fsyncsDescr = 'Trenutno število čakajočih posegov fsync().'; +$strShowStatusInnodb_data_pending_readsDescr = 'Trenutno število čakajočih branj.'; +$strShowStatusInnodb_data_pending_writesDescr = 'Trenutno število čakajočih pisanj.'; $strShowStatusInnodb_data_readDescr = 'Količina do zdaj prebranih podatkov, v bajtih.'; $strShowStatusInnodb_data_readsDescr = 'Skupno število branj podatkov.'; $strShowStatusInnodb_data_writesDescr = 'Skupno število zapisovanj podatkov.'; $strShowStatusInnodb_data_writtenDescr = 'Količina do zdaj zapisanih podatkov, v bajtih.'; +$strShowStatusInnodb_dblwr_pages_writtenDescr = 'Število strani, ki so bile zapisane za posege dvojnega pisanja (doublewrite).'; +$strShowStatusInnodb_dblwr_writesDescr = 'Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni.'; +$strShowStatusInnodb_log_waitsDescr = 'Število čakanj, ki smo jih imeli, ker je bil medpomnilnik dnevnika premajhen in je bilo potrebno počakati, da se pred nadaljevanjem izplakne.'; +$strShowStatusInnodb_log_write_requestsDescr = 'Število zahtev pisanja v dnevnik.'; +$strShowStatusInnodb_log_writesDescr = 'Število fizičnih pisanj v dnevniško datoteko.'; +$strShowStatusInnodb_os_log_fsyncsDescr = 'Število pisanj fsync() storjenih v dnevniško datoteko.'; +$strShowStatusInnodb_os_log_pending_fsyncsDescr = 'Število čakajoče dnevniške datoteke fsyncs.'; +$strShowStatusInnodb_os_log_pending_writesDescr = 'Čakajoča pisanja v dnevniško datoteko.'; $strShowStatusInnodb_os_log_writtenDescr = 'Število bajtov zapisanih v dnevniško datoteko.'; $strShowStatusInnodb_pages_createdDescr = 'Število ustvarjenih strani.'; +$strShowStatusInnodb_page_sizeDescr = 'Vgrajena velikost strani InnoDB (privzeto 16 KB). Veliko vrednosti je štetih v straneh; velikost strani omogoča preprosto pretvorbo v bajte.'; $strShowStatusInnodb_pages_readDescr = 'Število prebranih strani.'; $strShowStatusInnodb_pages_writtenDescr = 'Število zapisanih strani.'; $strShowStatusInnodb_row_lock_current_waitsDescr = 'Število zaklepov vrstic, na katere se trenutno čaka.'; @@ -1095,6 +1255,12 @@ $strShowStatusQcache_not_cachedDescr = 'Število nepredpomnjenih poizvedb (ne pr $strShowStatusQcache_queries_in_cacheDescr = 'Število zabeleženih poizvedb v predpomnilniku.'; $strShowStatusQcache_total_blocksDescr = 'Skupno število blokov v predpomnilniku poizvedb.'; $strShowStatusReset = 'Ponastavi'; +$strShowStatusSlow_launch_threadsDescr = 'Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time sekund.'; +$strShowStatusSlow_queriesDescr = 'Število poizvedb, ki so porabile več kot long_query_time sekund.'; +$strShowStatusSort_rangeDescr = 'Število razvrščanj, ki so bila storjena z razponi.'; +$strShowStatusSort_rowsDescr = 'Število razvrščenih vrstic.'; +$strShowStatusSort_scanDescr = 'Število razvrščanj, ki so bila storjena s pregledovanjem tabele.'; +$strShowStatusTable_locks_immediateDescr = 'Koliko krat je bil zaklep tabele pridobljen takoj.'; $strShowStatusThreads_connectedDescr = 'Število trenutno odprtih povezav.'; $strShowStatusThreads_runningDescr = 'Število niti, ki ne spijo.'; $strShowTableDimension = 'Pokaži dimenzije tabel'; @@ -1107,7 +1273,10 @@ $strSkipQueries = 'Število zapisov (poizvedb), ki jih naj preskočim od začetk $strSlaveConfigure = 'Prepričajte se, da imate v vaši konfiguracijski datoteki (my.cnf) edinstven id strežnika. Če nimate, prosimo dodajte naslednjo vrstico v razdelek [mysqld]:'; $strSlovak = 'Slovaško'; $strSlovenian = 'Slovensko'; +$strSmallBigAll = 'Skrči/razširi vse'; $strSnapToGrid = 'Pripni na mrežo'; +$strSocketProblem = '(ali pa lokalna vtičnica strežnika MySQL ni pravilno konfigurirana)'; +$strSocket = 'Vtičnica'; $strSortByKey = 'Uredi po ključu'; $strSorting = 'Razvrščanje'; $strSort = 'Razvrsti'; @@ -1124,6 +1293,7 @@ $strSQL = 'SQL'; $strSQPBugInvalidIdentifer = 'Neveljavni identifikator'; $strSQPBugUnclosedQuote = 'Odprt citat'; $strSQPBugUnknownPunctuation = 'Neznan niz ločil'; +$strStandInStructureForView = 'Nadomestna struktura pogleda'; $strStart = 'Začetek'; $strStatCreateTime = 'Ustvarjeno'; $strStatement = 'Izjave'; @@ -1203,6 +1373,7 @@ $strTime = 'Čas'; $strTimeoutInfo = 'Čas prejšnjega uvoza se je iztekel, po ponovni potrditvi se bo nadaljeval od položaja %d.'; $strTimeoutNothingParsed = 'Kakor koli, ob zadnjem zagonu ni bilo razčlenjenih nič podatkov, kar po navadi pomeni, da phpMyAdmin ne bo mogel dokončati tega uvoza, razen če povečate vaše časovne omejitve PHP.'; $strTimeoutPassed = 'Časovna omejitev skripta je potekla; če želite končati uvoz, prosimo, ponovno pošljite isto datoteko in uvoz se bo nadaljeval.'; +$strToFromPage = 'od/do strani'; $strToggleScratchboard = 'Preklopi odložišče (scratchboard)'; $strToggleSmallBig = 'Preklopi majhno/veliko'; $strToSelectRelation = 'Za izbiro relacije, kliknite:'; @@ -1252,10 +1423,13 @@ $strTrackingUsername = 'Uporabniško ime'; $strTrackingVersionActivated = 'Sledenje %s.%s, različice %s je aktivirano.'; $strTrackingVersionCreated = 'Različica %s je ustvarjena, sledenje %s.%s je aktivirano.'; $strTrackingVersionDeactivated = 'Sledenje %s.%s, različice %s je dezaktivirano.'; +$strTrackingVersionSnapshotSQL = 'Različica posnetka %s (koda SQL)'; $strTrackingVersions = 'Različice'; +$strTrackingYouCanExecute = 'Odložene podatke lahko izvedete z ustvarjanjem in uporabo začasne zbirke podatkov. Prosimo, prepričajte se, da imate privilegije za ta dejanja.'; $strTraditionalChinese = 'Tradicionalno kitajsko'; $strTraditionalSpanish = 'Tradicionalno špansko'; $strTraffic = 'Promet'; +$strTransactionCoordinator = 'Koordinator transakcij'; $strTransformation_application_octetstream__download = 'Prikaži povezavo za prenos dvojiških podatkov polja. Prva možnost je ime dvojiške datoteke. Druga možnost je možno ime polja v vrstici tabele, ki vsebuje to ime datoteke. Če vnesete drugo možnost, mora biti prva možnost prazna.'; $strTransformation_application_octetstream__hex = 'Prikaže šestnajstiško predstavljene podatke. Izbirni prvi parameter določa pogostost dodajanja presledkov (privzeto na 2 polzloga).'; $strTransformation_image_jpeg__inline = 'Prikaže sličico, na katero lahko kliknete. Možnosti sta največja širina in višina v slikovnih pikah. Prvotna razmerja se obdržijo.'; @@ -1274,7 +1448,7 @@ $strType = 'Vrsta'; $strUkrainian = 'Ukrajinsko'; $strUncheckAll = 'Odznači vse'; -$strUnicode = 'Unicode'; +$strUnicode = 'Unikod'; $strUnique = 'Edinstven'; $strUnknown = 'neznano'; $strUnselectAll = 'Prekliči izbor vsega'; @@ -1333,6 +1507,7 @@ $strWiki = 'wiki'; $strWildcard = 'nadomestni znak'; $strWindowNotFound = 'Ciljnega okna ni bilo mogoče osvežiti. Morda ste zaprli nadrejeno okno ali pa vaš brskalnik blokira osveževanje varnostnih parametrov med okni.'; $strWithChecked = 'Z označenim:'; +$strWriteRequests = 'Zahtev pisanja'; $strWrongUser = 'Napačno uporabniško ime/geslo. Dostop zavrnjen.'; $strXMLError = 'Določena datoteka XML je ali skažena ali nepopolna. Prosimo, odpravite težave in poskusite znova.'; @@ -1352,18 +1527,10 @@ $strZip = '"zipano"'; // To translate: $strAndSmall = 'and'; //to translate -$strAngularLinks = 'Angular links'; //to translate $strBLOBRepositoryDisabled = 'Disabled'; //to translate $strBLOBRepositoryEnabled = 'Enabled'; //to translate $strBLOBRepositoryRepair = 'Repair'; //to translate -$strBufferPoolActivity = 'Buffer Pool Activity'; //to translate -$strBufferPool = 'Buffer Pool'; //to translate -$strBufferPoolUsage = 'Buffer Pool Usage'; //to translate -$strBufferReadMissesInPercent = 'Read misses in %'; //to translate -$strBufferReadMisses = 'Read misses'; //to translate -$strBufferWriteWaitsInPercent = 'Write waits in %'; //to translate -$strBufferWriteWaits = 'Write waits'; //to translate $strCompatibleHashing = 'MySQL 4.0 compatible'; //to translate $strConfigDefaultFileError = 'Could not load default configuration from: "%1$s"'; //to translate @@ -1374,184 +1541,44 @@ $strCSV = 'CSV'; //to translate $strDesignerHelpDisplayField = 'The display field is shown in pink. To set/unset a field as the display field, click the "Choose field to display" icon, then click on the appropriate field name.'; //to translate $strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally'; //to translate -$strExportImportToScale = 'Export/Import to scale'; //to translate $strHTMLExcel = 'Microsoft Excel 2000'; //to translate $strIEUnsupported = 'Internet Explorer does not support this function.'; //to translate $strImportFormat = 'Format of imported file'; //to translate $strImportODS = 'Open Document Spreadsheet'; //to translate -$strInnoDBBufferPoolSize = 'Buffer pool size'; //to translate $strInvalidServerIndex = 'Invalid server index: "%s"'; //to translate -$strJoins = 'Joins'; //to translate - -$strLatchedPages = 'Latched pages'; //to translate - -$strMyISAMMaxExtraSortFileSizeDesc = 'If the temporary file used for fast MyISAM index creation would be larger than using the key cache by the amount specified here, prefer the key cache method.'; //to translate -$strMyISAMRepairThreadsDesc = 'If this value is greater than 1, MyISAM table indexes are created in parallel (each index in its own thread) during the Repair by sorting process.'; //to translate - $strNoneDefault = 'None'; //to translate -$strNotPresent = 'not present'; //to translate -$strPacked = 'Packed'; //to translate $strPBXTDataFileGrowSize = 'Data file grow size'; //to translate $strPBXTDataFileGrowSizeDesc = 'The grow size of the handle data (.xtd) files.'; //to translate -$strPBXTDataLogThreshold = 'Data log threshold'; //to translate -$strPBXTDataLogThresholdDesc = 'The maximum size of a data log file. The default value is 64MB. PBXT can create a maximum of 32000 data logs, which are used by all tables. So the value of this variable can be increased to increase the total amount of data that can be stored in the database.'; //to translate -$strPBXTGarbageThresholdDesc = 'The percentage of garbage in a data log file before it is compacted. This is a value between 1 and 99. The default is 50.'; //to translate -$strPBXTGarbageThreshold = 'Garbage threshold'; //to translate -$strPBXTCheckpointFrequencyDesc = 'The amount of data written to the transaction log before a checkpoint is performed. The default value is 24MB.'; //to translate -$strPBXTCheckpointFrequency = 'Checkpoint frequency'; //to translate -$strPBXTIndexCacheSizeDesc = 'This is the amount of memory allocated to the index cache. Default value is 32MB. The memory allocated here is used only for caching index pages.'; //to translate -$strPBXTLogBufferSizeDesc = 'The size of the buffer used when writing a data log. The default is 256MB. The engine allocates one buffer per thread, but only if the thread is required to write a data log.'; //to translate -$strPBXTLogBufferSize = 'Log buffer size'; //to translate -$strPBXTLogCacheSizeDesc = 'The amount of memory allocated to the transaction log cache used to cache on transaction log data. The default is 16MB.'; //to translate -$strPBXTLogCacheSize = 'Log cache size'; //to translate -$strPBXTLogFileCountDesc = 'This is the number of transaction log files (pbxt/system/xlog*.xt) the system will maintain. If the number of logs exceeds this value then old logs will be deleted, otherwise they are renamed and given the next highest number.'; //to translate -$strPBXTLogFileCount = 'Log file count'; //to translate -$strPBXTLogFileThresholdDesc = 'The size of a transaction log before rollover, and a new log is created. The default value is 16MB.'; //to translate -$strPBXTLogFileThreshold = 'Log file threshold'; //to translate -$strPBXTRecordCacheSizeDesc = 'This is the amount of memory allocated to the record cache used to cache table data. The default value is 32MB. This memory is used to cache changes to the handle data (.xtd) and row pointer (.xtr) files.'; //to translate -$strPBXTRecordCacheSize = 'Record cache size'; //to translate $strPBXTRowFileGrowSizeDesc = 'The grow size of the row pointer (.xtr) files.'; //to translate $strPBXTRowFileGrowSize = 'Row file grow size'; //to translate -$strPBXTTransactionBufferSizeDesc = 'The size of the global transaction log buffer (the engine allocates 2 buffers of this size). The default is 1MB.'; //to translate -$strPBXTTransactionBufferSize = 'Transaction buffer size'; //to translate -$strReadRequests = 'Read requests'; //to translate $strRefresh = 'Refresh'; //to translate $strRelationalDisplayField = 'Relational display field'; //to translate $strReloadPrivileges = 'Reload privileges'; //to translate -$strReplicationAddSlaveUser = 'Add slave replication user'; //to translate -$strReplicationConfiguredMaster = 'This server is configured as master in a replication process.'; //to translate -$strReplicationControlSlave = 'Control slave:'; //to translate -$strReplicationErrorGetPosition = 'Unable to read master log position. Possible privilege problem on master.'; //to translate -$strReplicationErrorMasterConnect = 'Unable to connect to master %s.'; //to translate -$strReplicationChangedSuccesfully = 'Master server changed succesfully to %s'; //to translate -$strReplicationMasterConfiguration = 'Master configuration'; //to translate -$strReplicationMasterChooseAll = 'Replicate all databases; Ignore:'; //to translate -$strReplicationMasterChooseIgn = 'Ignore all databases; Replicate:'; //to translate -$strReplicationMasterChooseMode = 'This server is not configured as master server in a replication process. You can choose from either replicating all databases and ignoring certain (useful if you want to replicate majority of databases) or you can choose to ignore all databases by default and allow only certain databases to be replicated. Please select the mode:'; //to translate -$strReplicationMaster = 'Master replication'; //to translate -$strReplicationRestartServer = 'Once you restarted MySQL server, please click on Go button. Afterwards, you should see a message informing you, that this server is configured as master'; //to translate -$strReplicationServernConfiguredMaster = 'This server is not configured as master in a replication process. Would you like to configure it?'; //to translate -$strReplicationShowConnectedSlavesNote = 'Only slaves started with the --report-host=host_name option are visible in this list.'; //to translate -$strReplicationShowConnectedSlaves = 'Show connected slaves'; //to translate $strReplicationShowMasterStatus = 'Show master status'; //to translate $strReplicationSkippingErrorWarn = 'Skipping error(s) might lead into unsynchronized master and slave!'; //to translate -$strReplicationSlaveConfiguration = 'Slave configuration'; //to translate -$strReplicationSlaveConfigured = 'Server is configured as slave in a replication process. Would you like to:'; //to translate -$strReplicationSlaveErrorManagement = 'Error management:'; //to translate -$strReplicationSlaveChangeMaster = 'Change or reconfigure master server'; //to translate -$strReplicationSlaveIOThread = 'IO Thread %s only'; //to translate -$strReplicationSlaveIOThreadNotRunning = 'Slave IO Thread not running!'; //to translate -$strReplicationSlaveNotConfigured = 'This server is not configured as slave in a replication process. Would you like to configure it?'; //to translate -$strReplicationSlaveReset = 'Reset slave'; //to translate -$strReplicationSlaveSeeStatus = 'See slave status table'; //to translate -$strReplicationSlave = 'Slave replication'; //to translate -$strReplicationSlaveSQLThreadNotRunning = 'Slave SQL Thread not running!'; //to translate -$strReplicationSlaveSQLThread = 'SQL Thread %s only'; //to translate $strReplicationStatusInfo = 'This MySQL server works as %s in replication process. For further information about replication status on the server, please visit the replication section.'; //to translate -$strReplicationStatus_master = 'Master status'; //to translate -$strReplicationStatus = 'Replication status'; //to translate -$strReplicationStatus_slave = 'Slave status'; //to translate -$strReplicationSynchronize = 'Synchronize databases with master'; //to translate -$strReplicationUnableToChange = 'Unable to change master'; //to translate -$strReplicationUnknownError = 'Unknown error'; //to translate $strRowsAffected = '%1$d row(s) affected.'; //to translate $strRowsDeleted = '%1$d row(s) deleted.'; //to translate $strRowsInserted = '%1$d row(s) inserted.'; //to translate $strServers = 'Servers'; //to translate $strSessionStartupErrorGeneral = 'Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.'; //to translate -$strSetupAllowArbitraryServer_desc = 'If enabled user can enter any MySQL server in login form for cookie auth'; //to translate -$strSetupAllowArbitraryServerMsg = 'This [a@?page=form&formset=features#tab_Security]option[/a] should be disabled as it allows attackers to bruteforce login to any MySQL server. If you feel this is necessary, use [a@?page=form&formset=features#tab_Security]trusted proxies list[/a]. However, IP-based protection may not be reliable if your IP belongs to an ISP where thousands of users, including you, are connected to.'; //to translate -$strSetupForeignKeyDropdownOrder_desc = 'Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is the referenced data, [kbd]id[/kbd] is the key value'; //to translate -$strSetupForeignKeyDropdownOrder_name = 'Foreign key dropdown order'; //to translate -$strSetupForeignKeyMaxLimit_desc = 'A dropdown will be used if fewer items are present'; //to translate -$strSetupForeignKeyMaxLimit_name = 'Foreign key limit'; //to translate -$strSetupForm_Server_login_options_desc = 'Enter login options for signon authentication'; //to translate -$strSetupForm_Server_login_options = 'Signon login options'; //to translate -$strSetupForm_Server_pmadb_desc = 'Configure phpMyAdmin database to gain access to additional features, see [a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in documentation'; //to translate $strSetupForm_Server_pmadb = 'PMA database'; //to translate $strSetupCharEditing_desc = 'Defines which type of editing controls should be used for CHAR and VARCHAR fields; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/kbd] - allows newlines in fields'; //to translate $strSetupImport_skip_queries_desc = 'Number of records (queries) to skip from start'; //to translate -$strSetupLoginCookieDeleteAll_desc = 'If TRUE, logout deletes cookies for all servers; when set to FALSE, logout only occurs for the current server. Setting this to FALSE makes it easy to forget to log out from other servers when connected to multiple servers.'; //to translate -$strSetupLoginCookieRecall_desc = 'Define whether the previous login should be recalled or not in cookie authentication mode'; //to translate -$strSetupLoginCookieRecall_name = 'Recall user name'; //to translate -$strSetupLoginCookieStore_desc = 'Define how long (in seconds) a login cookie should be stored in browser. The default of 0 means that it will be kept for the existing session only, and will be deleted as soon as you close the browser window. This is recommended for non-trusted environments.'; //to translate -$strSetupLoginCookieStore_name = 'Login cookie store'; //to translate -$strSetupLoginCookieValidityMsg = '[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] should be should be set to 1800 seconds (30 minutes) at most. Values larger than 1800 may pose a security risk such as impersonation.'; //to translate $strSetupNavigationBarIconic_desc = 'Use only icons, only text or both'; //to translate -$strSetupNavigationBarIconic_name = 'Iconic navigation bar'; //to translate -$strSetupPropertiesIconic_name = 'Iconic table operations'; //to translate -$strSetupQueryHistoryDB_desc = 'Enable if you want DB-based query history (requires pmadb). If disabled, this utilizes JS-routines to display query history (lost by window close).'; //to translate -$strSetupRevertErroneousFields = 'Try to revert erroneous fields to their default values'; //to translate -$strSetupServerAuthConfigMsg = 'You set the [kbd]config[/kbd] authentication type and included username and password for auto-login, which is not a desirable option for live hosts. Anyone who knows or guesses your phpMyAdmin URL can directly access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/kbd].'; //to translate -$strSetupServerExtensionMsg = 'You should use mysqli for performance reasons'; //to translate -$strSetupServerNoPasswordMsg = 'You allow for connecting to the server without a password.'; //to translate -$strSetupServers_AllowDeny_order_desc = 'Leave blank if not used'; //to translate -$strSetupServers_AllowDeny_order_name = 'Host authentication order'; //to translate -$strSetupServers_AllowDeny_rules_desc = 'Leave blank for defaults'; //to translate -$strSetupServers_AllowDeny_rules_name = 'Host authentication rules'; //to translate -$strSetupServers_AllowNoPassword_name = 'Allow logins without a password'; //to translate -$strSetupServers_AllowRoot_name = 'Allow root login'; //to translate -$strSetupServers_auth_swekey_config_desc = 'The path for the config file for [a@http://swekey.com]SweKey hardware authentication[/a] (not located in your document root; suggested: /etc/swekey.conf)'; //to translate -$strSetupServers_auth_swekey_config_name = 'SweKey config file'; //to translate -$strSetupServers_auth_type_desc = 'Authentication method to use'; //to translate -$strSetupServers_auth_type_name = 'Authentication type'; //to translate -$strSetupServers_bookmarktable_desc = 'Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] support, suggested: [kbd]pma_bookmark[/kbd]'; //to translate -$strSetupServers_bookmarktable_name = 'Bookmark table'; //to translate -$strSetupServers_column_info_desc = 'Leave blank for no column comments/mime types, suggested: [kbd]pma_column_info[/kbd]'; //to translate -$strSetupServers_column_info_name = 'Column information table'; //to translate -$strSetupServers_DisableIS_desc = 'More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]'; //to translate -$strSetupServerSecurityInfoMsg = 'If you feel this is necessary, use additional protection settings - [a@?page=servers&mode=edit&id=%1$d#tab_Server_config]host authentication[/a] settings and [a@?page=form&formset=features#tab_Security]trusted proxies list[/a]. However, IP-based protection may not be reliable if your IP belongs to an ISP where thousands of users, including you, are connected to.'; //to translate -$strSetupServers_extension_desc = 'What PHP extension to use; you should use mysqli if supported'; //to translate -$strSetupServers_extension_name = 'PHP extension to use'; //to translate -$strSetupServers_hide_db_desc = 'Hide databases matching regular expression (PCRE)'; //to translate -$strSetupServers_history_desc = 'Leave blank for no SQL query history support, suggested: [kbd]pma_history[/kbd]'; //to translate -$strSetupServers_history_name = 'SQL query history table'; //to translate $strSetupServers_only_db_desc = 'You can use MySQL wildcard characters (% and _), escape them if you want to use their literal instances, i.e. use \'my\_db\' and not \'my_db\''; //to translate -$strSetupServers_only_db_name = 'Show only listed databases'; //to translate $strSetupServers_password_desc = 'Leave empty if not using config auth'; //to translate -$strSetupServers_password_name = 'Password for config auth'; //to translate -$strSetupServers_pdf_pages_desc = 'Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]'; //to translate -$strSetupServers_pdf_pages_name = 'PDF schema: pages table'; //to translate -$strSetupServers_pmadb_desc = 'Database used for relations, bookmarks, and PDF features. See [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for no support. Suggested: [kbd]phpmyadmin[/kbd]'; //to translate -$strSetupServers_port_desc = 'Port on which MySQL server is listening, leave empty for default'; //to translate -$strSetupServers_relation_desc = 'Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links[/a] support, suggested: [kbd]pma_relation[/kbd]'; //to translate -$strSetupServers_ShowDatabasesCommand_desc = 'SQL command to fetch available databases'; //to translate -$strSetupServers_ShowDatabasesCommand_name = 'SHOW DATABASES command'; //to translate -$strSetupServers_SignonSession_desc = 'See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types[/a] for an example'; //to translate -$strSetupServers_SignonSession_name = 'Signon session name'; //to translate -$strSetupServers_SignonURL_name = 'Signon URL'; //to translate -$strSetupServerSslMsg = 'You should use SSL connections if your web server supports it'; //to translate -$strSetupServers_socket_desc = 'Socket on which MySQL server is listening, leave empty for default'; //to translate -$strSetupServers_table_coords_desc = 'Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]'; //to translate -$strSetupServers_table_coords_name = 'PDF schema: table coordinates'; //to translate $strSetupServers_table_info_desc = 'Table to describe the display fields, leave blank for no support; suggested: [kbd]pma_table_info[/kbd]'; //to translate $strSetupServers_table_info_name = 'Display fields table'; //to translate -$strSetupServers_user_desc = 'Leave empty if not using config auth'; //to translate -$strSetupServers_user_name = 'User for config auth'; //to translate -$strSetupServers_verbose_desc = 'A user-friendly description of this server. Leave blank to display the hostname instead.'; //to translate -$strSetupServers_verbose_check_desc = 'Disable if you know that your pma_* tables are up to date. This prevents compatibility checks and thereby increases performance'; //to translate -$strSetupServers_verbose_check_name = 'Verbose check'; //to translate -$strSetupServers_verbose_name = 'Verbose name of this server'; //to translate -$strSetupShowChgPassword_desc = 'Please note that enabling this has no effect with [kbd]config[/kbd] authentication mode because the password is hard coded in the configuration file; this does not limit the ability to execute the same command directly'; //to translate -$strSetupShowTooltipAliasTB_desc = 'When setting this to [kbd]nested[/kbd], the alias of the table name is only used to split/nest the tables according to the $cfg[\'LeftFrameTableSeparator\'] directive, so only the folder is called like the alias, the table name itself stays unchanged'; //to translate -$strSetupSkipLockedTables_desc = 'Mark used tables and make it possible to show databases with locked tables'; //to translate $strSetupSQLQuery_Validate_name = 'Validate SQL'; //to translate -$strSetupTrustedProxies_desc = 'Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]'; //to translate -$strSetupVerboseMultiSubmit_desc = 'Show affected rows of each statement on multiple-statement queries. See libraries/import.lib.php for defaults on how many queries a statement may contain.'; //to translate -$strSetupVerboseMultiSubmit_name = 'Verbose multiple statements'; //to translate -$strSetupVersionCheckDataError = 'Reading of version failed. Maybe you\'re offline or the upgrade server does not respond.'; //to translate $strSetupVersionCheckNewAvailableSvn = 'You are using subversion version, run [kbd]svn update[/kbd] :-)[br]The latest stable version is %s, released on %s.'; //to translate -$strShowMasterStatus = 'Show master status'; //to translate -$strShowSlaveHosts = 'Show slave hosts'; //to translate -$strShowSlaveStatus = 'Show slave status'; //to translate $strShowStatusBinlog_cache_disk_useDescr = 'The number of transactions that used the temporary binary log cache but that exceeded the value of binlog_cache_size and used a temporary file to store statements from the transaction.'; //to translate -$strShowStatusBinlog_cache_useDescr = 'The number of transactions that used the temporary binary log cache.'; //to translate $strShowStatusCreated_tmp_disk_tablesDescr = 'The number of temporary tables on disk created automatically by the server while executing statements. If Created_tmp_disk_tables is big, you may want to increase the tmp_table_size value to cause temporary tables to be memory-based instead of disk-based.'; //to translate $strShowStatusCreated_tmp_tablesDescr = 'The number of in-memory temporary tables created automatically by the server while executing statements.'; //to translate $strShowStatusDelayed_errorsDescr = 'The number of rows written with INSERT DELAYED for which some error occurred (probably duplicate key).'; //to translate @@ -1563,28 +1590,13 @@ $strShowStatusHandler_read_nextDescr = 'The number of requests to read the next $strShowStatusHandler_read_prevDescr = 'The number of requests to read the previous row in key order. This read method is mainly used to optimize ORDER BY ... DESC.'; //to translate $strShowStatusHandler_read_rndDescr = 'The number of requests to read a row based on a fixed position. This is high if you are doing a lot of queries that require sorting of the result. You probably have a lot of queries that require MySQL to scan whole tables or you have joins that don\'t use keys properly.'; //to translate $strShowStatusHandler_read_rnd_nextDescr = 'The number of requests to read the next row in the data file. This is high if you are doing a lot of table scans. Generally this suggests that your tables are not properly indexed or that your queries are not written to take advantage of the indexes you have.'; //to translate -$strShowStatusInnodb_buffer_pool_pages_flushedDescr = 'The number of buffer pool pages that have been requested to be flushed.'; //to translate $strShowStatusInnodb_buffer_pool_pages_latchedDescr = 'The number of latched pages in InnoDB buffer pool. These are pages currently being read or written or that can\'t be flushed or removed for some other reason.'; //to translate $strShowStatusInnodb_buffer_pool_pages_miscDescr = 'The number of pages busy because they have been allocated for administrative overhead such as row locks or the adaptive hash index. This value can also be calculated as Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data.'; //to translate -$strShowStatusInnodb_buffer_pool_pages_totalDescr = 'Total size of buffer pool, in pages.'; //to translate $strShowStatusInnodb_buffer_pool_read_ahead_rndDescr = 'The number of "random" read-aheads InnoDB initiated. This happens when a query is to scan a large portion of a table but in random order.'; //to translate $strShowStatusInnodb_buffer_pool_read_ahead_seqDescr = 'The number of sequential read-aheads InnoDB initiated. This happens when InnoDB does a sequential full table scan.'; //to translate $strShowStatusInnodb_buffer_pool_read_requestsDescr = 'The number of logical read requests InnoDB has done.'; //to translate $strShowStatusInnodb_buffer_pool_readsDescr = 'The number of logical reads that InnoDB could not satisfy from buffer pool and had to do a single-page read.'; //to translate $strShowStatusInnodb_buffer_pool_wait_freeDescr = 'Normally, writes to the InnoDB buffer pool happen in the background. However, if it\'s necessary to read or create a page and no clean pages are available, it\'s necessary to wait for pages to be flushed first. This counter counts instances of these waits. If the buffer pool size was set properly, this value should be small.'; //to translate -$strShowStatusInnodb_buffer_pool_write_requestsDescr = 'The number writes done to the InnoDB buffer pool.'; //to translate -$strShowStatusInnodb_data_pending_fsyncsDescr = 'The current number of pending fsync() operations.'; //to translate -$strShowStatusInnodb_data_pending_readsDescr = 'The current number of pending reads.'; //to translate -$strShowStatusInnodb_data_pending_writesDescr = 'The current number of pending writes.'; //to translate -$strShowStatusInnodb_dblwr_pages_writtenDescr = 'The number of doublewrite writes that have been performed and the number of pages that have been written for this purpose.'; //to translate -$strShowStatusInnodb_dblwr_writesDescr = 'The number of doublewrite writes that have been performed and the number of pages that have been written for this purpose.'; //to translate -$strShowStatusInnodb_log_waitsDescr = 'The number of waits we had because log buffer was too small and we had to wait for it to be flushed before continuing.'; //to translate -$strShowStatusInnodb_log_write_requestsDescr = 'The number of log write requests.'; //to translate -$strShowStatusInnodb_log_writesDescr = 'The number of physical writes to the log file.'; //to translate -$strShowStatusInnodb_os_log_fsyncsDescr = 'The number of fsyncs writes done to the log file.'; //to translate -$strShowStatusInnodb_os_log_pending_fsyncsDescr = 'The number of pending log file fsyncs.'; //to translate -$strShowStatusInnodb_os_log_pending_writesDescr = 'Pending log file writes.'; //to translate -$strShowStatusInnodb_page_sizeDescr = 'The compiled-in InnoDB page size (default 16KB). Many values are counted in pages; the page size allows them to be easily converted to bytes.'; //to translate $strShowStatusKey_blocks_not_flushedDescr = 'The number of key blocks in the key cache that have changed but haven\'t yet been flushed to disk. It used to be known as Not_flushed_key_blocks.'; //to translate $strShowStatusKey_blocks_unusedDescr = 'The number of unused blocks in the key cache. You can use this value to determine how much of the key cache is in use.'; //to translate $strShowStatusKey_blocks_usedDescr = 'The number of used blocks in the key cache. This value is a high-water mark that indicates the maximum number of blocks that have ever been in use at one time.'; //to translate @@ -1602,30 +1614,14 @@ $strShowStatusSelect_scanDescr = 'The number of joins that did a full scan of th $strShowStatusSlave_open_temp_tablesDescr = 'The number of temporary tables currently open by the slave SQL thread.'; //to translate $strShowStatusSlave_retried_transactionsDescr = 'Total (since startup) number of times the replication slave SQL thread has retried transactions.'; //to translate $strShowStatusSlave_runningDescr = 'This is ON if this server is a slave that is connected to a master.'; //to translate -$strShowStatusSlow_launch_threadsDescr = 'The number of threads that have taken more than slow_launch_time seconds to create.'; //to translate -$strShowStatusSlow_queriesDescr = 'The number of queries that have taken more than long_query_time seconds.'; //to translate $strShowStatusSort_merge_passesDescr = 'The number of merge passes the sort algorithm has had to do. If this value is large, you should consider increasing the value of the sort_buffer_size system variable.'; //to translate -$strShowStatusSort_rangeDescr = 'The number of sorts that were done with ranges.'; //to translate -$strShowStatusSort_rowsDescr = 'The number of sorted rows.'; //to translate -$strShowStatusSort_scanDescr = 'The number of sorts that were done by scanning the table.'; //to translate -$strShowStatusTable_locks_immediateDescr = 'The number of times that a table lock was acquired immediately.'; //to translate $strShowStatusTable_locks_waitedDescr = 'The number of times that a table lock could not be acquired immediately and a wait was needed. If this is high, and you have performance problems, you should first optimize your queries, and then either split your table or tables or use replication.'; //to translate $strShowStatusThreads_cachedDescr = 'The number of threads in the thread cache. The cache hit rate can be calculated as Threads_created/Connections. If this value is red you should raise your thread_cache_size.'; //to translate $strShowStatusThreads_createdDescr = 'The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. (Normally this doesn\'t give a notable performance improvement if you have a good thread implementation.)'; //to translate -$strSmallBigAll = 'Small/Big All'; //to translate -$strSocketProblem = '(or the local MySQL server\'s socket is not correctly configured)'; //to translate -$strSocket = 'Socket'; //to translate -$strStandInStructureForView = 'Stand-in structure for view'; //to translate $strStructureDiff = 'Structure Difference' ; //to translate $strTableAlterIndex = 'Alter index(s)'; //to translate -$strToFromPage = 'to/from page'; //to translate $strTrackingMechanism = 'Tracking Mechanism'; //to translate -$strTrackingVersionSnapshotSQL = 'Version %s snapshot (SQL code)'; //to translate -$strTrackingYouCanExecute = 'You can execute the dump by creating and using a temporary database. Please ensure that you have the privileges to do so.'; //to translate -$strTransactionCoordinator = 'Transaction coordinator'; //to translate $strTransformation_text_plain__dateformat = 'Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as formatted date. The first option is the offset (in hours) which will be added to the timestamp (Default: 0). Use second option to specify a different date/time format string. Third option determines whether you want to see local date or UTC one (use "local" or "utc" strings) for that. According to that, date format has different value - for "local" see the documentation for PHP\'s strftime() function and for "utc" it is done using gmdate() function.'; //to translate -$strWriteRequests = 'Write requests'; //to translate - ?> From 16c5db5044dada8d4bf7d92a140b191f0067a53d Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:49:02 +0200 Subject: [PATCH 03/75] Translation update done using Pootle. --- po/en_GB.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 2cea616f4..4c85e3d90 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-05-25 16:41+0200\n" -"Last-Translator: Michal \n" +"PO-Revision-Date: 2010-06-04 21:49+0200\n" +"Last-Translator: Marc \n" "Language-Team: english-gb \n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -111,10 +111,9 @@ msgstr "Table comments" #: tbl_indexes.php:189 tbl_printview.php:142 tbl_relation.php:402 #: tbl_select.php:135 tbl_structure.php:177 tbl_tracking.php:273 #: tbl_tracking.php:324 -#, fuzzy #| msgid "Column names" msgid "Column" -msgstr "Column names" +msgstr "Column" #: db_datadict.php:175 db_printview.php:106 libraries/Index.class.php:443 #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 From c0635c23bc6ec87d9ff2cbdd888ed0173f1063f6 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:49:17 +0200 Subject: [PATCH 04/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 4c85e3d90..4f0f4cec9 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -447,10 +447,9 @@ msgid "Modify" msgstr "Modify" #: db_qbe.php:584 -#, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" -msgstr "Add/Delete Criteria Row" +msgstr "Add/Delete criteria rows" #: db_qbe.php:596 #, fuzzy From 3926f039167b9f5435eb8365b84930040810491a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:49:27 +0200 Subject: [PATCH 05/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 4f0f4cec9..5bb9e1a77 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -452,10 +452,9 @@ msgid "Add/Delete criteria rows" msgstr "Add/Delete criteria rows" #: db_qbe.php:596 -#, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" -msgstr "Add/Delete Field Columns" +msgstr "Add/Delete columns" #: db_qbe.php:609 db_qbe.php:634 msgid "Update Query" From ac1fb07f0469aa031aeea189b6f3c83d788ea14e Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:49:40 +0200 Subject: [PATCH 06/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 5bb9e1a77..92db2df64 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -548,10 +548,9 @@ msgid "Inside table(s):" msgstr "Inside table(s):" #: db_search.php:355 -#, fuzzy #| msgid "Inside field:" msgid "Inside column:" -msgstr "Inside field:" +msgstr "Inside column:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 From 47799a27336f9cdc6ad3cd7471d6d0b3f47d63cf Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:49:54 +0200 Subject: [PATCH 07/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 92db2df64..0d871eeef 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -996,10 +996,9 @@ msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" #: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 -#, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" -msgstr "Choose field to display" +msgstr "Choose column to display" #. l10n: Display text for calendar close link #: js/messages.php:73 From 20c877debdd4b75efff87b0d762f2f8d202c1dda Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:50:06 +0200 Subject: [PATCH 08/75] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 0d871eeef..05bcae659 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 21:49+0200\n" +"PO-Revision-Date: 2010-06-04 21:50+0200\n" "Last-Translator: Marc \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -1972,10 +1972,9 @@ msgid "No Privileges" msgstr "No Privileges" #: libraries/display_create_table.lib.php:41 -#, fuzzy #| msgid "Table must have at least one field." msgid "Table must have at least one column." -msgstr "Table must have at least one field." +msgstr "Table must have at least one column." #: libraries/display_create_table.lib.php:48 #, php-format From 61afb5f720f63788de40abe5b8db871586b92f9c Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:50:15 +0200 Subject: [PATCH 09/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 05bcae659..e72e06ce5 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -1982,10 +1982,9 @@ msgid "Create table on database %s" msgstr "Create table on database %s" #: libraries/display_create_table.lib.php:57 -#, fuzzy #| msgid "Number of fields" msgid "Number of columns" -msgstr "Number of fields" +msgstr "Number of columns" #: libraries/display_export.lib.php:42 msgid "Could not load export plugins, please check your installation!" From 90cac014aea6bbab502c772804fe019125bf37e0 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:50:34 +0200 Subject: [PATCH 10/75] Translation update done using Pootle. --- po/en_GB.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index e72e06ce5..ad8490021 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -1991,10 +1991,10 @@ msgid "Could not load export plugins, please check your installation!" msgstr "Could not load export plug-ins, please check your installation!" #: libraries/display_export.lib.php:107 -#, fuzzy, php-format +#, php-format #| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" -msgstr "Dump %s row(s) starting at record # %s" +msgstr "Dump %s row(s) starting at row # %s" #: libraries/display_export.lib.php:115 msgid "Dump all rows" From b35f6e0787dc18ace3bf1f83bec53b94d19a28aa Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:50:50 +0200 Subject: [PATCH 11/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index ad8490021..38087ca32 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -2148,10 +2148,9 @@ msgstr "" "however it can break transactions." #: libraries/display_import.lib.php:239 setup/lib/messages.inc.php:161 -#, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" -msgstr "Number of records (queries) to skip from start" +msgstr "Number of queries to skip from start" #: libraries/display_import.lib.php:255 setup/lib/messages.inc.php:160 msgid "Format of imported file" From 5d7f5d0bcf3f300c0b8ed9f103a1795d18329e1b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:51:01 +0200 Subject: [PATCH 12/75] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 38087ca32..dc8fdbd6f 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 21:50+0200\n" +"PO-Revision-Date: 2010-06-04 21:51+0200\n" "Last-Translator: Marc \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -2207,10 +2207,9 @@ msgid "%d is not valid row number." msgstr "%d is not valid row number." #: libraries/display_tbl.lib.php:310 -#, fuzzy #| msgid "row(s) starting from record #" msgid "row(s) starting from row #" -msgstr "row(s) starting from record #" +msgstr "row(s) starting from row #" #: libraries/display_tbl.lib.php:316 msgid "horizontal" From 7defef3d6bf2472a8f96652a8472b3d092e7d026 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:51:12 +0200 Subject: [PATCH 13/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index dc8fdbd6f..31d2002ef 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -2266,10 +2266,9 @@ msgid "Relational key" msgstr "Relational key" #: libraries/display_tbl.lib.php:588 -#, fuzzy #| msgid "Relational display field" msgid "Relational display column" -msgstr "Relational display field" +msgstr "Relational display column" #: libraries/display_tbl.lib.php:595 msgid "Show binary contents" From 380a4d54daec740147286af6110ba454b1f2c06b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:51:22 +0200 Subject: [PATCH 14/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 31d2002ef..45e35bda5 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -2690,10 +2690,9 @@ msgstr "CSV" #: libraries/export/csv.php:21 libraries/import/csv.php:27 #: libraries/import/csv.php:59 libraries/import/ldi.php:40 -#, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" -msgstr "Lines terminated by" +msgstr "Columns terminated by" #: libraries/export/csv.php:22 libraries/import/csv.php:28 #: libraries/import/csv.php:71 libraries/import/ldi.php:41 From 6640578b847d5ca4abee9ee6c414643fc147cb25 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:51:49 +0200 Subject: [PATCH 15/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 45e35bda5..a4f39801b 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -2696,10 +2696,9 @@ msgstr "Columns terminated by" #: libraries/export/csv.php:22 libraries/import/csv.php:28 #: libraries/import/csv.php:71 libraries/import/ldi.php:41 -#, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" -msgstr "Fields enclosed by" +msgstr "Columns enclosed by" #: libraries/export/csv.php:23 libraries/import/csv.php:29 #: libraries/import/csv.php:75 libraries/import/ldi.php:42 From 48fef99b78b1d71a16c73c2910ec45ea5de58714 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:51:59 +0200 Subject: [PATCH 16/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index a4f39801b..e31bb3d83 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -2702,10 +2702,9 @@ msgstr "Columns enclosed by" #: libraries/export/csv.php:23 libraries/import/csv.php:29 #: libraries/import/csv.php:75 libraries/import/ldi.php:42 -#, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" -msgstr "Fields escaped by" +msgstr "Columns escaped by" #: libraries/export/csv.php:24 libraries/import/csv.php:30 #: libraries/import/csv.php:79 libraries/import/ldi.php:43 From 6e4ca526ded3dadd6b8b5be0077c628d0d8adcd3 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:52:08 +0200 Subject: [PATCH 17/75] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index e31bb3d83..e59090945 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 21:51+0200\n" +"PO-Revision-Date: 2010-06-04 21:52+0200\n" "Last-Translator: Marc \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -2720,10 +2720,9 @@ msgid "Replace NULL by" msgstr "Replace NULL by" #: libraries/export/csv.php:26 libraries/export/excel.php:23 -#, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" -msgstr "Remove CRLF characters within fields" +msgstr "Remove CRLF characters within columns" #: libraries/export/csv.php:27 libraries/export/excel.php:24 #: libraries/export/htmlword.php:26 libraries/export/latex.php:57 From 9b0ecd4fc48069d0c2784a0f6d60d889ad936dc1 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:52:21 +0200 Subject: [PATCH 18/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index e59090945..2f5091e82 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -2729,10 +2729,9 @@ msgstr "Remove CRLF characters within columns" #: libraries/export/ods.php:24 libraries/export/odt.php:50 #: libraries/export/texytext.php:34 libraries/export/xls.php:24 #: libraries/export/xlsx.php:24 -#, fuzzy #| msgid "Put fields names in the first row" msgid "Put columns names in the first row" -msgstr "Put fields names in the first row" +msgstr "Put columns names in the first row" #: libraries/export/excel.php:18 msgid "CSV for MS Excel" From 6a52b935ba026a630da038404093fd240a5c7e8a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:52:35 +0200 Subject: [PATCH 19/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 2f5091e82..1b337cd8c 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -2866,10 +2866,9 @@ msgid "Database export options" msgstr "Database export options" #: libraries/export/sql.php:80 -#, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" -msgstr "Enclose table and field names with backquotes" +msgstr "Enclose table and column names with backquotes" #: libraries/export/sql.php:86 msgid "Add into comments" From a431ec588926af3534d3297237946d175878ae8b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:52:49 +0200 Subject: [PATCH 20/75] Translation update done using Pootle. --- po/en_GB.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 1b337cd8c..d3eca43dd 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3087,10 +3087,10 @@ msgid "Invalid format of CSV input on line %d." msgstr "Invalid format of CSV input on line %d." #: libraries/import/csv.php:312 -#, fuzzy, php-format +#, php-format #| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." -msgstr "Invalid field count in CSV input on line %d." +msgstr "Invalid column count in CSV input on line %d." #: libraries/import/docsql.php:29 msgid "DocSQL" From 8cc722e9cb43921d07aaa7179fcd7977ac54dfd8 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:52:58 +0200 Subject: [PATCH 21/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index d3eca43dd..2eafcd4ff 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4465,10 +4465,9 @@ msgid "Run SQL query/queries on database %s" msgstr "Run SQL query/queries on database %s" #: libraries/sql_query_form.lib.php:317 -#, fuzzy #| msgid "Column names" msgid "Columns" -msgstr "Column names" +msgstr "Columns" #: libraries/sql_query_form.lib.php:352 sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" From 54f10e3ce85381b18ba257fed44df907445682e4 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:53:21 +0200 Subject: [PATCH 22/75] Translation update done using Pootle. --- po/en_GB.po | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 2eafcd4ff..cc3f8ecff 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 21:52+0200\n" +"PO-Revision-Date: 2010-06-04 21:53+0200\n" "Last-Translator: Marc \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -4583,7 +4583,6 @@ msgid "Length/Values" msgstr "Length/Values" #: libraries/tbl_properties.inc.php:105 -#, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " #| "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") " @@ -4595,10 +4594,10 @@ msgid "" "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'...
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')." +"If column type is \"enum\" or \"set\", please enter the values using this " +"format: 'a','b','c'...
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')." #: libraries/tbl_properties.inc.php:106 msgid "" From 61d4fcc4d0e6660466b6273d7022b39f0aef8f7f Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:53:31 +0200 Subject: [PATCH 23/75] Translation update done using Pootle. --- po/en_GB.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index cc3f8ecff..d85e9d021 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4672,10 +4672,10 @@ msgid "Save" msgstr "Save" #: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 -#, fuzzy, php-format +#, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" -msgstr "Add column(s)" +msgstr "Add %s column(s)" #: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 #, fuzzy From 7f73b8310b0c09aa67f6cfe670d0d6c3c01e4021 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:53:47 +0200 Subject: [PATCH 24/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index d85e9d021..c7f2347b4 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4678,10 +4678,9 @@ msgid "Add %s column(s)" msgstr "Add %s column(s)" #: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 -#, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." -msgstr "You have to add at least one field." +msgstr "You have to add at least one column." #: libraries/tbl_triggers.lib.php:29 msgid "Event" From f88f8ccea6a6a9ca129708fb75379b1ef9f2c444 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:54:14 +0200 Subject: [PATCH 25/75] Translation update done using Pootle. --- po/en_GB.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index c7f2347b4..4a689560d 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 21:53+0200\n" +"PO-Revision-Date: 2010-06-04 21:54+0200\n" "Last-Translator: Marc \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -4687,7 +4687,6 @@ msgid "Event" msgstr "Event" #: libraries/transformations/application_octetstream__download.inc.php:10 -#, fuzzy #| msgid "" #| "Displays a link to download the binary data of the field. You can use the " #| "first option to specify the filename, or use the second option as the " @@ -4699,9 +4698,9 @@ msgid "" "of a column which contains the filename. If you use the second option, you " "need to set the first option to the empty string." msgstr "" -"Displays a link to download the binary data of the field. You can use the " +"Displays a link to download the binary data of the column. You can use the " "first option to specify the filename, or use the second option as the name " -"of a field which contains the filename. If you use the second option, you " +"of a column which contains the filename. If you use the second option, you " "need to set the first option to the empty string." #: libraries/transformations/application_octetstream__hex.inc.php:10 From f892819cb1c3fc3eec47ce628dcaa08b32c60ca8 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:54:37 +0200 Subject: [PATCH 26/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 4a689560d..3e924f99b 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4725,7 +4725,6 @@ msgid "Displays a link to download this image." msgstr "Displays a link to download this image." #: libraries/transformations/text_plain__dateformat.inc.php:10 -#, fuzzy #| msgid "" #| "Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as " #| "formatted date. The first option is the offset (in hours) which will be " @@ -4745,7 +4744,7 @@ msgid "" "documentation for PHP's strftime() function and for \"utc\" it is done using " "gmdate() function." msgstr "" -"Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as " +"Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp column as " "formatted date. The first option is the offset (in hours) which will be " "added to the timestamp (Default: 0). Use second option to specify a " "different date/time format string. Third option determines whether you want " From 177c6a68fcf5583bffc8e2bb5a801c703acc23f1 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:55:23 +0200 Subject: [PATCH 27/75] Translation update done using Pootle. --- po/en_GB.po | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 3e924f99b..313b731ee 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 21:54+0200\n" +"PO-Revision-Date: 2010-06-04 21:55+0200\n" "Last-Translator: Marc \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -4754,7 +4754,6 @@ msgstr "" "gmdate() function." #: libraries/transformations/text_plain__external.inc.php:10 -#, fuzzy #| msgid "" #| "LINUX ONLY: Launches an external application and feeds it the field data " #| "via standard input. Returns the standard output of the application. The " @@ -4778,16 +4777,16 @@ msgid "" "will prevent wrapping and ensure that the output appears all on one line " "(Default 1)." msgstr "" -"LINUX ONLY: Launches an external application and feeds it the field data via " -"standard input. Returns the standard output of the application. The default " -"is Tidy, to pretty-print HTML code. For security reasons, you have to " -"manually edit the file libraries/transformations/text_plain__external.inc." -"php and list the tools you want to make available. The first option is then " -"the number of the program you want to use and the second option is the " -"parameters for the program. The third option, if set to 1, will convert the " -"output using htmlspecialchars() (Default 1). The fourth option, if set to 1, " -"will prevent wrapping and ensure that the output appears all on one line " -"(Default 1)." +"LINUX ONLY: Launches an external application and feeds it the column data " +"via standard input. Returns the standard output of the application. The " +"default is Tidy, to pretty-print HTML code. For security reasons, you have " +"to manually edit the file " +"libraries/transformations/text_plain__external.inc.php and list the tools " +"you want to make available. The first option is then the number of the " +"program you want to use and the second option is the parameters for the " +"program. The third option, if set to 1, will convert the output using " +"htmlspecialchars() (Default 1). The fourth option, if set to 1, will prevent " +"wrapping and ensure that the output appears all on one line (Default 1)." #: libraries/transformations/text_plain__formatted.inc.php:10 #, fuzzy From 088ea8c50474a7b72287e45c7908ac92db1e44f1 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:55:44 +0200 Subject: [PATCH 28/75] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 313b731ee..b57716123 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4789,7 +4789,6 @@ msgstr "" "wrapping and ensure that the output appears all on one line (Default 1)." #: libraries/transformations/text_plain__formatted.inc.php:10 -#, fuzzy #| msgid "" #| "Displays the contents of the field as-is, without running it through " #| "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -4797,8 +4796,8 @@ msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." msgstr "" -"Displays the contents of the field as-is, without running it through " -"htmlspecialchars(). That is, the field is assumed to contain valid HTML." +"Displays the contents of the column as-is, without running it through " +"htmlspecialchars(). That is, the column is assumed to contain valid HTML." #: libraries/transformations/text_plain__imagelink.inc.php:10 #, fuzzy From 9aa858202308e06fd1a217ed3225a603b56365b0 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:56:01 +0200 Subject: [PATCH 29/75] Translation update done using Pootle. --- po/en_GB.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index b57716123..0a6ea06bc 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 21:55+0200\n" +"PO-Revision-Date: 2010-06-04 21:56+0200\n" "Last-Translator: Marc \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -4800,7 +4800,6 @@ msgstr "" "htmlspecialchars(). That is, the column is assumed to contain valid HTML." #: libraries/transformations/text_plain__imagelink.inc.php:10 -#, fuzzy #| msgid "" #| "Displays an image and a link; the field contains the filename. The first " #| "option is a URL prefix like \"http://www.example.com/\". The second and " @@ -4810,9 +4809,9 @@ msgid "" "option is a URL prefix like \"http://www.example.com/\". The second and " "third options are the width and the height in pixels." msgstr "" -"Displays an image and a link; the field contains the filename. The first " -"option is a URL prefix like \"http://www.example.com/\". The second and " -"third options are the width and the height in pixels." +"Displays an image and a link; the column contains the filename. The first " +"option is a URL prefix like \"http://www.example.com/\". The second and third " +"options are the width and the height in pixels." #: libraries/transformations/text_plain__link.inc.php:10 #, fuzzy From d7bbfd0d2310e85395a917377735077e8618d839 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:56:17 +0200 Subject: [PATCH 30/75] Translation update done using Pootle. --- po/en_GB.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 0a6ea06bc..b5a6ab379 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4814,7 +4814,6 @@ msgstr "" "options are the width and the height in pixels." #: libraries/transformations/text_plain__link.inc.php:10 -#, fuzzy #| msgid "" #| "Displays a link; the field contains the filename. The first option is a " #| "URL prefix like \"http://www.example.com/\". The second option is a title " @@ -4824,9 +4823,9 @@ msgid "" "prefix like \"http://www.example.com/\". The second option is a title for " "the link." msgstr "" -"Displays a link; the field contains the filename. The first option is a URL " -"prefix like \"http://www.example.com/\". The second option is a title for " -"the link." +"Displays a link; the column contains the filename. The first option is a URL " +"prefix like \"http://www.example.com/\". The second option is a title for the " +"link." #: libraries/transformations/text_plain__longToIpv4.inc.php:10 msgid "" From b2ff619af9b5bde30aeceeacdb2a315e9a33957f Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:56:30 +0200 Subject: [PATCH 31/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index b5a6ab379..0a410bf2d 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5048,10 +5048,9 @@ msgid "Create a page" msgstr "Create a page" #: pdf_pages.php:310 -#, fuzzy #| msgid "Page number:" msgid "Page name" -msgstr "Page number:" +msgstr "Page name" #: pdf_pages.php:314 #, fuzzy From 8ee52737180b50125c163d0890f4fc836e06cd8b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:56:39 +0200 Subject: [PATCH 32/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 0a410bf2d..5cfea656a 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5053,10 +5053,9 @@ msgid "Page name" msgstr "Page name" #: pdf_pages.php:314 -#, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" -msgstr "Automatic layout" +msgstr "Automatic layout based on" #: pdf_pages.php:316 msgid "Internal relations" From d1f6d7d0d353796a89f6f71e62dcc3a09f46fd8a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:57:16 +0200 Subject: [PATCH 33/75] Translation update done using Pootle. --- po/en_GB.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 5cfea656a..0e271727f 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 21:56+0200\n" +"PO-Revision-Date: 2010-06-04 21:57+0200\n" "Last-Translator: Marc \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -5182,7 +5182,6 @@ msgid "To select relation, click :" msgstr "To select relation, click :" #: pmd_help.php:29 -#, fuzzy #| msgid "" #| "The display field is shown in pink. To set/unset a field as the display " #| "field, click the \"Choose field to display\" icon, then click on the " @@ -5192,9 +5191,9 @@ msgid "" "column, click the \"Choose column to display\" icon, then click on the " "appropriate column name." msgstr "" -"The display field is shown in pink. To set/unset a field as the display " -"field, click the \"Choose field to display\" icon, then click on the " -"appropriate field name." +"The display column is shown in pink. To set/unset a column as the display " +"column, click the \"Choose column to display\" icon, then click on the " +"appropriate column name." #: pmd_pdf.php:63 msgid "Page has been created" From f2797c359adc15a605233ea0c543b8586331d6b3 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:57:41 +0200 Subject: [PATCH 34/75] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 0e271727f..838f30826 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6283,7 +6283,6 @@ msgstr "" "documentation[/a]. Otherwise you will be only able to download or display it." #: setup/lib/messages.inc.php:35 -#, fuzzy #| msgid "" #| "Defines which type of editing controls should be used for CHAR and " #| "VARCHAR fields; [kbd]input[/kbd] - allows limiting of input length, [kbd]" @@ -6294,8 +6293,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Defines which type of editing controls should be used for CHAR and VARCHAR " -"fields; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" -"kbd] - allows newlines in fields" +"columns; [kbd]input[/kbd] - allows limiting of input length, " +"[kbd]textarea[/kbd] - allows newlines in columns" #: setup/lib/messages.inc.php:36 #, fuzzy From c3ca56484891152bc318887a16fa55c02a667313 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:57:55 +0200 Subject: [PATCH 35/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 838f30826..3d32731c1 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6297,10 +6297,9 @@ msgstr "" "[kbd]textarea[/kbd] - allows newlines in columns" #: setup/lib/messages.inc.php:36 -#, fuzzy #| msgid "CHAR fields editing" msgid "CHAR columns editing" -msgstr "CHAR fields editing" +msgstr "CHAR columns editing" #: setup/lib/messages.inc.php:37 msgid "Number of columns for CHAR/VARCHAR textareas" From ca09bca158b3a0110ea74d5ee56be0141c86fc58 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:58:17 +0200 Subject: [PATCH 36/75] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 3d32731c1..96d7bd4bd 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 21:57+0200\n" +"PO-Revision-Date: 2010-06-04 21:58+0200\n" "Last-Translator: Marc \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -7023,7 +7023,6 @@ msgid "GZip output buffering" msgstr "GZip output buffering" #: setup/lib/messages.inc.php:217 -#, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " #| "DATETIME and TIMESTAMP, ascending order otherwise" @@ -7031,7 +7030,7 @@ msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -"[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " +"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" #: setup/lib/messages.inc.php:218 From 7345aba6887c8fc9a502bfb1c57c52781dd60977 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:58:29 +0200 Subject: [PATCH 37/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 96d7bd4bd..327e37f44 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7050,10 +7050,9 @@ msgid "Iconic table operations" msgstr "Iconic table operations" #: setup/lib/messages.inc.php:224 -#, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" -msgstr "Disallow BLOB and BINARY fields from editing" +msgstr "Disallow BLOB and BINARY columns from editing" #: setup/lib/messages.inc.php:225 #, fuzzy From 9aabf7218885674b53ef82786291b563d0e0f8ac Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:58:37 +0200 Subject: [PATCH 38/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 327e37f44..ab73eed59 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7055,10 +7055,9 @@ msgid "Disallow BLOB and BINARY columns from editing" msgstr "Disallow BLOB and BINARY columns from editing" #: setup/lib/messages.inc.php:225 -#, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" -msgstr "Protect binary fields" +msgstr "Protect binary columns" #: setup/lib/messages.inc.php:226 msgid "" From 1f46429a7c72620ac3c1a028836213fe36f974b6 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 21:58:54 +0200 Subject: [PATCH 39/75] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index ab73eed59..e0a00cb2e 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7521,7 +7521,6 @@ msgid "PDF schema: table coordinates" msgstr "PDF schema: table coordinates" #: setup/lib/messages.inc.php:320 -#, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " #| "suggested: [kbd]pma_table_info[/kbd]" @@ -7529,8 +7528,8 @@ msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -"Table to describe the display fields, leave blank for no support; suggested: " -"[kbd]pma_table_info[/kbd]" +"Table to describe the display columns, leave blank for no support; " +"suggested: [kbd]pma_table_info[/kbd]" #: setup/lib/messages.inc.php:321 #, fuzzy From 1153e5c8151c072340dd25f83cdf9f3cc3796e50 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 22:00:21 +0200 Subject: [PATCH 40/75] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index e0a00cb2e..95b872f92 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 21:58+0200\n" +"PO-Revision-Date: 2010-06-04 22:00+0200\n" "Last-Translator: Marc \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -7532,10 +7532,9 @@ msgstr "" "suggested: [kbd]pma_table_info[/kbd]" #: setup/lib/messages.inc.php:321 -#, fuzzy #| msgid "Display fields table" msgid "Display columns table" -msgstr "Display fields table" +msgstr "Display columns table" #: setup/lib/messages.inc.php:323 msgid "User for config auth" From 183aea41fa2e34bd0df5d141054d67f06d9c5a42 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 22:00:52 +0200 Subject: [PATCH 41/75] Translation update done using Pootle. --- po/en_GB.po | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 95b872f92..41577819e 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7565,12 +7565,10 @@ msgid "Verbose name of this server" msgstr "Verbose name of this server" #: setup/lib/messages.inc.php:329 -#, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" msgid "Whether a user should be displayed a "show all (rows)" button" -msgstr "" -"Whether a user should be displayed a "show all (records)" button" +msgstr "Whether a user should be displayed a "show all (rows)" button" #: setup/lib/messages.inc.php:330 msgid "Allow to display all the rows" From 3970e0e9f0df8a1e83d8c086d1b5a3887be68403 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 22:01:05 +0200 Subject: [PATCH 42/75] Translation update done using Pootle. --- po/en_GB.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 41577819e..21a36e7f1 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 22:00+0200\n" +"PO-Revision-Date: 2010-06-04 22:01+0200\n" "Last-Translator: Marc \n" "Language-Team: english-gb \n" "Language: en_GB\n" @@ -7860,10 +7860,9 @@ msgid "Ignore" msgstr "Ignore" #: tbl_change.php:728 -#, fuzzy #| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " -msgstr " Because of its length,
this field might not be editable " +msgstr " Because of its length,
this column might not be editable " #: tbl_change.php:888 msgid "Remove BLOB Repository Reference" From 4a182dc6749a8a850b0ce155a50aed9e615f0440 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 22:01:18 +0200 Subject: [PATCH 43/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 21a36e7f1..7ebb80ae6 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -8150,10 +8150,9 @@ msgid "Operator" msgstr "Operator" #: tbl_select.php:270 -#, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" -msgstr "Select fields (at least one):" +msgstr "Select columns (at least one):" #: tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" From 12308500460f7dc090497d3230f9c1231135c304 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 22:01:35 +0200 Subject: [PATCH 44/75] Translation update done using Pootle. --- po/en_GB.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index 7ebb80ae6..db8d56690 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -8176,10 +8176,10 @@ msgid "None" msgstr "None" #: tbl_structure.php:374 -#, fuzzy, php-format +#, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" -msgstr "Table %s has been dropped" +msgstr "Column %s has been dropped" #: tbl_structure.php:385 #, php-format From c6b3ce8ff5028093bac6d8cb0e8d845df3cc137b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 4 Jun 2010 22:01:58 +0200 Subject: [PATCH 45/75] Translation update done using Pootle. --- po/en_GB.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index db8d56690..f1d875b5d 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -8200,10 +8200,9 @@ msgid "Propose table structure" msgstr "Propose table structure" #: tbl_structure.php:540 -#, fuzzy #| msgid "Add new field" msgid "Add field" -msgstr "Add new field" +msgstr "Add field" #: tbl_structure.php:554 msgid "At End of Table" From fc2e0be48cc21e962b3e61dbe7b8bb4fbdfdf6a3 Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:06:18 +0200 Subject: [PATCH 46/75] Translation update done using Pootle. --- po/sl.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 271f0c229..cd06d6ff1 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-03 20:07+0200\n" +"PO-Revision-Date: 2010-06-04 23:06+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3387,6 +3387,9 @@ msgid "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" +"Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega " +"dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za " +"shranitev stavkov iz transakcije uporabljene začasne datoteke." #: libraries/messages.inc.php:63 msgid "The number of transactions that used the temporary binary log cache." From 068cb44ff1b686b788dd652c21b024239030f18e Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:10:32 +0200 Subject: [PATCH 47/75] Translation update done using Pootle. --- po/sl.po | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index cd06d6ff1..896512be1 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 23:06+0200\n" +"PO-Revision-Date: 2010-06-04 23:10+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3404,6 +3404,10 @@ msgid "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." msgstr "" +"Število začasnih tabel na disku, ki jih je strežnik samodejno ustvaril med " +"izvajanjem stavkov. Če je Created_tmp_disk_tables velika, boste morda želeli " +"povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele " +"temeljile na pomnilniku namesto na disku." #: libraries/messages.inc.php:65 msgid "How many temporary files mysqld has created." From 53eda16b4b6c59f8b96ebed8d99849dcd6c409d6 Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:11:13 +0200 Subject: [PATCH 48/75] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 896512be1..ec89f8263 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 23:10+0200\n" +"PO-Revision-Date: 2010-06-04 23:11+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3418,6 +3418,8 @@ msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" +"Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril " +"med izvajanjem stavkov." #: libraries/messages.inc.php:67 msgid "" From f04a74a95cc43d2836f2ea0f0cbea1167e674745 Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:12:25 +0200 Subject: [PATCH 49/75] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index ec89f8263..b4cbe9f11 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 23:11+0200\n" +"PO-Revision-Date: 2010-06-04 23:12+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3426,6 +3426,8 @@ msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" +"Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke " +"napake (najverjetneje podvojen ključ)." #: libraries/messages.inc.php:68 msgid "" From 7a6cf32ffd9236d6f26329752a48a04a3880f632 Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:14:30 +0200 Subject: [PATCH 50/75] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index b4cbe9f11..14a284dfa 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 23:12+0200\n" +"PO-Revision-Date: 2010-06-04 23:14+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3434,6 +3434,8 @@ msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" +"Število upravljalnih niti INSERT DELAYED v uporabi. Vsaka različna tabela, " +"na kateri se uporabi INSERT DELAYED, dobi svojo lastno nit." #: libraries/messages.inc.php:69 msgid "The number of INSERT DELAYED rows written." From c6f039b0a1073208fc0327b176e9d8a451f985fb Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:18:38 +0200 Subject: [PATCH 51/75] Translation update done using Pootle. --- po/sl.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 14a284dfa..af9eada7a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 23:14+0200\n" +"PO-Revision-Date: 2010-06-04 23:18+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3459,6 +3459,9 @@ msgid "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" +"Strežnik MySQL lahko vpraša skladiščni pogon NDB Cluster, če ve za tabelo z " +"navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat " +"so bile tabele odkrite." #: libraries/messages.inc.php:74 msgid "" From 86f77765a8bee944e61abdf24ac88fec1862047a Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:21:30 +0200 Subject: [PATCH 52/75] Translation update done using Pootle. --- po/sl.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index af9eada7a..5f574fade 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 23:18+0200\n" +"PO-Revision-Date: 2010-06-04 23:21+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3469,6 +3469,9 @@ msgid "" "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" +"Koliko krat je bil prvi vnos prebran iz indeksa. Če je vrednost visoka, " +"kaže, da strežnik izvaja mnogo pregledov indeksa; na primer: SELECT col1 " +"FROM foo, pri čemer se predpostavlja, da je col1 indeksiran." #: libraries/messages.inc.php:75 msgid "" From 5b963d0e90806dbfdbdfd8e91bb96bccb9fd697e Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:23:12 +0200 Subject: [PATCH 53/75] Translation update done using Pootle. --- po/sl.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 5f574fade..076471578 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 23:21+0200\n" +"PO-Revision-Date: 2010-06-04 23:23+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3478,6 +3478,9 @@ msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" +"Število zahtev za branje vrstice temelječih na ključu. Če je ta vrednost " +"visoka, je to dober znak, da so vaše poizvedbe in tabele primerno " +"indeksirane." #: libraries/messages.inc.php:76 msgid "" From ed69959f77a11c7cc39e9a9a2b1ea406181fb46f Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:25:00 +0200 Subject: [PATCH 54/75] Translation update done using Pootle. --- po/sl.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/sl.po b/po/sl.po index 076471578..2f40ed189 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 23:23+0200\n" +"PO-Revision-Date: 2010-06-04 23:25+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3405,9 +3405,9 @@ msgid "" "based instead of disk-based." msgstr "" "Število začasnih tabel na disku, ki jih je strežnik samodejno ustvaril med " -"izvajanjem stavkov. Če je Created_tmp_disk_tables velika, boste morda želeli " -"povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele " -"temeljile na pomnilniku namesto na disku." +"izvajanjem izjav. Če je Created_tmp_disk_tables velika, boste morda želeli " +"povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile " +"na pomnilniku namesto na disku." #: libraries/messages.inc.php:65 msgid "How many temporary files mysqld has created." From fb2a4eee51631e95babafa9a1de987b09e8d5192 Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:25:11 +0200 Subject: [PATCH 55/75] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 2f40ed189..1858115ac 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3389,7 +3389,7 @@ msgid "" msgstr "" "Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega " "dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za " -"shranitev stavkov iz transakcije uporabljene začasne datoteke." +"shranitev izjav iz transakcije uporabljene začasne datoteke." #: libraries/messages.inc.php:63 msgid "The number of transactions that used the temporary binary log cache." From f3eb5bafce1a4d55aa96b7703a22b5001627e6f1 Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:27:55 +0200 Subject: [PATCH 56/75] Translation update done using Pootle. --- po/sl.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 1858115ac..a1f99223f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 23:25+0200\n" +"PO-Revision-Date: 2010-06-04 23:27+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3488,6 +3488,9 @@ msgid "" "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" +"Število zahtev za branje naslednje vrstice v zaporedju ključa. To je " +"povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če " +"pregledujete indeks." #: libraries/messages.inc.php:77 msgid "" From 898d7def27edfed7ba5498793ef5e008a2345f4a Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:29:17 +0200 Subject: [PATCH 57/75] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index a1f99223f..742b39f9a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 23:27+0200\n" +"PO-Revision-Date: 2010-06-04 23:29+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3497,6 +3497,8 @@ msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" +"Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Ta postopek " +"branja se uporablja predvsem za optimizacijo ORDER BY ... DESC." #: libraries/messages.inc.php:78 msgid "" From 3526b4fa8a65f6b3b3ef71495fa63d47077b6166 Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:36:20 +0200 Subject: [PATCH 58/75] Translation update done using Pootle. --- po/sl.po | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 742b39f9a..51df67695 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 23:29+0200\n" +"PO-Revision-Date: 2010-06-04 23:36+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3507,6 +3507,10 @@ msgid "" "probably have a lot of queries that require MySQL to scan whole tables or " "you have joins that don't use keys properly." msgstr "" +"Število zahtev za branje vrstice temelječih na ustaljenem položaju. To je " +"visoko, če izvajate veliko poizvedb, ki potrebujejo razvrščanje rezultata. " +"Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih " +"tabel, ali stike, ki ne uporabljajo ključev pravilno." #: libraries/messages.inc.php:79 msgid "" From 4fb2f7a2330e5d402dec60328941d07b0685a792 Mon Sep 17 00:00:00 2001 From: Domen Date: Fri, 4 Jun 2010 23:39:18 +0200 Subject: [PATCH 59/75] Translation update done using Pootle. --- po/sl.po | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 51df67695..1045b2aca 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-05-31 14:33-0400\n" -"PO-Revision-Date: 2010-06-04 23:36+0200\n" +"PO-Revision-Date: 2010-06-04 23:39+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -3519,6 +3519,10 @@ msgid "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." msgstr "" +"Število zahtev za branje naslednje vrstice v podatkovni datoteki. To je " +"visoko, če izvajate veliko pregledov tabel. Na splošno to kaže, da vaše " +"tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo " +"prednosti indeksov, ki jih imate." #: libraries/messages.inc.php:80 msgid "The number of internal ROLLBACK statements." From c3ea6fb22bdc7c728d68388e715aeeffeaa422cb Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 5 Jun 2010 08:20:36 -0400 Subject: [PATCH 60/75] bug #3011126 [display] Edit link missing after long query --- ChangeLog | 1 + libraries/common.lib.php | 13 +++++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index dca8ffe19..395def4d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -16,6 +16,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA - bug [synchronize] Rows were deleted in target table regardless of the "Would you like to delete..." option - bug [privileges] List of tables not shown when the db name has a wildcard +- bug #3011126 [display] Edit link missing after long query 3.3.3.0 (2010-05-10) - patch #2982480 [navi] Do not group if there would be one table in group, diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 2e184746d..c62d51885 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -1191,7 +1191,9 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice') $url_params['sql_query'] = $sql_query; $url_params['show_query'] = 1; - if (! empty($cfg['SQLQuery']['Edit']) && ! $query_too_big) { + // even if the query is big and was truncated, offer the chance + // to edit it (unless it's enormous, see PMA_linkOrButton() ) + if (! empty($cfg['SQLQuery']['Edit'])) { if ($cfg['EditInWindow'] == true) { $onclick = 'window.parent.focus_querywindow(\'' . PMA_jsFormat($sql_query, false) . '\'); return false;'; } else { @@ -1689,6 +1691,13 @@ function PMA_generate_html_tabs($tabs, $url_params) function PMA_linkOrButton($url, $message, $tag_params = array(), $new_form = true, $strip_img = false, $target = '') { + $url_length = strlen($url); + // with this we should be able to catch case of image upload + // into a (MEDIUM) BLOB; not worth generating even a form for these + if ($url_length > $GLOBALS['cfg']['LinkLengthLimit'] * 100) { + return ''; + } + if (! is_array($tag_params)) { $tmp = $tag_params; $tag_params = array(); @@ -1710,7 +1719,7 @@ function PMA_linkOrButton($url, $message, $tag_params = array(), $tag_params_strings[] = $par_name . '="' . $par_value . '"'; } - if (strlen($url) <= $GLOBALS['cfg']['LinkLengthLimit']) { + if ($url_length <= $GLOBALS['cfg']['LinkLengthLimit']) { // no whitespace within an else Safari will make it part of the link $ret = "\n" . '' From 5a0bf298896f7b6d93b5e571fe429232e2b04109 Mon Sep 17 00:00:00 2001 From: Domen Date: Sun, 6 Jun 2010 22:21:47 +0200 Subject: [PATCH 61/75] Translation update done using Pootle. --- po/sl.po | 122 +++---------------------------------------------------- 1 file changed, 5 insertions(+), 117 deletions(-) diff --git a/po/sl.po b/po/sl.po index 97b26cc99..8725e3533 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-06-04 16:07-0400\n" -"PO-Revision-Date: 2010-06-04 23:39+0200\n" +"PO-Revision-Date: 2010-06-06 22:21+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -8106,10 +8106,9 @@ msgid "Propose table structure" msgstr "Predlagaj strukturo tabele" #: tbl_structure.php:540 -#, fuzzy #| msgid "Add column(s)" msgid "Add column" -msgstr "Dodaj stolpec(-ce)" +msgstr "Dodaj stolpec" #: tbl_structure.php:554 msgid "At End of Table" @@ -8319,114 +8318,3 @@ msgstr "Ime VIEW" #: view_operations.php:93 msgid "Rename view to" msgstr "Preimenuj pogled v" - -#~| msgid "Add new field" -#~ msgid "Add field" -#~ msgstr "Dodaj polje" - -#~ msgid "Field" -#~ msgstr "Polje" - -#~ msgid "Records" -#~ msgstr "Zapisi" - -#~ msgid "Fields terminated by" -#~ msgstr "Polja zaključena z" - -#~ msgid "Fields" -#~ msgstr "Polja" - -#~ msgid "Add %s field(s)" -#~ msgstr "Dodaj %s polj(e)" - -#~ msgid "Field %s has been dropped" -#~ msgstr "Polje %s je zavrženo" - -#~ msgid "See image/jpeg: inline" -#~ msgstr "Pokaži sliko/jpeg: vključeno" - -#~ msgid "zipped" -#~ msgstr "zipano" - -#~ msgid "gzipped" -#~ msgstr "gzipano" - -#~ msgid "bzipped" -#~ msgstr "bzipano" - -#~ msgid "" -#~ "Add custom comment into header (\n" -#~ " splits lines)" -#~ msgstr "" -#~ "Dodaj prilagojen komentar v glavo (\n" -#~ " prelomi vrstice)" - -#~ msgid "and" -#~ msgstr "in" - -#~ msgctxt "$strBLOBRepositoryDisabled" -#~ msgid "Disabled" -#~ msgstr "Onemogočeno" - -#~ msgctxt "$strBLOBRepositoryEnabled" -#~ msgid "Enabled" -#~ msgstr "Omogočeno" - -#~ msgctxt "$strBLOBRepositoryRepair" -#~ msgid "Repair" -#~ msgstr "Popravi" - -#~ msgid "Calendar" -#~ msgstr "Koledar" - -#~ msgid "MySQL 4.0 compatible" -#~ msgstr "Združljivo z MySQL 4.0" - -#~ msgid "Could not load default configuration from: \"%1$s\"" -#~ msgstr "Ne morem naložiti privzete konfiguracije iz: \"%1$s\"" - -#~ msgid "Create an index on %s columns" -#~ msgstr "Ustvari indeks na %s stolpcih" - -#~ msgctxt "$strCreateTableShort" -#~ msgid "Create table" -#~ msgstr "Ustvari tabelo" - -#~ msgctxt "$strCreateUserDatabaseNone" -#~ msgid "None" -#~ msgstr "Nobena" - -#~ msgid "Flush the table (\"FLUSH\")" -#~ msgstr "Počisti tabelo (\"FLUSH\")" - -#~ msgid "Invalid server index: \"%s\"" -#~ msgstr "Neveljaven indeks strežnika: \"%s\"" - -#~ msgctxt "$strMIME_description" -#~ msgid "Description" -#~ msgstr "Opis" - -#~ msgctxt "$strNoneDefault" -#~ msgid "None" -#~ msgstr "Brez" - -#~ msgid "Schema of the \"%s\" database - Page %s" -#~ msgstr "Shema podatkovne zbirke \"%s\" - Stran %s" - -#~ msgid "The \"%s\" table doesn't exist!" -#~ msgstr "Tabela \"%s\" ne obstaja!" - -#~ msgid "running on %s" -#~ msgstr "teče na %s" - -#~ msgid "The scale factor is too small to fit the schema on one page" -#~ msgstr "Faktor povečava je premajhen, da bi spravili shemo na eno stran" - -#~ msgid "" -#~ "Cannot start session without errors, please check errors given in your " -#~ "PHP and/or webserver log file and configure your PHP installation " -#~ "properly." -#~ msgstr "" -#~ "Ne morem začeti seje brez napak; prosimo, preverite napake v vaši PHP in/" -#~ "ali strežnikovi dneviški datoteki in primerno konfigurirajte vašo " -#~ "namestitev PHP." From 4c36c6d42a6ba328e7b2db34def579ac1a1bd4d6 Mon Sep 17 00:00:00 2001 From: "sven.erik.andersen" Date: Mon, 7 Jun 2010 10:58:02 +0200 Subject: [PATCH 62/75] Translation update done using Pootle. --- po/nb.po | 124 +------------------------------------------------------ 1 file changed, 2 insertions(+), 122 deletions(-) diff --git a/po/nb.po b/po/nb.po index f697230d5..bca94d559 100644 --- a/po/nb.po +++ b/po/nb.po @@ -4,13 +4,13 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-06-04 16:07-0400\n" -"PO-Revision-Date: 2010-06-01 09:52+0200\n" +"PO-Revision-Date: 2010-06-07 10:58+0200\n" "Last-Translator: \n" "Language-Team: norwegian \n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -8132,7 +8132,6 @@ msgid "Propose table structure" msgstr "Foreslå tabellstruktur" #: tbl_structure.php:540 -#, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Legg til kolonne(r)" @@ -8344,122 +8343,3 @@ msgstr "VIEW navn" #: view_operations.php:93 msgid "Rename view to" msgstr "Endre tabellens navn" - -#~| msgid "Add new field" -#~ msgid "Add field" -#~ msgstr "Legg til felt" - -#~ msgid "Field" -#~ msgstr "Felt" - -#~ msgid "Records" -#~ msgstr "Rader" - -#~ msgid "Fields terminated by" -#~ msgstr "Felter avsluttet med" - -#~ msgid "Fields" -#~ msgstr "Felter" - -#~ msgid "Add %s field(s)" -#~ msgstr "Legg til %s felt(er)" - -#~ msgid "Field %s has been dropped" -#~ msgstr "Feltet %s har blitt slettet" - -#~ msgid "See image/jpeg: inline" -#~ msgstr "Se image/jpeg: inline" - -#~ msgid "zipped" -#~ msgstr "Komprimert (zip)" - -#~ msgid "gzipped" -#~ msgstr "Komprimert (gz)" - -#~ msgid "bzipped" -#~ msgstr "Komprimert (bz2)" - -#~ msgid "" -#~ "Add custom comment into header (\n" -#~ " splits lines)" -#~ msgstr "" -#~ "Legg til egen kommentar i hodet (\n" -#~ " lager linjeskift)" - -#~ msgid "and" -#~ msgstr "og" - -#~ msgctxt "$strBLOBRepositoryDisabled" -#~ msgid "Disabled" -#~ msgstr "Avslått" - -#~ msgctxt "$strBLOBRepositoryEnabled" -#~ msgid "Enabled" -#~ msgstr "Påslått" - -#~ msgctxt "$strBLOBRepositoryRepair" -#~ msgid "Repair" -#~ msgstr "Reparer" - -#~ msgid "Calendar" -#~ msgstr "Kalender" - -#~ msgid "MySQL 4.0 compatible" -#~ msgstr "MySQL 4.0 kompatibel" - -#~ msgid "Could not load default configuration from: \"%1$s\"" -#~ msgstr "Kunne ikke laste standard konfigurasjonsfil fra: \"%1$s\"" - -#~ msgid "Create an index on %s columns" -#~ msgstr "Lag en indeks på %s kolonner" - -#~ msgctxt "$strCreateTableShort" -#~ msgid "Create table" -#~ msgstr "Opprett tabell" - -#~ msgctxt "$strCreateUserDatabaseNone" -#~ msgid "None" -#~ msgstr "Ingen" - -#~ msgid "Flush the table (\"FLUSH\")" -#~ msgstr "Oppfrisk tabellen (\"FLUSH\")" - -#~ msgid "Invalid server index: \"%s\"" -#~ msgstr "Ugyldig tjenerindeks: \"%s\"" - -#~ msgctxt "$strMIME_description" -#~ msgid "Description" -#~ msgstr "Beskrivelse" - -#~ msgctxt "$strNoneDefault" -#~ msgid "None" -#~ msgstr "Ingen" - -#~ msgid "Schema of the \"%s\" database - Page %s" -#~ msgstr "Skjema for \"%s\"-databasen - Side %s" - -#~ msgid "The \"%s\" table doesn't exist!" -#~ msgstr "Tabellen \"%s\" eksisterer ikke!" - -#~ msgid "" -#~ "This MySQL server works as %s in replication process. For further " -#~ "information about replication status on the server, please visit the replication section." -#~ msgstr "" -#~ "Denne MySQL tjeneren som %s i replikasjonsprosess. For mer " -#~ "informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen." - -#~ msgid "running on %s" -#~ msgstr "som kjører på %s" - -#~ msgid "The scale factor is too small to fit the schema on one page" -#~ msgstr "Skaleringsfaktoren er for liten til å romme alt på en side" - -#~ msgid "" -#~ "Cannot start session without errors, please check errors given in your " -#~ "PHP and/or webserver log file and configure your PHP installation " -#~ "properly." -#~ msgstr "" -#~ "Kan ikke starte sessjonen uten feil, kontroller feilmeldinger i din PHP " -#~ "og/eller webtjenerloggfil og konfigurer din PHP innstallasjon korrekt." From 736b0f3ff78d9128939daf97c338718fa63784d3 Mon Sep 17 00:00:00 2001 From: Pootle server Date: Mon, 7 Jun 2010 19:59:58 +0200 Subject: [PATCH 63/75] Add Welsch translation. --- po/cy.po | 7775 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 7775 insertions(+) create mode 100644 po/cy.po diff --git a/po/cy.po b/po/cy.po new file mode 100644 index 000000000..abd878113 --- /dev/null +++ b/po/cy.po @@ -0,0 +1,7775 @@ +# phpMyAdmin translation. +# Copyright (C) 2003 - 2010 phpMyAdmin devel team +# This file is distributed under the same license as the phpMyAdmin package. +# FIRST AUTHOR , YEAR. +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" +"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.5.3\n" + +#: browse_foreigners.php:38 browse_foreigners.php:59 +#: libraries/display_tbl.lib.php:417 server_privileges.php:1475 +msgid "Show all" +msgstr "" + +#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 +#: pdf_schema.php:1139 +msgid "Page number:" +msgstr "" + +#: browse_foreigners.php:132 +msgid "" +"The target browser window could not be updated. Maybe you have closed the " +"parent window, or your browser's security settings are configured to block " +"cross-window updates." +msgstr "" + +#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 +#: db_structure.php:91 db_structure.php:93 db_structure.php:104 +#: db_structure.php:106 libraries/common.lib.php:2822 +#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: libraries/tbl_links.inc.php:63 +msgid "Search" +msgstr "" + +#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 +#: db_operations.php:499 db_operations.php:609 db_search.php:362 +#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 +#: libraries/Theme_Manager.class.php:311 +#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/display_change_password.lib.php:82 +#: libraries/display_create_table.lib.php:63 +#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 +#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532 +#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:73 +#: libraries/replication_gui.lib.php:369 libraries/select_server.lib.php:104 +#: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 +#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 +#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328 +#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142 +#: server_privileges.php:625 server_privileges.php:1585 +#: server_privileges.php:1932 server_privileges.php:1979 +#: server_privileges.php:2018 server_replication.php:235 +#: server_replication.php:318 server_replication.php:341 +#: server_synchronize.php:1209 tbl_change.php:330 tbl_change.php:1174 +#: tbl_change.php:1211 tbl_indexes.php:254 tbl_operations.php:265 +#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561 +#: tbl_operations.php:681 tbl_select.php:327 tbl_structure.php:562 +#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 +#: view_create.php:182 view_operations.php:101 +msgid "Go" +msgstr "" + +#: browse_foreigners.php:168 browse_foreigners.php:172 +#: libraries/Index.class.php:442 tbl_tracking.php:320 +msgid "Keyname" +msgstr "" + +#: browse_foreigners.php:169 browse_foreigners.php:171 +#: server_collations.php:55 server_collations.php:67 server_engines.php:59 +#: server_status.php:628 +msgid "Description" +msgstr "" + +#: browse_foreigners.php:247 browse_foreigners.php:256 +#: browse_foreigners.php:268 browse_foreigners.php:276 +msgid "Use this value" +msgstr "" + +#: db_create.php:46 +#, possible-php-format +msgid "Database %1$s has been created." +msgstr "" + +#: db_datadict.php:49 db_operations.php:378 +msgid "Database comment: " +msgstr "" + +#: db_datadict.php:165 libraries/tbl_properties.inc.php:724 +#: pdf_schema.php:1236 tbl_operations.php:347 tbl_printview.php:130 +msgid "Table comments" +msgstr "" + +#: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 +#: libraries/export/htmlword.php:244 libraries/export/latex.php:360 +#: libraries/export/odt.php:294 libraries/export/texytext.php:233 +#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:275 +#: pdf_schema.php:1262 pdf_schema.php:1283 tbl_change.php:308 +#: tbl_indexes.php:189 tbl_printview.php:142 tbl_relation.php:402 +#: tbl_select.php:135 tbl_structure.php:177 tbl_tracking.php:273 +#: tbl_tracking.php:324 +msgid "Column" +msgstr "" + +#: db_datadict.php:175 db_printview.php:106 libraries/Index.class.php:443 +#: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 +#: libraries/db_structure.lib.php:60 libraries/export/htmlword.php:245 +#: libraries/export/latex.php:360 libraries/export/odt.php:297 +#: libraries/export/texytext.php:234 libraries/tbl_properties.inc.php:100 +#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2031 +#: tbl_change.php:287 tbl_change.php:314 tbl_printview.php:143 +#: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178 +#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321 +msgid "Type" +msgstr "" + +#: db_datadict.php:177 libraries/Index.class.php:449 +#: libraries/export/htmlword.php:246 libraries/export/latex.php:360 +#: libraries/export/odt.php:300 libraries/export/texytext.php:235 +#: libraries/tbl_properties.inc.php:109 pdf_schema.php:1265 +#: pdf_schema.php:1286 tbl_change.php:323 tbl_printview.php:145 +#: tbl_structure.php:181 tbl_tracking.php:276 tbl_tracking.php:327 +msgid "Null" +msgstr "" + +#: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 +#: libraries/export/latex.php:360 libraries/export/odt.php:303 +#: libraries/export/texytext.php:236 libraries/tbl_properties.inc.php:106 +#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 +#: tbl_structure.php:182 tbl_tracking.php:277 +msgid "Default" +msgstr "" + +#: db_datadict.php:182 libraries/export/htmlword.php:249 +#: libraries/export/latex.php:362 libraries/export/odt.php:307 +#: libraries/export/texytext.php:238 pdf_schema.php:1268 pdf_schema.php:1289 +#: tbl_printview.php:150 +msgid "Links to" +msgstr "" + +#: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 +#: libraries/export/latex.php:45 libraries/export/latex.php:365 +#: libraries/export/odt.php:38 libraries/export/odt.php:312 +#: libraries/export/sql.php:30 libraries/export/texytext.php:241 +#: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 +#: pdf_schema.php:1290 tbl_printview.php:152 +msgid "Comments" +msgstr "" + +#: db_datadict.php:267 libraries/Index.class.php:359 +#: libraries/Index.class.php:386 libraries/export/htmlword.php:322 +#: libraries/export/latex.php:430 libraries/export/odt.php:368 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:263 +#: pdf_schema.php:1344 server_privileges.php:1529 server_privileges.php:1540 +#: server_privileges.php:1850 server_privileges.php:1855 +#: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229 +#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342 +msgid "No" +msgstr "" + +#: db_datadict.php:267 libraries/Index.class.php:360 +#: libraries/Index.class.php:385 libraries/export/htmlword.php:322 +#: libraries/export/latex.php:430 libraries/export/odt.php:368 +#: libraries/export/texytext.php:311 libraries/mult_submits.inc.php:45 +#: libraries/mult_submits.inc.php:50 libraries/mult_submits.inc.php:55 +#: libraries/mult_submits.inc.php:60 libraries/mult_submits.inc.php:92 +#: libraries/mult_submits.inc.php:101 libraries/mult_submits.inc.php:106 +#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262 +#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344 +#: server_databases.php:64 server_privileges.php:1526 +#: server_privileges.php:1540 server_privileges.php:1850 +#: server_privileges.php:1853 server_privileges.php:2148 sql.php:193 +#: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350 +#: tbl_tracking.php:335 tbl_tracking.php:340 +msgid "Yes" +msgstr "" + +#: db_datadict.php:322 db_printview.php:266 tbl_printview.php:498 +msgid "Print" +msgstr "" + +#: db_export.php:29 +msgid "View dump (schema) of database" +msgstr "" + +#: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 +#: db_tracking.php:35 export.php:359 navigation.php:332 +msgid "No tables found in database." +msgstr "" + +#: db_export.php:43 db_search.php:344 server_export.php:27 +msgid "Select All" +msgstr "" + +#: db_export.php:45 db_search.php:347 server_export.php:29 +msgid "Unselect All" +msgstr "" + +#: db_operations.php:38 tbl_create.php:54 +msgid "The database name is empty!" +msgstr "" + +#: db_operations.php:236 +#, possible-php-format +msgid "Database %s has been renamed to %s" +msgstr "" + +#: db_operations.php:240 +#, possible-php-format +msgid "Database %s has been copied to %s" +msgstr "" + +#: db_operations.php:412 +msgid "Rename database to" +msgstr "" + +#: db_operations.php:417 server_processlist.php:57 +msgid "Command" +msgstr "" + +#: db_operations.php:429 tbl_change.php:1143 +msgid "and then" +msgstr "" + +#: db_operations.php:455 +msgid "Copy database to" +msgstr "" + +#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 +msgid "Structure only" +msgstr "" + +#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 +msgid "Structure and data" +msgstr "" + +#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 +msgid "Data only" +msgstr "" + +#: db_operations.php:472 +msgid "CREATE DATABASE before copying" +msgstr "" + +#: db_operations.php:475 libraries/export/sql.php:52 +#: libraries/export/sql.php:74 libraries/export/sql.php:76 +#: libraries/export/sql.php:82 tbl_operations.php:536 +#, possible-php-format +msgid "Add %s" +msgstr "" + +#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 +#: tbl_operations.php:538 +msgid "Add AUTO_INCREMENT value" +msgstr "" + +#: db_operations.php:483 tbl_operations.php:545 +msgid "Add constraints" +msgstr "" + +#: db_operations.php:496 +msgid "Switch to copied database" +msgstr "" + +#: db_operations.php:537 +msgid "BLOB Repository" +msgstr "" + +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: libraries/server_links.inc.php:49 server_processlist.php:59 +#: tbl_tracking.php:596 test/theme.php:101 +msgid "Status" +msgstr "" + +#: db_operations.php:548 +msgctxt "BLOB repository" +msgid "Enabled" +msgstr "" + +#: db_operations.php:552 +msgid "Disable" +msgstr "" + +#: db_operations.php:562 +msgid "Damaged" +msgstr "" + +#: db_operations.php:566 +msgctxt "BLOB repository" +msgid "Repair" +msgstr "" + +#: db_operations.php:574 +msgctxt "BLOB repository" +msgid "Disabled" +msgstr "" + +#: db_operations.php:578 +msgid "Enable" +msgstr "" + +#: db_operations.php:602 libraries/Index.class.php:448 +#: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 +#: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730 +#: server_collations.php:54 server_collations.php:66 server_databases.php:111 +#: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 +#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 +msgid "Collation" +msgstr "" + +#: db_operations.php:615 main.php:316 pdf_schema.php:34 +#, possible-php-format +msgid "" +"The additional features for working with linked tables have been " +"deactivated. To find out why click %shere%s." +msgstr "" + +#: db_operations.php:648 +msgid "Edit PDF Pages" +msgstr "" + +#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157 +#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328 +#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1626 +#: server_privileges.php:1682 server_privileges.php:1946 +#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 +#: test/theme.php:75 +msgid "Table" +msgstr "" + +#: db_printview.php:105 libraries/db_structure.lib.php:56 +#: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 +#: navigation.php:638 navigation.php:660 server_databases.php:122 +#: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 +msgid "Rows" +msgstr "" + +#: db_printview.php:109 libraries/db_structure.lib.php:67 tbl_indexes.php:190 +msgid "Size" +msgstr "" + +#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 +#: libraries/export/sql.php:899 +msgid "in use" +msgstr "" + +#: db_printview.php:187 libraries/db_info.inc.php:88 +#: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 +#: tbl_structure.php:809 +msgid "Creation" +msgstr "" + +#: db_printview.php:196 libraries/db_info.inc.php:93 +#: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 +#: tbl_structure.php:817 +msgid "Last update" +msgstr "" + +#: db_printview.php:205 libraries/db_info.inc.php:98 +#: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 +#: tbl_structure.php:825 +msgid "Last check" +msgstr "" + +#: db_printview.php:222 db_structure.php:480 +#, possible-php-format +msgid "%s table" +msgid_plural "%s tables" +msgstr[0] "" +msgstr[1] "" + +#: db_qbe.php:29 libraries/Message.class.php:191 +#: libraries/display_tbl.lib.php:1981 libraries/sql_query_form.lib.php:140 +#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 +#: view_operations.php:62 +msgid "Your SQL query has been executed successfully" +msgstr "" + +#: db_qbe.php:42 +msgid "You have to choose at least one column to display" +msgstr "" + +#: db_qbe.php:200 libraries/db_structure.lib.php:104 +#: libraries/display_tbl.lib.php:866 +msgid "Sort" +msgstr "" + +#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 +#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 +#: server_databases.php:170 server_databases.php:187 tbl_operations.php:260 +#: tbl_select.php:314 +msgid "Ascending" +msgstr "" + +#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 +#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 +#: server_databases.php:170 server_databases.php:187 tbl_operations.php:261 +#: tbl_select.php:315 +msgid "Descending" +msgstr "" + +#: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 +#: tbl_change.php:277 tbl_tracking.php:597 +msgid "Show" +msgstr "" + +#: db_qbe.php:300 +msgid "Criteria" +msgstr "" + +#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 +msgid "Ins" +msgstr "" + +#: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 +msgid "And" +msgstr "" + +#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 +msgid "Del" +msgstr "" + +#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 +#: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779 +#: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250 +#: tbl_select.php:288 +msgid "Or" +msgstr "" + +#: db_qbe.php:507 +msgid "Modify" +msgstr "" + +#: db_qbe.php:584 +msgid "Add/Delete criteria rows" +msgstr "" + +#: db_qbe.php:596 +msgid "Add/Delete columns" +msgstr "" + +#: db_qbe.php:609 db_qbe.php:634 +msgid "Update Query" +msgstr "" + +#: db_qbe.php:617 +msgid "Use Tables" +msgstr "" + +#: db_qbe.php:640 +#, possible-php-format +msgid "SQL query on database %s:" +msgstr "" + +#: db_qbe.php:934 libraries/common.lib.php:1223 +msgid "Submit Query" +msgstr "" + +#: db_search.php:68 libraries/auth/config.auth.lib.php:84 +#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 +#: libraries/auth/signon.auth.lib.php:183 +msgid "Access denied" +msgstr "" + +#: db_search.php:80 db_search.php:311 +msgid "at least one of the words" +msgstr "" + +#: db_search.php:81 db_search.php:312 +msgid "all words" +msgstr "" + +#: db_search.php:82 db_search.php:313 +msgid "the exact phrase" +msgstr "" + +#: db_search.php:83 db_search.php:314 +msgid "as regular expression" +msgstr "" + +#: db_search.php:242 +#, possible-php-format +msgid "Search results for \"%s\" %s:" +msgstr "" + +#: db_search.php:260 +#, possible-php-format +msgid "%s match(es) inside table %s" +msgstr "" + +#: db_search.php:267 db_structure.php:77 db_structure.php:78 +#: db_structure.php:90 db_structure.php:92 db_structure.php:103 +#: db_structure.php:105 libraries/common.lib.php:2824 +#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 +#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 +msgid "Browse" +msgstr "" + +#: db_search.php:272 libraries/display_tbl.lib.php:1165 +#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470 +#: pdf_pages.php:286 pdf_pages.php:425 pdf_pages.php:461 pdf_pages.php:489 +#: pmd_general.php:377 setup/frames/index.inc.php:125 +#: setup/frames/index.inc.php:216 tbl_row_action.php:63 +msgid "Delete" +msgstr "" + +#: db_search.php:285 +#, possible-php-format +msgid "Total: %s match(es)" +msgstr "" + +#: db_search.php:299 +msgid "Search in database" +msgstr "" + +#: db_search.php:302 +msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" +msgstr "" + +#: db_search.php:307 +msgid "Find:" +msgstr "" + +#: db_search.php:311 db_search.php:312 +msgid "Words are separated by a space character (\" \")." +msgstr "" + +#: db_search.php:325 +msgid "Inside table(s):" +msgstr "" + +#: db_search.php:355 +msgid "Inside column:" +msgstr "" + +#: db_structure.php:81 db_structure.php:82 db_structure.php:94 +#: db_structure.php:95 db_structure.php:107 db_structure.php:108 +#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 +msgid "Insert" +msgstr "" + +#: db_structure.php:83 db_structure.php:96 db_structure.php:109 +#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 +#: libraries/export/latex.php:33 libraries/export/latex.php:337 +#: libraries/export/odt.php:32 libraries/export/sql.php:60 +#: libraries/export/texytext.php:23 libraries/import.lib.php:1104 +#: libraries/tbl_links.inc.php:56 pmd_general.php:134 +#: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 +msgid "Structure" +msgstr "" + +#: db_structure.php:84 db_structure.php:85 db_structure.php:97 +#: db_structure.php:98 db_structure.php:110 db_structure.php:111 +#: db_structure.php:545 db_structure.php:546 db_tracking.php:91 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 +#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 +#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 +#: tbl_structure.php:152 tbl_structure.php:471 +msgid "Drop" +msgstr "" + +#: db_structure.php:86 db_structure.php:87 db_structure.php:99 +#: db_structure.php:100 db_structure.php:112 db_structure.php:113 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 +msgid "Empty" +msgstr "" + +#: db_structure.php:316 libraries/tbl_links.inc.php:100 +#, possible-php-format +msgid "Table %s has been emptied" +msgstr "" + +#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#, possible-php-format +msgid "View %s has been dropped" +msgstr "" + +#: db_structure.php:326 libraries/tbl_links.inc.php:133 +#, possible-php-format +msgid "Table %s has been dropped" +msgstr "" + +#: db_structure.php:333 +msgid "Tracking is active." +msgstr "" + +#: db_structure.php:335 +msgid "Tracking is not active." +msgstr "" + +#: db_structure.php:420 libraries/display_tbl.lib.php:1944 +#, possible-php-format +msgid "" +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." +msgstr "" + +#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 +#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 +msgid "View" +msgstr "" + +#: db_structure.php:485 libraries/db_structure.lib.php:49 +#: libraries/server_links.inc.php:70 server_replication.php:33 +#: server_replication.php:164 server_status.php:258 +msgid "Replication" +msgstr "" + +#: db_structure.php:489 +msgid "Sum" +msgstr "" + +#: db_structure.php:496 libraries/StorageEngine.class.php:356 +#, possible-php-format +msgid "%s is the default storage engine on this MySQL server." +msgstr "" + +#: db_structure.php:524 db_structure.php:541 db_structure.php:542 +#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 +#: libraries/mult_submits.inc.php:16 server_databases.php:346 +#: server_databases.php:351 server_privileges.php:1557 tbl_structure.php:455 +#: tbl_structure.php:464 +msgid "With selected:" +msgstr "" + +#: db_structure.php:527 libraries/display_tbl.lib.php:2076 +#: server_databases.php:348 server_privileges.php:530 +#: server_privileges.php:1560 tbl_structure.php:458 +msgid "Check All" +msgstr "" + +#: db_structure.php:531 libraries/display_tbl.lib.php:2077 +#: libraries/replication_gui.lib.php:33 server_databases.php:350 +#: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462 +msgid "Uncheck All" +msgstr "" + +#: db_structure.php:536 +msgid "Check tables having overhead" +msgstr "" + +#: db_structure.php:547 db_structure.php:548 db_structure.php:599 +#: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 +#: tbl_structure.php:492 tbl_structure.php:494 +msgid "Print view" +msgstr "" + +#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 +#: tbl_operations.php:581 +msgid "Check table" +msgstr "" + +#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 +#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 +msgid "Optimize table" +msgstr "" + +#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 +#: tbl_operations.php:611 +msgid "Repair table" +msgstr "" + +#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 +#: tbl_operations.php:601 +msgid "Analyze table" +msgstr "" + +#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 +#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094 +#: libraries/display_tbl.lib.php:2225 libraries/mult_submits.inc.php:62 +#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82 +#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341 +#: setup/frames/menu.inc.php:22 tbl_row_action.php:59 +msgid "Export" +msgstr "" + +#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 +msgid "Data Dictionary" +msgstr "" + +#: db_tracking.php:66 +msgid "Tracked tables" +msgstr "" + +#: db_tracking.php:71 libraries/export/htmlword.php:86 +#: libraries/export/latex.php:148 libraries/export/odt.php:113 +#: libraries/export/sql.php:342 libraries/export/texytext.php:84 +#: libraries/export/xml.php:255 libraries/header.inc.php:106 +#: libraries/header_printview.inc.php:58 server_databases.php:169 +#: server_privileges.php:1621 server_privileges.php:1682 +#: server_privileges.php:1940 server_processlist.php:56 +#: server_synchronize.php:1179 server_synchronize.php:1183 +#: tbl_tracking.php:591 test/theme.php:65 +msgid "Database" +msgstr "" + +#: db_tracking.php:73 +msgid "Last version" +msgstr "" + +#: db_tracking.php:74 tbl_tracking.php:594 +msgid "Created" +msgstr "" + +#: db_tracking.php:75 tbl_tracking.php:595 +msgid "Updated" +msgstr "" + +#: db_tracking.php:77 libraries/Index.class.php:440 +#: libraries/db_structure.lib.php:53 server_databases.php:203 +#: server_privileges.php:1503 server_privileges.php:1686 +#: server_privileges.php:2034 tbl_structure.php:187 +msgid "Action" +msgstr "" + +#: db_tracking.php:88 db_tracking.php:120 +msgid "Delete tracking data for this table" +msgstr "" + +#: db_tracking.php:106 tbl_tracking.php:548 tbl_tracking.php:606 +#: tbl_tracking.php:613 +msgid "active" +msgstr "" + +#: db_tracking.php:108 tbl_tracking.php:550 tbl_tracking.php:608 +#: tbl_tracking.php:610 +msgid "not active" +msgstr "" + +#: db_tracking.php:121 +msgid "Versions" +msgstr "" + +#: db_tracking.php:122 tbl_tracking.php:379 tbl_tracking.php:624 +msgid "Tracking report" +msgstr "" + +#: db_tracking.php:123 tbl_tracking.php:251 tbl_tracking.php:624 +msgid "Structure snapshot" +msgstr "" + +#: db_tracking.php:152 +msgid "Untracked tables" +msgstr "" + +#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 +#: tbl_structure.php:530 +msgid "Track table" +msgstr "" + +#: db_tracking.php:200 +msgid "Database Log" +msgstr "" + +#: export.php:62 +msgid "Selected export type has to be saved in file!" +msgstr "" + +#: export.php:154 export.php:179 export.php:627 +#, possible-php-format +msgid "Insufficient space to save the file %s." +msgstr "" + +#: export.php:294 +#, possible-php-format +msgid "" +"File %s already exists on server, change filename or check overwrite option." +msgstr "" + +#: export.php:298 export.php:302 +#, possible-php-format +msgid "The web server does not have permission to save the file %s." +msgstr "" + +#: export.php:629 +#, possible-php-format +msgid "Dump has been saved to file %s." +msgstr "" + +#: import.php:60 +#, possible-php-format +msgid "" +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." +msgstr "" + +#: import.php:279 import.php:332 libraries/File.class.php:849 +#: libraries/File.class.php:961 +msgid "File could not be read" +msgstr "" + +#: import.php:287 import.php:296 import.php:315 import.php:324 +#: libraries/File.class.php:1031 libraries/File.class.php:1039 +#: libraries/File.class.php:1055 libraries/File.class.php:1063 +#, possible-php-format +msgid "" +"You attempted to load file with unsupported compression (%s). Either support " +"for it is not implemented or disabled by your configuration." +msgstr "" + +#: import.php:337 +msgid "" +"No data was received to import. Either no file name was submitted, or the " +"file size exceeded the maximum size permitted by your PHP configuration. See " +"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." +msgstr "" + +#: import.php:372 libraries/display_import.lib.php:24 +msgid "Could not load import plugins, please check your installation!" +msgstr "" + +#: import.php:397 +msgid "The bookmark has been deleted." +msgstr "" + +#: import.php:401 +msgid "Showing bookmark" +msgstr "" + +#: import.php:403 sql.php:626 +#, possible-php-format +msgid "Bookmark %s created" +msgstr "" + +#: import.php:409 import.php:415 +#, possible-php-format +msgid "Import has been successfully finished, %d queries executed." +msgstr "" + +#: import.php:424 +msgid "" +"Script timeout passed, if you want to finish import, please resubmit same " +"file and import will resume." +msgstr "" + +#: import.php:426 +msgid "" +"However on last run no data has been parsed, this usually means phpMyAdmin " +"won't be able to finish this import unless you increase php time limits." +msgstr "" + +#: import_status.php:31 libraries/common.lib.php:667 pdf_schema.php:241 +#: user_password.php:115 +msgid "Back" +msgstr "" + +#: index.php:190 +msgid "phpMyAdmin is more friendly with a frames-capable browser." +msgstr "" + +#: js/messages.php:25 server_synchronize.php:345 server_synchronize.php:357 +#: server_synchronize.php:373 server_synchronize.php:380 +#: server_synchronize.php:739 server_synchronize.php:767 +#: server_synchronize.php:795 server_synchronize.php:807 +msgid "Click to select" +msgstr "" + +#: js/messages.php:26 +msgid "Click to unselect" +msgstr "" + +#: js/messages.php:27 libraries/import.lib.php:103 sql.php:89 +msgid "\"DROP DATABASE\" statements are disabled." +msgstr "" + +#: js/messages.php:30 libraries/mult_submits.inc.php:258 sql.php:188 +msgid "Do you really want to " +msgstr "" + +#: js/messages.php:31 libraries/mult_submits.inc.php:258 sql.php:172 +msgid "You are about to DESTROY a complete database!" +msgstr "" + +#: js/messages.php:34 +msgid "You are about to DISABLE a BLOB Repository!" +msgstr "" + +#: js/messages.php:35 +#, possible-php-format +msgid "Are you sure you want to disable all BLOB references for database %s?" +msgstr "" + +#: js/messages.php:38 +msgid "Missing value in the form!" +msgstr "" + +#: js/messages.php:39 +msgid "This is not a number!" +msgstr "" + +#: js/messages.php:42 +msgid "The host name is empty!" +msgstr "" + +#: js/messages.php:43 +msgid "The user name is empty!" +msgstr "" + +#: js/messages.php:44 server_privileges.php:1197 user_password.php:70 +msgid "The password is empty!" +msgstr "" + +#: js/messages.php:45 server_privileges.php:1195 user_password.php:73 +msgid "The passwords aren't the same!" +msgstr "" + +#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 +msgid "Cancel" +msgstr "" + +#: js/messages.php:52 pmd_save_pos.php:54 +msgid "Modifications have been saved" +msgstr "" + +#: js/messages.php:53 pmd_relation_upd.php:49 +msgid "Relation deleted" +msgstr "" + +#: js/messages.php:54 pmd_relation_new.php:64 +msgid "FOREIGN KEY relation added" +msgstr "" + +#: js/messages.php:55 pmd_relation_new.php:86 +msgid "Internal relation added" +msgstr "" + +#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88 +msgid "Error: Relation not added." +msgstr "" + +#: js/messages.php:57 pmd_relation_new.php:31 +msgid "Error: relation already exists." +msgstr "" + +#: js/messages.php:58 +msgid "Error saving coordinates for Designer." +msgstr "" + +#: js/messages.php:59 libraries/relation.lib.php:107 +#: libraries/relation.lib.php:119 +msgid "General relation features" +msgstr "" + +#: js/messages.php:59 libraries/relation.lib.php:101 +#: libraries/relation.lib.php:108 +msgid "Disabled" +msgstr "" + +#: js/messages.php:60 +msgid "Select referenced key" +msgstr "" + +#: js/messages.php:61 +msgid "Select Foreign Key" +msgstr "" + +#: js/messages.php:62 +msgid "Please select the primary key or a unique key" +msgstr "" + +#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 +msgid "Choose column to display" +msgstr "" + +#. l10n: Display text for calendar close link +#: js/messages.php:73 +msgid "Done" +msgstr "" + +#. l10n: Display text for previous month link in calendar +#: js/messages.php:75 +msgid "Prev" +msgstr "" + +#. l10n: Display text for next month link in calendar +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 +#: tbl_structure.php:801 +msgid "Next" +msgstr "" + +#. l10n: Display text for current month link in calendar +#: js/messages.php:79 +msgid "Today" +msgstr "" + +#: js/messages.php:82 +msgid "January" +msgstr "" + +#: js/messages.php:83 +msgid "February" +msgstr "" + +#: js/messages.php:84 +msgid "March" +msgstr "" + +#: js/messages.php:85 +msgid "April" +msgstr "" + +#: js/messages.php:86 +msgid "May" +msgstr "" + +#: js/messages.php:87 +msgid "June" +msgstr "" + +#: js/messages.php:88 +msgid "July" +msgstr "" + +#: js/messages.php:89 +msgid "August" +msgstr "" + +#: js/messages.php:90 +msgid "September" +msgstr "" + +#: js/messages.php:91 +msgid "October" +msgstr "" + +#: js/messages.php:92 +msgid "November" +msgstr "" + +#: js/messages.php:93 +msgid "December" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:97 libraries/common.lib.php:1555 +msgid "Jan" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:99 libraries/common.lib.php:1557 +msgid "Feb" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:101 libraries/common.lib.php:1559 +msgid "Mar" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:103 libraries/common.lib.php:1561 +msgid "Apr" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:105 libraries/common.lib.php:1563 +msgctxt "Short month name" +msgid "May" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:107 libraries/common.lib.php:1565 +msgid "Jun" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:109 libraries/common.lib.php:1567 +msgid "Jul" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:111 libraries/common.lib.php:1569 +msgid "Aug" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:113 libraries/common.lib.php:1571 +msgid "Sep" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:115 libraries/common.lib.php:1573 +msgid "Oct" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:117 libraries/common.lib.php:1575 +msgid "Nov" +msgstr "" + +#. l10n: Short month name +#: js/messages.php:119 libraries/common.lib.php:1577 +msgid "Dec" +msgstr "" + +#: js/messages.php:122 +msgid "Sunday" +msgstr "" + +#: js/messages.php:123 +msgid "Monday" +msgstr "" + +#: js/messages.php:124 +msgid "Tuesday" +msgstr "" + +#: js/messages.php:125 +msgid "Wednesday" +msgstr "" + +#: js/messages.php:126 +msgid "Thursday" +msgstr "" + +#: js/messages.php:127 +msgid "Friday" +msgstr "" + +#: js/messages.php:128 +msgid "Saturday" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:132 libraries/common.lib.php:1580 +msgid "Sun" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:134 libraries/common.lib.php:1582 +msgid "Mon" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:136 libraries/common.lib.php:1584 +msgid "Tue" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:138 libraries/common.lib.php:1586 +msgid "Wed" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:140 libraries/common.lib.php:1588 +msgid "Thu" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:142 libraries/common.lib.php:1590 +msgid "Fri" +msgstr "" + +#. l10n: Short week day name +#: js/messages.php:144 libraries/common.lib.php:1592 +msgid "Sat" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:148 +msgid "Su" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:150 +msgid "Mo" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:152 +msgid "Tu" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:154 +msgid "We" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:156 +msgid "Th" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:158 +msgid "Fr" +msgstr "" + +#. l10n: Minimal week day name +#: js/messages.php:160 +msgid "Sa" +msgstr "" + +#. l10n: Column header for week of the year in calendar +#: js/messages.php:162 +msgid "Wk" +msgstr "" + +#: js/messages.php:164 +msgid "Hour" +msgstr "" + +#: js/messages.php:165 +msgid "Minute" +msgstr "" + +#: js/messages.php:166 +msgid "Second" +msgstr "" + +#: libraries/Config.class.php:1015 +msgid "Font size" +msgstr "" + +#: libraries/File.class.php:344 libraries/File.class.php:432 +#: libraries/File.class.php:569 libraries/File.class.php:708 +msgid "Unknown error in file upload." +msgstr "" + +#: libraries/File.class.php:414 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: libraries/File.class.php:417 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: libraries/File.class.php:420 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: libraries/File.class.php:423 +msgid "Missing a temporary folder." +msgstr "" + +#: libraries/File.class.php:426 +msgid "Failed to write file to disk." +msgstr "" + +#: libraries/File.class.php:429 +msgid "File upload stopped by extension." +msgstr "" + +#: libraries/File.class.php:908 +msgid "" +"Error moving the uploaded file, see [a@./Documentation." +"html#faq1_11@Documentation]FAQ 1.11[/a]" +msgstr "" + +#: libraries/Index.class.php:428 tbl_relation.php:529 +msgid "No index defined!" +msgstr "" + +#: libraries/Index.class.php:433 server_databases.php:132 tbl_tracking.php:316 +msgid "Indexes" +msgstr "" + +#: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 +#: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 +#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 +#: tbl_tracking.php:322 +msgid "Unique" +msgstr "" + +#: libraries/Index.class.php:445 tbl_tracking.php:323 +msgid "Packed" +msgstr "" + +#: libraries/Index.class.php:447 tbl_tracking.php:325 +msgid "Cardinality" +msgstr "" + +#: libraries/Index.class.php:450 tbl_tracking.php:279 tbl_tracking.php:328 +msgid "Comment" +msgstr "" + +#: libraries/Index.class.php:466 libraries/common.lib.php:616 +#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/import.lib.php:1087 libraries/import.lib.php:1111 +#: pdf_pages.php:285 setup/frames/index.inc.php:124 +#: setup/lib/messages.inc.php:352 tbl_row_action.php:69 +msgid "Edit" +msgstr "" + +#: libraries/Index.class.php:472 +msgid "The primary key has been dropped" +msgstr "" + +#: libraries/Index.class.php:476 +#, possible-php-format +msgid "Index %s has been dropped" +msgstr "" + +#: libraries/Index.class.php:576 +#, possible-php-format +msgid "" +"The indexes %1$s and %2$s seem to be equal and one of them could possibly be " +"removed." +msgstr "" + +#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41 +#: server_databases.php:88 server_privileges.php:1621 +#: setup/lib/messages.inc.php:110 test/theme.php:93 +msgid "Databases" +msgstr "" + +#: libraries/Message.class.php:211 libraries/common.lib.php:581 +#: libraries/core.lib.php:261 libraries/import.lib.php:134 pdf_schema.php:32 +#: pdf_schema.php:232 tbl_change.php:1027 tbl_operations.php:213 +#: tbl_relation.php:290 view_operations.php:62 +msgid "Error" +msgstr "" + +#: libraries/Message.class.php:282 +#, possible-php-format +msgid "%1$d row affected." +msgid_plural "%1$d rows affected." +msgstr[0] "" +msgstr[1] "" + +#: libraries/Message.class.php:301 +#, possible-php-format +msgid "%1$d row deleted." +msgid_plural "%1$d rows deleted." +msgstr[0] "" +msgstr[1] "" + +#: libraries/Message.class.php:320 +#, possible-php-format +msgid "%1$d row inserted." +msgid_plural "%1$d rows inserted." +msgstr[0] "" +msgstr[1] "" + +#: libraries/StorageEngine.class.php:198 +msgid "" +"There is no detailed status information available for this storage engine." +msgstr "" + +#: libraries/StorageEngine.class.php:359 +#, possible-php-format +msgid "%s is available on this MySQL server." +msgstr "" + +#: libraries/StorageEngine.class.php:362 +#, possible-php-format +msgid "%s has been disabled for this MySQL server." +msgstr "" + +#: libraries/StorageEngine.class.php:366 +#, possible-php-format +msgid "This MySQL server does not support the %s storage engine." +msgstr "" + +#: libraries/Table.class.php:1019 +msgid "Invalid database" +msgstr "" + +#: libraries/Table.class.php:1033 tbl_get_field.php:26 +msgid "Invalid table name" +msgstr "" + +#: libraries/Table.class.php:1048 +#, possible-php-format +msgid "Error renaming table %1$s to %2$s" +msgstr "" + +#: libraries/Table.class.php:1132 +#, possible-php-format +msgid "Table %s has been renamed to %s" +msgstr "" + +#: libraries/Theme.class.php:162 +#, possible-php-format +msgid "No valid image path for theme %s found!" +msgstr "" + +#: libraries/Theme.class.php:384 +msgid "No preview available." +msgstr "" + +#: libraries/Theme.class.php:387 +msgid "take it" +msgstr "" + +#: libraries/Theme_Manager.class.php:115 +#, possible-php-format +msgid "Default theme %s not found!" +msgstr "" + +#: libraries/Theme_Manager.class.php:153 +#, possible-php-format +msgid "Theme %s not found!" +msgstr "" + +#: libraries/Theme_Manager.class.php:221 +#, possible-php-format +msgid "Theme path not found for theme %s!" +msgstr "" + +#: libraries/Theme_Manager.class.php:297 test/theme.php:161 themes.php:21 +#: themes.php:41 +msgid "Theme / Style" +msgstr "" + +#: libraries/auth/config.auth.lib.php:77 +msgid "Cannot connect: invalid settings." +msgstr "" + +#: libraries/auth/config.auth.lib.php:92 +#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 +#: test/theme.php:152 +#, possible-php-format +msgid "Welcome to %s" +msgstr "" + +#: libraries/auth/config.auth.lib.php:107 +#, possible-php-format +msgid "" +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." +msgstr "" + +#: libraries/auth/config.auth.lib.php:116 +msgid "" +"phpMyAdmin tried to connect to the MySQL server, and the server rejected the " +"connection. You should check the host, username and password in your " +"configuration and make sure that they correspond to the information given by " +"the administrator of the MySQL server." +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:244 +msgid "Log in" +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:248 +#: libraries/navigation_header.inc.php:93 +#: libraries/navigation_header.inc.php:95 +msgid "phpMyAdmin documentation" +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:258 +#: libraries/auth/cookie.auth.lib.php:259 +msgid "You can enter hostname/IP address and port separated by space." +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:258 +msgid "Server:" +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:263 +msgid "Username:" +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:267 +msgid "Password:" +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:274 +msgid "Server Choice" +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:671 +#: libraries/auth/signon.auth.lib.php:181 +msgid "" +"Login without a password is forbidden by configuration (see AllowNoPassword)" +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:675 +#: libraries/auth/signon.auth.lib.php:185 +#, possible-php-format +msgid "No activity within %s seconds; please log in again" +msgstr "" + +#: libraries/auth/cookie.auth.lib.php:685 +#: libraries/auth/cookie.auth.lib.php:687 +#: libraries/auth/signon.auth.lib.php:191 +msgid "Cannot log in to the MySQL server" +msgstr "" + +#: libraries/auth/http.auth.lib.php:70 +msgid "Wrong username/password. Access denied." +msgstr "" + +#: libraries/auth/swekey/swekey.auth.lib.php:118 +#, possible-php-format +msgid "File %s does not contain any key id" +msgstr "" + +#: libraries/auth/swekey/swekey.auth.lib.php:157 +#: libraries/auth/swekey/swekey.auth.lib.php:180 +msgid "Hardware authentication failed" +msgstr "" + +#: libraries/auth/swekey/swekey.auth.lib.php:166 +msgid "No valid authentication key plugged" +msgstr "" + +#: libraries/auth/swekey/swekey.auth.lib.php:202 +msgid "Authenticating..." +msgstr "" + +#: libraries/blobstreaming.lib.php:689 +msgid "View image" +msgstr "" + +#: libraries/blobstreaming.lib.php:693 +msgid "Play audio" +msgstr "" + +#: libraries/blobstreaming.lib.php:698 +msgid "View video" +msgstr "" + +#: libraries/blobstreaming.lib.php:702 +msgid "Download file" +msgstr "" + +#: libraries/charset_conversion.lib.php:17 +msgid "" +"Couldn't load the iconv or recode extension needed for charset conversion. " +"Either configure PHP to enable these extensions or disable charset " +"conversion in phpMyAdmin." +msgstr "" + +#: libraries/charset_conversion.lib.php:79 +#: libraries/charset_conversion.lib.php:90 +#: libraries/charset_conversion.lib.php:109 +msgid "" +"Couldn't use the iconv, libiconv, or recode_string functions, although the " +"necessary extensions appear to be loaded. Check your PHP configuration." +msgstr "" + +#: libraries/common.inc.php:583 +msgid "" +"phpMyAdmin was unable to read your configuration file!
This might " +"happen if PHP finds a parse error in it or PHP cannot find the file.
Please call the configuration file directly using the link below and read " +"the PHP error message(s) that you receive. In most cases a quote or a " +"semicolon is missing somewhere.
If you receive a blank page, everything " +"is fine." +msgstr "" + +#: libraries/common.inc.php:594 +#, possible-php-format +msgid "Could not load default configuration from: %1$s" +msgstr "" + +#: libraries/common.inc.php:599 +msgid "" +"The $cfg['PmaAbsoluteUri'] directive MUST be set in your " +"configuration file!" +msgstr "" + +#: libraries/common.inc.php:629 +#, possible-php-format +msgid "Invalid server index: %s" +msgstr "" + +#: libraries/common.inc.php:636 +#, possible-php-format +msgid "Invalid hostname for server %1$s. Please review your configuration." +msgstr "" + +#: libraries/common.inc.php:645 libraries/header.inc.php:96 +#: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 +#: main.php:185 test/theme.php:57 +msgid "Server" +msgstr "" + +#: libraries/common.inc.php:823 +msgid "Invalid authentication method set in configuration:" +msgstr "" + +#: libraries/common.inc.php:926 +#, possible-php-format +msgid "You should upgrade to %s %s or later." +msgstr "" + +#: libraries/common.lib.php:147 +#, possible-php-format +msgid "Max: %s%s" +msgstr "" + +#. l10n: Language to use for MySQL 5.1 documentation, please use only languages which do exist in official documentation. +#: libraries/common.lib.php:411 +msgctxt "$mysql_5_1_doc_lang" +msgid "en" +msgstr "" + +#. l10n: Language to use for MySQL 5.0 documentation, please use only languages which do exist in official documentation. +#: libraries/common.lib.php:415 +msgctxt "$mysql_5_0_doc_lang" +msgid "en" +msgstr "" + +#: libraries/common.lib.php:428 libraries/common.lib.php:430 +#: libraries/common.lib.php:432 libraries/common.lib.php:448 +#: libraries/common.lib.php:450 libraries/dbg/setup.php:25 +#: libraries/display_export.lib.php:164 libraries/relation.lib.php:97 +#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454 +#: main.php:229 setup/lib/FormDisplay.tpl.php:124 +msgid "Documentation" +msgstr "" + +#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 +#: server_processlist.php:60 server_status.php:247 +msgid "SQL query" +msgstr "" + +#: libraries/common.lib.php:634 +msgid "MySQL said: " +msgstr "" + +#: libraries/common.lib.php:1177 setup/lib/messages.inc.php:353 +msgid "Explain SQL" +msgstr "" + +#: libraries/common.lib.php:1180 +msgid "Skip Explain SQL" +msgstr "" + +#: libraries/common.lib.php:1212 +msgid "Without PHP Code" +msgstr "" + +#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +msgid "Create PHP Code" +msgstr "" + +#: libraries/common.lib.php:1233 server_status.php:341 +#: setup/lib/messages.inc.php:354 +msgid "Refresh" +msgstr "" + +#: libraries/common.lib.php:1242 +msgid "Skip Validate SQL" +msgstr "" + +#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +msgid "Validate SQL" +msgstr "" + +#: libraries/common.lib.php:1276 +msgid "Inline edit of this query" +msgstr "" + +#: libraries/common.lib.php:1278 +msgid "Inline" +msgstr "" + +#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +msgid "Profiling" +msgstr "" + +#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: server_processlist.php:58 +msgid "Time" +msgstr "" + +#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ +#: libraries/common.lib.php:1379 +msgid "B" +msgstr "" + +#: libraries/common.lib.php:1379 +msgid "KiB" +msgstr "" + +#: libraries/common.lib.php:1379 +msgid "MiB" +msgstr "" + +#: libraries/common.lib.php:1379 +msgid "GiB" +msgstr "" + +#: libraries/common.lib.php:1379 +msgid "TiB" +msgstr "" + +#: libraries/common.lib.php:1379 +msgid "PiB" +msgstr "" + +#: libraries/common.lib.php:1379 +msgid "EiB" +msgstr "" + +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "" + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "" + +#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string +#: libraries/common.lib.php:1596 +#: libraries/transformations/text_plain__dateformat.inc.php:34 +msgid "%B %d, %Y at %I:%M %p" +msgstr "" + +#: libraries/common.lib.php:1898 +#, possible-php-format +msgid "%s days, %s hours, %s minutes and %s seconds" +msgstr "" + +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 server_status.php:608 +msgid "Begin" +msgstr "" + +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 server_binlog.php:168 +#: server_binlog.php:170 +msgid "Previous" +msgstr "" + +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 +msgid "End" +msgstr "" + +#: libraries/common.lib.php:2421 +#, possible-php-format +msgid "Jump to database "%s"." +msgstr "" + +#: libraries/common.lib.php:2441 +#, possible-php-format +msgid "The %s functionality is affected by a known bug, see %s" +msgstr "" + +#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/db_links.inc.php:68 libraries/export/sql.php:25 +#: libraries/import/sql.php:18 libraries/server_links.inc.php:45 +#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 +msgid "SQL" +msgstr "" + +#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 +#: view_operations.php:89 +msgid "Operations" +msgstr "" + +#: libraries/core.lib.php:284 libraries/dbg/setup.php:22 +#, possible-php-format +msgid "" +"Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " +"extension. Please check your PHP configuration." +msgstr "" + +#: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 +#: libraries/export/sql.php:415 +msgid "Events" +msgstr "" + +#: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 +#: libraries/display_create_table.lib.php:53 libraries/tbl_triggers.lib.php:27 +#: setup/frames/index.inc.php:112 +msgid "Name" +msgstr "" + +#: libraries/db_links.inc.php:45 +#, possible-php-format +msgid "Database %s has been dropped." +msgstr "" + +#: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 +#: libraries/db_links.inc.php:59 +msgid "Database seems to be empty!" +msgstr "" + +#: libraries/db_links.inc.php:81 libraries/relation.lib.php:155 +#: libraries/tbl_links.inc.php:69 +msgid "Tracking" +msgstr "" + +#: libraries/db_links.inc.php:86 +msgid "Query" +msgstr "" + +#: libraries/db_links.inc.php:91 libraries/relation.lib.php:151 +msgid "Designer" +msgstr "" + +#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 +#: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 +#: setup/frames/menu.inc.php:21 +msgid "Import" +msgstr "" + +#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 +#: server_privileges.php:72 server_privileges.php:1683 +#: server_privileges.php:2032 test/theme.php:117 +msgid "Privileges" +msgstr "" + +#: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 +msgid "Routines" +msgstr "" + +#: libraries/db_routines.inc.php:43 +msgid "Return type" +msgstr "" + +#: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/db_structure.lib.php:69 server_databases.php:142 +#: tbl_printview.php:336 tbl_structure.php:682 +msgid "Overhead" +msgstr "" + +#: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 +msgid "Connection for controluser as defined in your configuration failed." +msgstr "" + +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 +#: libraries/dbi/mysqli.dbi.lib.php:410 +msgid "The server is not responding" +msgstr "" + +#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 +msgid "(or the local MySQL server's socket is not correctly configured)" +msgstr "" + +#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608 +msgid "Details..." +msgstr "" + +#: libraries/display_change_password.lib.php:30 main.php:91 +#: user_password.php:111 user_password.php:129 +msgid "Change password" +msgstr "" + +#: libraries/display_change_password.lib.php:35 +#: libraries/replication_gui.lib.php:345 server_privileges.php:768 +msgid "No Password" +msgstr "" + +#: libraries/display_change_password.lib.php:41 +#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 +#: libraries/replication_gui.lib.php:335 libraries/replication_gui.lib.php:339 +#: libraries/replication_gui.lib.php:349 server_privileges.php:757 +#: server_privileges.php:761 server_privileges.php:772 +#: server_privileges.php:1499 server_synchronize.php:1175 +msgid "Password" +msgstr "" + +#: libraries/display_change_password.lib.php:46 +#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356 +#: server_privileges.php:776 server_privileges.php:779 +msgid "Re-type" +msgstr "" + +#: libraries/display_change_password.lib.php:52 +msgid "Password Hashing" +msgstr "" + +#: libraries/display_change_password.lib.php:66 +msgid "MySQL 4.0 compatible" +msgstr "" + +#: libraries/display_change_password.lib.php:72 +#: libraries/replication_gui.lib.php:360 server_privileges.php:783 +msgid "Generate Password" +msgstr "" + +#: libraries/display_change_password.lib.php:75 +#: libraries/replication_gui.lib.php:363 server_privileges.php:786 +msgid "Generate" +msgstr "" + +#: libraries/display_create_database.lib.php:22 +#: libraries/display_create_database.lib.php:36 +msgid "Create new database" +msgstr "" + +#: libraries/display_create_database.lib.php:30 +msgid "Create" +msgstr "" + +#: libraries/display_create_database.lib.php:40 server_privileges.php:74 +#: server_privileges.php:1388 server_replication.php:35 +msgid "No Privileges" +msgstr "" + +#: libraries/display_create_table.lib.php:41 +msgid "Table must have at least one column." +msgstr "" + +#: libraries/display_create_table.lib.php:48 +#, possible-php-format +msgid "Create table on database %s" +msgstr "" + +#: libraries/display_create_table.lib.php:57 +msgid "Number of columns" +msgstr "" + +#: libraries/display_export.lib.php:42 +msgid "Could not load export plugins, please check your installation!" +msgstr "" + +#: libraries/display_export.lib.php:107 +#, possible-php-format +msgid "Dump %s row(s) starting at row # %s" +msgstr "" + +#: libraries/display_export.lib.php:115 +msgid "Dump all rows" +msgstr "" + +#: libraries/display_export.lib.php:125 setup/lib/messages.inc.php:82 +msgid "Save as file" +msgstr "" + +#: libraries/display_export.lib.php:134 +#, possible-php-format +msgid "Save on server in %s directory" +msgstr "" + +#: libraries/display_export.lib.php:142 setup/lib/messages.inc.php:90 +msgid "Overwrite existing file(s)" +msgstr "" + +#: libraries/display_export.lib.php:148 +msgid "File name template" +msgstr "" + +#: libraries/display_export.lib.php:152 +msgid "server name" +msgstr "" + +#: libraries/display_export.lib.php:155 +msgid "database name" +msgstr "" + +#: libraries/display_export.lib.php:158 +msgid "table name" +msgstr "" + +#: libraries/display_export.lib.php:162 +#, possible-php-format +msgid "" +"This value is interpreted using %1$sstrftime%2$s, so you can use time " +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." +msgstr "" + +#: libraries/display_export.lib.php:202 +msgid "remember template" +msgstr "" + +#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 +#: libraries/display_import.lib.php:191 libraries/sql_query_form.lib.php:549 +msgid "Character set of the file:" +msgstr "" + +#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:84 +msgid "Compression" +msgstr "" + +#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:210 libraries/display_tbl.lib.php:530 +#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575 +#: server_privileges.php:1836 server_processlist.php:75 +msgid "None" +msgstr "" + +#: libraries/display_export.lib.php:247 +msgid "\"zipped\"" +msgstr "" + +#: libraries/display_export.lib.php:253 +msgid "\"gzipped\"" +msgstr "" + +#: libraries/display_export.lib.php:259 +msgid "\"bzipped\"" +msgstr "" + +#: libraries/display_export.lib.php:274 libraries/export/sql.php:43 +#: libraries/import/sql.php:32 +msgid "SQL compatibility mode" +msgstr "" + +#: libraries/display_import.lib.php:67 +msgid "" +"The file being uploaded is probably larger than the maximum allowed size or " +"this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " +"browsers." +msgstr "" + +#: libraries/display_import.lib.php:77 +msgid "The file is being processed, please be patient." +msgstr "" + +#: libraries/display_import.lib.php:99 +msgid "" +"Please be patient, the file is being uploaded. Details about the upload are " +"not available." +msgstr "" + +#: libraries/display_import.lib.php:126 +msgid "File to import" +msgstr "" + +#: libraries/display_import.lib.php:137 libraries/sql_query_form.lib.php:524 +msgid "Location of the text file" +msgstr "" + +#: libraries/display_import.lib.php:148 +msgid "File uploads are not allowed on this server." +msgstr "" + +#: libraries/display_import.lib.php:163 libraries/sql_query_form.lib.php:533 +#: tbl_change.php:1028 +msgid "The directory you set for upload work cannot be reached" +msgstr "" + +#: libraries/display_import.lib.php:166 libraries/sql_query_form.lib.php:536 +#: tbl_change.php:1031 +msgid "web server upload directory" +msgstr "" + +#: libraries/display_import.lib.php:212 +#, possible-php-format +msgid "Imported file compression will be automatically detected from: %s" +msgstr "" + +#: libraries/display_import.lib.php:219 +msgid "Partial import" +msgstr "" + +#: libraries/display_import.lib.php:225 +#, possible-php-format +msgid "" +"Previous import timed out, after resubmitting will continue from position %d." +msgstr "" + +#: libraries/display_import.lib.php:232 +msgid "" +"Allow the interruption of an import in case the script detects it is close " +"to the PHP timeout limit. This might be good way to import large files, " +"however it can break transactions." +msgstr "" + +#: libraries/display_import.lib.php:239 setup/lib/messages.inc.php:161 +msgid "Number of queries to skip from start" +msgstr "" + +#: libraries/display_import.lib.php:255 setup/lib/messages.inc.php:160 +msgid "Format of imported file" +msgstr "" + +#: libraries/display_pdf_schema.lib.php:11 +msgid "Display PDF schema" +msgstr "" + +#: libraries/display_pdf_schema.lib.php:33 +msgid "Show grid" +msgstr "" + +#: libraries/display_pdf_schema.lib.php:36 +msgid "Show color" +msgstr "" + +#: libraries/display_pdf_schema.lib.php:38 +msgid "Show dimension of tables" +msgstr "" + +#: libraries/display_pdf_schema.lib.php:41 +msgid "Display all tables with the same width" +msgstr "" + +#: libraries/display_pdf_schema.lib.php:46 +msgid "Only show keys" +msgstr "" + +#: libraries/display_pdf_schema.lib.php:48 +msgid "Data Dictionary Format" +msgstr "" + +#: libraries/display_pdf_schema.lib.php:50 +msgid "Landscape" +msgstr "" + +#: libraries/display_pdf_schema.lib.php:51 +msgid "Portrait" +msgstr "" + +#: libraries/display_pdf_schema.lib.php:54 +msgid "Paper size" +msgstr "" + +#: libraries/display_select_lang.lib.php:45 +#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70 +msgid "Language" +msgstr "" + +#: libraries/display_tbl.lib.php:304 +#, possible-php-format +msgid "%d is not valid row number." +msgstr "" + +#: libraries/display_tbl.lib.php:310 +msgid "row(s) starting from row #" +msgstr "" + +#: libraries/display_tbl.lib.php:316 +msgid "horizontal" +msgstr "" + +#: libraries/display_tbl.lib.php:317 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/display_tbl.lib.php:318 +msgid "vertical" +msgstr "" + +#: libraries/display_tbl.lib.php:324 +#, possible-php-format +msgid "in %s mode and repeat headers after %s cells" +msgstr "" + +#: libraries/display_tbl.lib.php:346 +msgid "This operation could take a long time. Proceed anyway?" +msgstr "" + +#: libraries/display_tbl.lib.php:512 +msgid "Sort by key" +msgstr "" + +#: libraries/display_tbl.lib.php:555 libraries/export/codegen.php:39 +#: libraries/export/csv.php:30 libraries/export/excel.php:35 +#: libraries/export/htmlword.php:29 libraries/export/latex.php:28 +#: libraries/export/mediawiki.php:21 libraries/export/ods.php:27 +#: libraries/export/odt.php:27 libraries/export/pdf.php:27 +#: libraries/export/php_array.php:25 libraries/export/sql.php:34 +#: libraries/export/texytext.php:37 libraries/export/xls.php:27 +#: libraries/export/xlsx.php:27 libraries/export/xml.php:24 +#: libraries/export/yaml.php:28 libraries/import.lib.php:1082 +#: libraries/import.lib.php:1104 libraries/import/csv.php:32 +#: libraries/import/docsql.php:34 libraries/import/ldi.php:47 +#: libraries/import/ods.php:30 libraries/import/sql.php:20 +#: libraries/import/xls.php:26 libraries/import/xlsx.php:26 +#: libraries/import/xml.php:25 tbl_select.php:267 tbl_structure.php:753 +msgid "Options" +msgstr "" + +#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 +msgid "Partial Texts" +msgstr "" + +#: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 +msgid "Full Texts" +msgstr "" + +#: libraries/display_tbl.lib.php:587 +msgid "Relational key" +msgstr "" + +#: libraries/display_tbl.lib.php:588 +msgid "Relational display column" +msgstr "" + +#: libraries/display_tbl.lib.php:595 +msgid "Show binary contents" +msgstr "" + +#: libraries/display_tbl.lib.php:597 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/display_tbl.lib.php:599 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/display_tbl.lib.php:607 pmd_general.php:141 tbl_change.php:314 +#: tbl_change.php:320 +msgid "Hide" +msgstr "" + +#: libraries/display_tbl.lib.php:607 libraries/relation.lib.php:135 +#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 +msgid "Browser transformation" +msgstr "" + +#: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 +#: libraries/display_tbl.lib.php:1132 +msgid "Execute bookmarked query" +msgstr "" + +#: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 +msgid "The row has been deleted" +msgstr "" + +#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 +#: server_processlist.php:71 tbl_row_action.php:64 +msgid "Kill" +msgstr "" + +#: libraries/display_tbl.lib.php:1934 +msgid "in query" +msgstr "" + +#: libraries/display_tbl.lib.php:1952 +msgid "Showing rows" +msgstr "" + +#: libraries/display_tbl.lib.php:1962 +msgid "total" +msgstr "" + +#: libraries/display_tbl.lib.php:1970 sql.php:524 +#, possible-php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113 +#: querywindow.php:125 querywindow.php:129 querywindow.php:132 +#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470 +msgid "Change" +msgstr "" + +#: libraries/display_tbl.lib.php:2159 +msgid "Query results operations" +msgstr "" + +#: libraries/display_tbl.lib.php:2187 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/display_tbl.lib.php:2361 +msgid "Link not found" +msgstr "" + +#: libraries/engines/bdb.lib.php:21 main.php:228 +msgid "Version information" +msgstr "" + +#: libraries/engines/innodb.lib.php:30 +msgid "Data home directory" +msgstr "" + +#: libraries/engines/innodb.lib.php:31 +msgid "The common part of the directory path for all InnoDB data files." +msgstr "" + +#: libraries/engines/innodb.lib.php:34 +msgid "Data files" +msgstr "" + +#: libraries/engines/innodb.lib.php:37 +msgid "Autoextend increment" +msgstr "" + +#: libraries/engines/innodb.lib.php:38 +msgid "" +" The increment size for extending the size of an autoextending tablespace " +"when it becomes full." +msgstr "" + +#: libraries/engines/innodb.lib.php:42 +msgid "Buffer pool size" +msgstr "" + +#: libraries/engines/innodb.lib.php:43 +msgid "" +"The size of the memory buffer InnoDB uses to cache data and indexes of its " +"tables." +msgstr "" + +#: libraries/engines/innodb.lib.php:144 +msgid "Buffer Pool" +msgstr "" + +#: libraries/engines/innodb.lib.php:145 server_status.php:306 +msgid "InnoDB Status" +msgstr "" + +#: libraries/engines/innodb.lib.php:189 +msgid "Buffer Pool Usage" +msgstr "" + +#: libraries/engines/innodb.lib.php:194 server_databases.php:137 +#: server_databases.php:305 server_status.php:414 server_status.php:475 +#: server_status.php:496 tbl_printview.php:351 tbl_structure.php:696 +msgid "Total" +msgstr "" + +#: libraries/engines/innodb.lib.php:197 +msgid "pages" +msgstr "" + +#: libraries/engines/innodb.lib.php:206 +msgid "Free pages" +msgstr "" + +#: libraries/engines/innodb.lib.php:212 +msgid "Dirty pages" +msgstr "" + +#: libraries/engines/innodb.lib.php:218 +msgid "Pages containing data" +msgstr "" + +#: libraries/engines/innodb.lib.php:224 +msgid "Pages to be flushed" +msgstr "" + +#: libraries/engines/innodb.lib.php:230 +msgid "Busy pages" +msgstr "" + +#: libraries/engines/innodb.lib.php:239 +msgid "Latched pages" +msgstr "" + +#: libraries/engines/innodb.lib.php:250 +msgid "Buffer Pool Activity" +msgstr "" + +#: libraries/engines/innodb.lib.php:254 +msgid "Read requests" +msgstr "" + +#: libraries/engines/innodb.lib.php:260 +msgid "Write requests" +msgstr "" + +#: libraries/engines/innodb.lib.php:266 +msgid "Read misses" +msgstr "" + +#: libraries/engines/innodb.lib.php:272 +msgid "Write waits" +msgstr "" + +#: libraries/engines/innodb.lib.php:278 +msgid "Read misses in %" +msgstr "" + +#: libraries/engines/innodb.lib.php:286 +msgid "Write waits in %" +msgstr "" + +#: libraries/engines/myisam.lib.php:23 +msgid "Data pointer size" +msgstr "" + +#: libraries/engines/myisam.lib.php:24 +msgid "" +"The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " +"tables when no MAX_ROWS option is specified." +msgstr "" + +#: libraries/engines/myisam.lib.php:28 +msgid "Automatic recovery mode" +msgstr "" + +#: libraries/engines/myisam.lib.php:29 +msgid "" +"The mode for automatic recovery of crashed MyISAM tables, as set via the --" +"myisam-recover server startup option." +msgstr "" + +#: libraries/engines/myisam.lib.php:32 +msgid "Maximum size for temporary sort files" +msgstr "" + +#: libraries/engines/myisam.lib.php:33 +msgid "" +"The maximum size of the temporary file MySQL is allowed to use while re-" +"creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " +"INFILE)." +msgstr "" + +#: libraries/engines/myisam.lib.php:37 +msgid "Maximum size for temporary files on index creation" +msgstr "" + +#: libraries/engines/myisam.lib.php:38 +msgid "" +"If the temporary file used for fast MyISAM index creation would be larger " +"than using the key cache by the amount specified here, prefer the key cache " +"method." +msgstr "" + +#: libraries/engines/myisam.lib.php:42 +msgid "Repair threads" +msgstr "" + +#: libraries/engines/myisam.lib.php:43 +msgid "" +"If this value is greater than 1, MyISAM table indexes are created in " +"parallel (each index in its own thread) during the repair by sorting process." +msgstr "" + +#: libraries/engines/myisam.lib.php:47 +msgid "Sort buffer size" +msgstr "" + +#: libraries/engines/myisam.lib.php:48 +msgid "" +"The buffer that is allocated when sorting MyISAM indexes during a REPAIR " +"TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." +msgstr "" + +#: libraries/engines/pbxt.lib.php:23 +msgid "Index cache size" +msgstr "" + +#: libraries/engines/pbxt.lib.php:24 +msgid "" +"This is the amount of memory allocated to the index cache. Default value is " +"32MB. The memory allocated here is used only for caching index pages." +msgstr "" + +#: libraries/engines/pbxt.lib.php:28 +msgid "Record cache size" +msgstr "" + +#: libraries/engines/pbxt.lib.php:29 +msgid "" +"This is the amount of memory allocated to the record cache used to cache " +"table data. The default value is 32MB. This memory is used to cache changes " +"to the handle data (.xtd) and row pointer (.xtr) files." +msgstr "" + +#: libraries/engines/pbxt.lib.php:33 +msgid "Log cache size" +msgstr "" + +#: libraries/engines/pbxt.lib.php:34 +msgid "" +"The amount of memory allocated to the transaction log cache used to cache on " +"transaction log data. The default is 16MB." +msgstr "" + +#: libraries/engines/pbxt.lib.php:38 +msgid "Log file threshold" +msgstr "" + +#: libraries/engines/pbxt.lib.php:39 +msgid "" +"The size of a transaction log before rollover, and a new log is created. The " +"default value is 16MB." +msgstr "" + +#: libraries/engines/pbxt.lib.php:43 +msgid "Transaction buffer size" +msgstr "" + +#: libraries/engines/pbxt.lib.php:44 +msgid "" +"The size of the global transaction log buffer (the engine allocates 2 " +"buffers of this size). The default is 1MB." +msgstr "" + +#: libraries/engines/pbxt.lib.php:48 +msgid "Checkpoint frequency" +msgstr "" + +#: libraries/engines/pbxt.lib.php:49 +msgid "" +"The amount of data written to the transaction log before a checkpoint is " +"performed. The default value is 24MB." +msgstr "" + +#: libraries/engines/pbxt.lib.php:53 +msgid "Data log threshold" +msgstr "" + +#: libraries/engines/pbxt.lib.php:54 +msgid "" +"The maximum size of a data log file. The default value is 64MB. PBXT can " +"create a maximum of 32000 data logs, which are used by all tables. So the " +"value of this variable can be increased to increase the total amount of data " +"that can be stored in the database." +msgstr "" + +#: libraries/engines/pbxt.lib.php:58 +msgid "Garbage threshold" +msgstr "" + +#: libraries/engines/pbxt.lib.php:59 +msgid "" +"The percentage of garbage in a data log file before it is compacted. This is " +"a value between 1 and 99. The default is 50." +msgstr "" + +#: libraries/engines/pbxt.lib.php:63 +msgid "Log buffer size" +msgstr "" + +#: libraries/engines/pbxt.lib.php:64 +msgid "" +"The size of the buffer used when writing a data log. The default is 256MB. " +"The engine allocates one buffer per thread, but only if the thread is " +"required to write a data log." +msgstr "" + +#: libraries/engines/pbxt.lib.php:68 +msgid "Data file grow size" +msgstr "" + +#: libraries/engines/pbxt.lib.php:69 +msgid "The grow size of the handle data (.xtd) files." +msgstr "" + +#: libraries/engines/pbxt.lib.php:73 +msgid "Row file grow size" +msgstr "" + +#: libraries/engines/pbxt.lib.php:74 +msgid "The grow size of the row pointer (.xtr) files." +msgstr "" + +#: libraries/engines/pbxt.lib.php:78 +msgid "Log file count" +msgstr "" + +#: libraries/engines/pbxt.lib.php:79 +msgid "" +"This is the number of transaction log files (pbxt/system/xlog*.xt) the " +"system will maintain. If the number of logs exceeds this value then old logs " +"will be deleted, otherwise they are renamed and given the next highest " +"number." +msgstr "" + +#: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88 +#: tbl_printview.php:376 tbl_structure.php:737 +msgid "Format" +msgstr "" + +#: libraries/export/csv.php:17 libraries/import/csv.php:22 +msgid "CSV" +msgstr "" + +#: libraries/export/csv.php:21 libraries/import/csv.php:27 +#: libraries/import/csv.php:59 libraries/import/ldi.php:40 +msgid "Columns terminated by" +msgstr "" + +#: libraries/export/csv.php:22 libraries/import/csv.php:28 +#: libraries/import/csv.php:71 libraries/import/ldi.php:41 +msgid "Columns enclosed by" +msgstr "" + +#: libraries/export/csv.php:23 libraries/import/csv.php:29 +#: libraries/import/csv.php:75 libraries/import/ldi.php:42 +msgid "Columns escaped by" +msgstr "" + +#: libraries/export/csv.php:24 libraries/import/csv.php:30 +#: libraries/import/csv.php:79 libraries/import/ldi.php:43 +msgid "Lines terminated by" +msgstr "" + +#: libraries/export/csv.php:25 libraries/export/excel.php:22 +#: libraries/export/htmlword.php:25 libraries/export/latex.php:65 +#: libraries/export/ods.php:23 libraries/export/odt.php:52 +#: libraries/export/texytext.php:31 libraries/export/xls.php:23 +#: libraries/export/xlsx.php:23 +msgid "Replace NULL by" +msgstr "" + +#: libraries/export/csv.php:26 libraries/export/excel.php:23 +msgid "Remove CRLF characters within columns" +msgstr "" + +#: libraries/export/csv.php:27 libraries/export/excel.php:24 +#: libraries/export/htmlword.php:26 libraries/export/latex.php:57 +#: libraries/export/ods.php:24 libraries/export/odt.php:50 +#: libraries/export/texytext.php:34 libraries/export/xls.php:24 +#: libraries/export/xlsx.php:24 +msgid "Put columns names in the first row" +msgstr "" + +#: libraries/export/excel.php:18 +msgid "CSV for MS Excel" +msgstr "" + +#: libraries/export/excel.php:32 +msgid "Excel edition" +msgstr "" + +#: libraries/export/htmlword.php:18 +msgid "Microsoft Word 2000" +msgstr "" + +#: libraries/export/htmlword.php:24 libraries/export/latex.php:55 +#: libraries/export/latex.php:201 libraries/export/odt.php:48 +#: libraries/export/sql.php:106 libraries/export/sql.php:868 +#: libraries/export/texytext.php:27 server_databases.php:127 +#: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 +#: tbl_structure.php:665 +msgid "Data" +msgstr "" + +#: libraries/export/htmlword.php:132 libraries/export/odt.php:168 +#: libraries/export/sql.php:881 libraries/export/texytext.php:130 +msgid "Dumping data for table" +msgstr "" + +#: libraries/export/htmlword.php:185 libraries/export/odt.php:238 +#: libraries/export/sql.php:785 libraries/export/texytext.php:177 +msgid "Table structure for table" +msgstr "" + +#: libraries/export/latex.php:22 +msgid "LaTeX" +msgstr "" + +#: libraries/export/latex.php:26 +msgid "Include table caption" +msgstr "" + +#: libraries/export/latex.php:35 libraries/export/latex.php:59 +msgid "Table caption" +msgstr "" + +#: libraries/export/latex.php:37 libraries/export/latex.php:61 +msgid "Continued table caption" +msgstr "" + +#: libraries/export/latex.php:39 libraries/export/latex.php:63 +msgid "Label key" +msgstr "" + +#: libraries/export/latex.php:42 libraries/export/odt.php:35 +#: libraries/export/sql.php:91 tbl_relation.php:399 +msgid "Relations" +msgstr "" + +#: libraries/export/latex.php:48 libraries/export/odt.php:41 +#: libraries/export/odt.php:318 libraries/export/sql.php:95 +#: libraries/tbl_properties.inc.php:143 +msgid "MIME type" +msgstr "" + +#: libraries/export/latex.php:125 libraries/export/sql.php:232 +#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 +#: libraries/replication_gui.lib.php:63 libraries/replication_gui.lib.php:174 +#: libraries/replication_gui.lib.php:269 libraries/replication_gui.lib.php:272 +#: libraries/replication_gui.lib.php:329 server_privileges.php:692 +#: server_privileges.php:695 server_privileges.php:751 +#: server_privileges.php:1498 server_privileges.php:2030 +#: server_processlist.php:55 server_synchronize.php:1159 +msgid "Host" +msgstr "" + +#: libraries/export/latex.php:130 libraries/export/sql.php:233 +#: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 +msgid "Generation Time" +msgstr "" + +#: libraries/export/latex.php:131 libraries/export/sql.php:235 +#: libraries/export/xml.php:108 main.php:186 +msgid "Server version" +msgstr "" + +#: libraries/export/latex.php:132 libraries/export/sql.php:236 +#: libraries/export/xml.php:109 +msgid "PHP Version" +msgstr "" + +#: libraries/export/mediawiki.php:15 +msgid "MediaWiki Table" +msgstr "" + +#: libraries/export/ods.php:18 libraries/import/ods.php:22 +msgid "Open Document Spreadsheet" +msgstr "" + +#: libraries/export/odt.php:22 +msgid "Open Document Text" +msgstr "" + +#: libraries/export/pdf.php:18 +msgid "PDF" +msgstr "" + +#: libraries/export/pdf.php:23 +msgid "(Generates a report containing the data of a single table)" +msgstr "" + +#: libraries/export/pdf.php:24 +msgid "Report title" +msgstr "" + +#: libraries/export/php_array.php:16 +msgid "PHP array" +msgstr "" + +#: libraries/export/sql.php:29 +msgid "Add custom comment into header (\\n splits lines)" +msgstr "" + +#: libraries/export/sql.php:31 +msgid "Enclose export in a transaction" +msgstr "" + +#: libraries/export/sql.php:32 +msgid "Disable foreign key checks" +msgstr "" + +#: libraries/export/sql.php:50 +msgid "Database export options" +msgstr "" + +#: libraries/export/sql.php:80 +msgid "Enclose table and column names with backquotes" +msgstr "" + +#: libraries/export/sql.php:86 +msgid "Add into comments" +msgstr "" + +#: libraries/export/sql.php:88 +msgid "Creation/Update/Check dates" +msgstr "" + +#: libraries/export/sql.php:108 +msgid "Complete inserts" +msgstr "" + +#: libraries/export/sql.php:110 +msgid "Extended inserts" +msgstr "" + +#: libraries/export/sql.php:112 +msgid "Maximal length of created query" +msgstr "" + +#: libraries/export/sql.php:114 +msgid "Use delayed inserts" +msgstr "" + +#: libraries/export/sql.php:116 +msgid "Use ignore inserts" +msgstr "" + +#: libraries/export/sql.php:118 +msgid "Use hexadecimal for BLOB" +msgstr "" + +#: libraries/export/sql.php:120 +msgid "Export time in UTC" +msgstr "" + +#: libraries/export/sql.php:122 +msgid "Export type" +msgstr "" + +#: libraries/export/sql.php:387 +msgid "Procedures" +msgstr "" + +#: libraries/export/sql.php:401 +msgid "Functions" +msgstr "" + +#: libraries/export/sql.php:618 +msgid "Constraints for dumped tables" +msgstr "" + +#: libraries/export/sql.php:627 +msgid "Constraints for table" +msgstr "" + +#: libraries/export/sql.php:727 +msgid "MIME TYPES FOR TABLE" +msgstr "" + +#: libraries/export/sql.php:739 +msgid "RELATIONS FOR TABLE" +msgstr "" + +#: libraries/export/sql.php:796 libraries/tbl_triggers.lib.php:19 +msgid "Triggers" +msgstr "" + +#: libraries/export/sql.php:808 +msgid "Structure for view" +msgstr "" + +#: libraries/export/sql.php:817 +msgid "Stand-in structure for view" +msgstr "" + +#: libraries/export/texytext.php:17 +msgid "Texy! text" +msgstr "" + +#: libraries/export/xls.php:18 libraries/import/xls.php:21 +msgid "Excel 97-2003 XLS Workbook" +msgstr "" + +#: libraries/export/xlsx.php:18 libraries/import/xlsx.php:21 +msgid "Excel 2007 XLSX Workbook" +msgstr "" + +#: libraries/export/xml.php:18 libraries/import/xml.php:21 +msgid "XML" +msgstr "" + +#: libraries/export/xml.php:29 +msgid "Export Structure Schemas (recommended)" +msgstr "" + +#: libraries/export/xml.php:31 +msgid "Export functions" +msgstr "" + +#: libraries/export/xml.php:33 +msgid "Export procedures" +msgstr "" + +#: libraries/export/xml.php:35 +msgid "Export tables" +msgstr "" + +#: libraries/export/xml.php:37 +msgid "Export triggers" +msgstr "" + +#: libraries/export/xml.php:39 +msgid "Export views" +msgstr "" + +#: libraries/export/xml.php:45 +msgid "Export contents" +msgstr "" + +#: libraries/footer.inc.php:184 libraries/footer.inc.php:195 +#: libraries/footer.inc.php:198 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/header.inc.php:115 +msgid "New table" +msgstr "" + +#: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 +msgid "SQL result" +msgstr "" + +#: libraries/header_printview.inc.php:60 +msgid "Generated by" +msgstr "" + +#: libraries/import.lib.php:150 sql.php:520 tbl_change.php:181 +#: tbl_get_field.php:35 +msgid "MySQL returned an empty result set (i.e. zero rows)." +msgstr "" + +#: libraries/import.lib.php:1078 +msgid "" +"The following structures have either been created or altered. Here you can:" +msgstr "" + +#: libraries/import.lib.php:1079 +msgid "View a structure`s contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1080 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1081 +msgid "Edit its structure by following the \"Structure\" link" +msgstr "" + +#: libraries/import.lib.php:1084 +msgid "Go to database" +msgstr "" + +#: libraries/import.lib.php:1087 libraries/import.lib.php:1111 +msgid "settings" +msgstr "" + +#: libraries/import.lib.php:1106 +msgid "Go to table" +msgstr "" + +#: libraries/import.lib.php:1109 +msgid "structure" +msgstr "" + +#: libraries/import.lib.php:1115 +msgid "Go to view" +msgstr "" + +#: libraries/import/csv.php:25 libraries/import/ldi.php:38 +msgid "Replace table data with file" +msgstr "" + +#: libraries/import/csv.php:26 libraries/import/ldi.php:39 +msgid "Ignore duplicate rows" +msgstr "" + +#: libraries/import/csv.php:37 libraries/import/ods.php:25 +#: libraries/import/xls.php:24 libraries/import/xlsx.php:24 +msgid "Column names in first row" +msgstr "" + +#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:502 +#: view_create.php:148 +msgid "Column names" +msgstr "" + +#: libraries/import/csv.php:58 libraries/import/csv.php:70 +#: libraries/import/csv.php:74 libraries/import/csv.php:78 +#, possible-php-format +msgid "Invalid parameter for CSV import: %s" +msgstr "" + +#: libraries/import/csv.php:119 +#, possible-php-format +msgid "Invalid column (%s) specified!" +msgstr "" + +#: libraries/import/csv.php:177 libraries/import/csv.php:424 +#, possible-php-format +msgid "Invalid format of CSV input on line %d." +msgstr "" + +#: libraries/import/csv.php:312 +#, possible-php-format +msgid "Invalid column count in CSV input on line %d." +msgstr "" + +#: libraries/import/docsql.php:29 +msgid "DocSQL" +msgstr "" + +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:618 +#: server_synchronize.php:428 server_synchronize.php:871 +msgid "Table name" +msgstr "" + +#: libraries/import/ldi.php:35 +msgid "CSV using LOAD DATA" +msgstr "" + +#: libraries/import/ldi.php:45 +msgid "Use LOCAL keyword" +msgstr "" + +#: libraries/import/ldi.php:55 +msgid "This plugin does not support compressed imports!" +msgstr "" + +#: libraries/import/ods.php:26 +msgid "Do not import empty rows" +msgstr "" + +#: libraries/import/ods.php:27 +msgid "Import percentages as proper decimals (12.00% to .12)" +msgstr "" + +#: libraries/import/ods.php:28 +msgid "Import currencies ($5.00 to 5.00)" +msgstr "" + +#: libraries/import/sql.php:42 +msgid "Do not use AUTO_INCREMENT for zero values" +msgstr "" + +#: libraries/import/xml.php:74 libraries/import/xml.php:130 +msgid "" +"The XML file specified was either malformed or incomplete. Please correct " +"the issue and try again." +msgstr "" + +#. l10n: This is currently used only in Japanese locales +#: libraries/kanji-encoding.lib.php:143 +msgid "Encoding conversion" +msgstr "" + +#. l10n: This is currently used only in Japanese locales +#: libraries/kanji-encoding.lib.php:145 +msgctxt "None encoding conversion" +msgid "None" +msgstr "" + +#. l10n: This is currently used only in Japanese locales +#: libraries/kanji-encoding.lib.php:151 +msgid "Convert to Kana" +msgstr "" + +#. l10n: Text direction, use either ltr or rtl +#: libraries/messages.inc.php:19 +msgid "ltr" +msgstr "" + +#: libraries/messages.inc.php:21 +msgid "Content of table __TABLE__" +msgstr "" + +#: libraries/messages.inc.php:22 +msgid "(continued)" +msgstr "" + +#: libraries/messages.inc.php:23 +msgid "Structure of table __TABLE__" +msgstr "" + +#: libraries/messages.inc.php:25 server_privileges.php:227 +msgid "Includes all privileges except GRANT." +msgstr "" + +#: libraries/messages.inc.php:26 server_privileges.php:153 +#: server_privileges.php:476 +msgid "Allows altering the structure of existing tables." +msgstr "" + +#: libraries/messages.inc.php:27 server_privileges.php:169 +#: server_privileges.php:482 +msgid "Allows altering and dropping stored routines." +msgstr "" + +#: libraries/messages.inc.php:28 server_privileges.php:145 +#: server_privileges.php:475 +msgid "Allows creating new databases and tables." +msgstr "" + +#: libraries/messages.inc.php:29 server_privileges.php:168 +#: server_privileges.php:481 +msgid "Allows creating stored routines." +msgstr "" + +#: libraries/messages.inc.php:30 server_privileges.php:475 +msgid "Allows creating new tables." +msgstr "" + +#: libraries/messages.inc.php:31 server_privileges.php:156 +#: server_privileges.php:479 +msgid "Allows creating temporary tables." +msgstr "" + +#: libraries/messages.inc.php:32 server_privileges.php:170 +#: server_privileges.php:515 +msgid "Allows creating, dropping and renaming user accounts." +msgstr "" + +#: libraries/messages.inc.php:33 server_privileges.php:160 +#: server_privileges.php:164 server_privileges.php:487 +#: server_privileges.php:491 +msgid "Allows creating new views." +msgstr "" + +#: libraries/messages.inc.php:34 server_privileges.php:144 +#: server_privileges.php:467 +msgid "Allows deleting data." +msgstr "" + +#: libraries/messages.inc.php:35 server_privileges.php:146 +#: server_privileges.php:478 +msgid "Allows dropping databases and tables." +msgstr "" + +#: libraries/messages.inc.php:36 server_privileges.php:478 +msgid "Allows dropping tables." +msgstr "" + +#: libraries/messages.inc.php:37 server_privileges.php:161 +#: server_privileges.php:495 +msgid "Allows to set up events for the event scheduler" +msgstr "" + +#: libraries/messages.inc.php:38 server_privileges.php:171 +#: server_privileges.php:483 +msgid "Allows executing stored routines." +msgstr "" + +#: libraries/messages.inc.php:39 server_privileges.php:150 +#: server_privileges.php:470 +msgid "Allows importing data from and exporting data into files." +msgstr "" + +#: libraries/messages.inc.php:40 server_privileges.php:501 +msgid "" +"Allows adding users and privileges without reloading the privilege tables." +msgstr "" + +#: libraries/messages.inc.php:41 server_privileges.php:152 +#: server_privileges.php:477 +msgid "Allows creating and dropping indexes." +msgstr "" + +#: libraries/messages.inc.php:42 server_privileges.php:142 +#: server_privileges.php:403 server_privileges.php:465 +msgid "Allows inserting and replacing data." +msgstr "" + +#: libraries/messages.inc.php:43 server_privileges.php:157 +#: server_privileges.php:510 +msgid "Allows locking tables for the current thread." +msgstr "" + +#: libraries/messages.inc.php:44 server_privileges.php:607 +#: server_privileges.php:609 +msgid "Limits the number of new connections the user may open per hour." +msgstr "" + +#: libraries/messages.inc.php:45 server_privileges.php:595 +#: server_privileges.php:597 +msgid "Limits the number of queries the user may send to the server per hour." +msgstr "" + +#: libraries/messages.inc.php:46 server_privileges.php:601 +#: server_privileges.php:603 +msgid "" +"Limits the number of commands that change any table or database the user may " +"execute per hour." +msgstr "" + +#: libraries/messages.inc.php:47 server_privileges.php:613 +#: server_privileges.php:615 +msgid "Limits the number of simultaneous connections the user may have." +msgstr "" + +#: libraries/messages.inc.php:48 server_privileges.php:149 +#: server_privileges.php:505 +msgid "Allows viewing processes of all users" +msgstr "" + +#: libraries/messages.inc.php:49 server_privileges.php:151 +#: server_privileges.php:409 server_privileges.php:511 +msgid "Has no effect in this MySQL version." +msgstr "" + +#: libraries/messages.inc.php:50 server_privileges.php:147 +#: server_privileges.php:506 +msgid "Allows reloading server settings and flushing the server's caches." +msgstr "" + +#: libraries/messages.inc.php:51 server_privileges.php:159 +#: server_privileges.php:513 +msgid "Allows the user to ask where the slaves / masters are." +msgstr "" + +#: libraries/messages.inc.php:52 server_privileges.php:158 +#: server_privileges.php:514 +msgid "Needed for the replication slaves." +msgstr "" + +#: libraries/messages.inc.php:53 server_privileges.php:141 +#: server_privileges.php:400 server_privileges.php:464 +msgid "Allows reading data." +msgstr "" + +#: libraries/messages.inc.php:54 server_privileges.php:154 +#: server_privileges.php:508 +msgid "Gives access to the complete list of databases." +msgstr "" + +#: libraries/messages.inc.php:55 server_privileges.php:165 +#: server_privileges.php:167 server_privileges.php:480 +msgid "Allows performing SHOW CREATE VIEW queries." +msgstr "" + +#: libraries/messages.inc.php:56 server_privileges.php:148 +#: server_privileges.php:507 +msgid "Allows shutting down the server." +msgstr "" + +#: libraries/messages.inc.php:57 server_privileges.php:155 +#: server_privileges.php:504 +msgid "" +"Allows connecting, even if maximum number of connections is reached; " +"required for most administrative operations like setting global variables or " +"killing threads of other users." +msgstr "" + +#: libraries/messages.inc.php:58 server_privileges.php:162 +#: server_privileges.php:496 +msgid "Allows creating and dropping triggers" +msgstr "" + +#: libraries/messages.inc.php:59 server_privileges.php:143 +#: server_privileges.php:406 server_privileges.php:466 +msgid "Allows changing data." +msgstr "" + +#: libraries/messages.inc.php:60 server_privileges.php:221 +msgid "No privileges." +msgstr "" + +#: libraries/messages.inc.php:62 +msgid "" +"The number of transactions that used the temporary binary log cache but that " +"exceeded the value of binlog_cache_size and used a temporary file to store " +"statements from the transaction." +msgstr "" + +#: libraries/messages.inc.php:63 +msgid "The number of transactions that used the temporary binary log cache." +msgstr "" + +#: libraries/messages.inc.php:64 +msgid "" +"The number of temporary tables on disk created automatically by the server " +"while executing statements. If Created_tmp_disk_tables is big, you may want " +"to increase the tmp_table_size value to cause temporary tables to be memory-" +"based instead of disk-based." +msgstr "" + +#: libraries/messages.inc.php:65 +msgid "How many temporary files mysqld has created." +msgstr "" + +#: libraries/messages.inc.php:66 +msgid "" +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." +msgstr "" + +#: libraries/messages.inc.php:67 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" + +#: libraries/messages.inc.php:68 +msgid "" +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." +msgstr "" + +#: libraries/messages.inc.php:69 +msgid "The number of INSERT DELAYED rows written." +msgstr "" + +#: libraries/messages.inc.php:70 +msgid "The number of executed FLUSH statements." +msgstr "" + +#: libraries/messages.inc.php:71 +msgid "The number of internal COMMIT statements." +msgstr "" + +#: libraries/messages.inc.php:72 +msgid "The number of times a row was deleted from a table." +msgstr "" + +#: libraries/messages.inc.php:73 +msgid "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." +msgstr "" + +#: libraries/messages.inc.php:74 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" + +#: libraries/messages.inc.php:75 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" + +#: libraries/messages.inc.php:76 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" + +#: libraries/messages.inc.php:77 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" + +#: libraries/messages.inc.php:78 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" + +#: libraries/messages.inc.php:79 +msgid "" +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." +msgstr "" + +#: libraries/messages.inc.php:80 +msgid "The number of internal ROLLBACK statements." +msgstr "" + +#: libraries/messages.inc.php:81 +msgid "The number of requests to update a row in a table." +msgstr "" + +#: libraries/messages.inc.php:82 +msgid "The number of requests to insert a row in a table." +msgstr "" + +#: libraries/messages.inc.php:83 +msgid "The number of pages containing data (dirty or clean)." +msgstr "" + +#: libraries/messages.inc.php:84 +msgid "The number of pages currently dirty." +msgstr "" + +#: libraries/messages.inc.php:85 +msgid "The number of buffer pool pages that have been requested to be flushed." +msgstr "" + +#: libraries/messages.inc.php:86 +msgid "The number of free pages." +msgstr "" + +#: libraries/messages.inc.php:87 +msgid "" +"The number of latched pages in InnoDB buffer pool. These are pages currently " +"being read or written or that can't be flushed or removed for some other " +"reason." +msgstr "" + +#: libraries/messages.inc.php:88 +msgid "" +"The number of pages busy because they have been allocated for administrative " +"overhead such as row locks or the adaptive hash index. This value can also " +"be calculated as Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." +msgstr "" + +#: libraries/messages.inc.php:89 +msgid "Total size of buffer pool, in pages." +msgstr "" + +#: libraries/messages.inc.php:90 +msgid "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." +msgstr "" + +#: libraries/messages.inc.php:91 +msgid "" +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." +msgstr "" + +#: libraries/messages.inc.php:92 +msgid "The number of logical read requests InnoDB has done." +msgstr "" + +#: libraries/messages.inc.php:93 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" + +#: libraries/messages.inc.php:94 +msgid "" +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." +msgstr "" + +#: libraries/messages.inc.php:95 +msgid "The number writes done to the InnoDB buffer pool." +msgstr "" + +#: libraries/messages.inc.php:96 +msgid "The number of fsync() operations so far." +msgstr "" + +#: libraries/messages.inc.php:97 +msgid "The current number of pending fsync() operations." +msgstr "" + +#: libraries/messages.inc.php:98 +msgid "The current number of pending reads." +msgstr "" + +#: libraries/messages.inc.php:99 +msgid "The current number of pending writes." +msgstr "" + +#: libraries/messages.inc.php:100 +msgid "The amount of data read so far, in bytes." +msgstr "" + +#: libraries/messages.inc.php:101 +msgid "The total number of data reads." +msgstr "" + +#: libraries/messages.inc.php:102 +msgid "The total number of data writes." +msgstr "" + +#: libraries/messages.inc.php:103 +msgid "The amount of data written so far, in bytes." +msgstr "" + +#: libraries/messages.inc.php:104 +msgid "The number of pages that have been written for doublewrite operations." +msgstr "" + +#: libraries/messages.inc.php:105 +msgid "The number of doublewrite operations that have been performed." +msgstr "" + +#: libraries/messages.inc.php:106 +msgid "" +"The number of waits we had because log buffer was too small and we had to " +"wait for it to be flushed before continuing." +msgstr "" + +#: libraries/messages.inc.php:107 +msgid "The number of log write requests." +msgstr "" + +#: libraries/messages.inc.php:108 +msgid "The number of physical writes to the log file." +msgstr "" + +#: libraries/messages.inc.php:109 +msgid "The number of fsync() writes done to the log file." +msgstr "" + +#: libraries/messages.inc.php:110 +msgid "The number of pending log file fsyncs." +msgstr "" + +#: libraries/messages.inc.php:111 +msgid "Pending log file writes." +msgstr "" + +#: libraries/messages.inc.php:112 +msgid "The number of bytes written to the log file." +msgstr "" + +#: libraries/messages.inc.php:113 +msgid "The number of pages created." +msgstr "" + +#: libraries/messages.inc.php:114 +msgid "" +"The compiled-in InnoDB page size (default 16KB). Many values are counted in " +"pages; the page size allows them to be easily converted to bytes." +msgstr "" + +#: libraries/messages.inc.php:115 +msgid "The number of pages read." +msgstr "" + +#: libraries/messages.inc.php:116 +msgid "The number of pages written." +msgstr "" + +#: libraries/messages.inc.php:117 +msgid "The number of row locks currently being waited for." +msgstr "" + +#: libraries/messages.inc.php:118 +msgid "The average time to acquire a row lock, in milliseconds." +msgstr "" + +#: libraries/messages.inc.php:119 +msgid "The total time spent in acquiring row locks, in milliseconds." +msgstr "" + +#: libraries/messages.inc.php:120 +msgid "The maximum time to acquire a row lock, in milliseconds." +msgstr "" + +#: libraries/messages.inc.php:121 +msgid "The number of times a row lock had to be waited for." +msgstr "" + +#: libraries/messages.inc.php:122 +msgid "The number of rows deleted from InnoDB tables." +msgstr "" + +#: libraries/messages.inc.php:123 +msgid "The number of rows inserted in InnoDB tables." +msgstr "" + +#: libraries/messages.inc.php:124 +msgid "The number of rows read from InnoDB tables." +msgstr "" + +#: libraries/messages.inc.php:125 +msgid "The number of rows updated in InnoDB tables." +msgstr "" + +#: libraries/messages.inc.php:126 +msgid "" +"The number of key blocks in the key cache that have changed but haven't yet " +"been flushed to disk. It used to be known as Not_flushed_key_blocks." +msgstr "" + +#: libraries/messages.inc.php:127 +msgid "" +"The number of unused blocks in the key cache. You can use this value to " +"determine how much of the key cache is in use." +msgstr "" + +#: libraries/messages.inc.php:128 +msgid "" +"The number of used blocks in the key cache. This value is a high-water mark " +"that indicates the maximum number of blocks that have ever been in use at " +"one time." +msgstr "" + +#: libraries/messages.inc.php:129 +msgid "The number of requests to read a key block from the cache." +msgstr "" + +#: libraries/messages.inc.php:130 +msgid "" +"The number of physical reads of a key block from disk. If Key_reads is big, " +"then your key_buffer_size value is probably too small. The cache miss rate " +"can be calculated as Key_reads/Key_read_requests." +msgstr "" + +#: libraries/messages.inc.php:131 +msgid "The number of requests to write a key block to the cache." +msgstr "" + +#: libraries/messages.inc.php:132 +msgid "The number of physical writes of a key block to disk." +msgstr "" + +#: libraries/messages.inc.php:133 +msgid "" +"The total cost of the last compiled query as computed by the query " +"optimizer. Useful for comparing the cost of different query plans for the " +"same query. The default value of 0 means that no query has been compiled yet." +msgstr "" + +#: libraries/messages.inc.php:134 +msgid "The number of rows waiting to be written in INSERT DELAYED queues." +msgstr "" + +#: libraries/messages.inc.php:135 +msgid "" +"The number of tables that have been opened. If opened tables is big, your " +"table cache value is probably too small." +msgstr "" + +#: libraries/messages.inc.php:136 +msgid "The number of files that are open." +msgstr "" + +#: libraries/messages.inc.php:137 +msgid "The number of streams that are open (used mainly for logging)." +msgstr "" + +#: libraries/messages.inc.php:138 +msgid "The number of tables that are open." +msgstr "" + +#: libraries/messages.inc.php:139 +msgid "The number of free memory blocks in query cache." +msgstr "" + +#: libraries/messages.inc.php:140 +msgid "The amount of free memory for query cache." +msgstr "" + +#: libraries/messages.inc.php:141 +msgid "The number of cache hits." +msgstr "" + +#: libraries/messages.inc.php:142 +msgid "The number of queries added to the cache." +msgstr "" + +#: libraries/messages.inc.php:143 +msgid "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." +msgstr "" + +#: libraries/messages.inc.php:144 +msgid "" +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." +msgstr "" + +#: libraries/messages.inc.php:145 +msgid "The number of queries registered in the cache." +msgstr "" + +#: libraries/messages.inc.php:146 +msgid "The total number of blocks in the query cache." +msgstr "" + +#: libraries/messages.inc.php:147 +msgctxt "$strShowStatusReset" +msgid "Reset" +msgstr "" + +#: libraries/messages.inc.php:148 +msgid "The status of failsafe replication (not yet implemented)." +msgstr "" + +#: libraries/messages.inc.php:149 +msgid "" +"The number of joins that do not use indexes. If this value is not 0, you " +"should carefully check the indexes of your tables." +msgstr "" + +#: libraries/messages.inc.php:150 +msgid "The number of joins that used a range search on a reference table." +msgstr "" + +#: libraries/messages.inc.php:151 +msgid "" +"The number of joins without keys that check for key usage after each row. " +"(If this is not 0, you should carefully check the indexes of your tables.)" +msgstr "" + +#: libraries/messages.inc.php:152 +msgid "" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" +msgstr "" + +#: libraries/messages.inc.php:153 +msgid "The number of joins that did a full scan of the first table." +msgstr "" + +#: libraries/messages.inc.php:154 +msgid "The number of temporary tables currently open by the slave SQL thread." +msgstr "" + +#: libraries/messages.inc.php:155 +msgid "" +"Total (since startup) number of times the replication slave SQL thread has " +"retried transactions." +msgstr "" + +#: libraries/messages.inc.php:156 +msgid "This is ON if this server is a slave that is connected to a master." +msgstr "" + +#: libraries/messages.inc.php:157 +msgid "" +"The number of threads that have taken more than slow_launch_time seconds to " +"create." +msgstr "" + +#: libraries/messages.inc.php:158 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" + +#: libraries/messages.inc.php:159 +msgid "" +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." +msgstr "" + +#: libraries/messages.inc.php:160 +msgid "The number of sorts that were done with ranges." +msgstr "" + +#: libraries/messages.inc.php:161 +msgid "The number of sorted rows." +msgstr "" + +#: libraries/messages.inc.php:162 +msgid "The number of sorts that were done by scanning the table." +msgstr "" + +#: libraries/messages.inc.php:163 +msgid "The number of times that a table lock was acquired immediately." +msgstr "" + +#: libraries/messages.inc.php:164 +msgid "" +"The number of times that a table lock could not be acquired immediately and " +"a wait was needed. If this is high, and you have performance problems, you " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" + +#: libraries/messages.inc.php:165 +msgid "" +"The number of threads in the thread cache. The cache hit rate can be " +"calculated as Threads_created/Connections. If this value is red you should " +"raise your thread_cache_size." +msgstr "" + +#: libraries/messages.inc.php:166 +msgid "The number of currently open connections." +msgstr "" + +#: libraries/messages.inc.php:167 +msgid "" +"The number of threads created to handle connections. If Threads_created is " +"big, you may want to increase the thread_cache_size value. (Normally this " +"doesn't give a notable performance improvement if you have a good thread " +"implementation.)" +msgstr "" + +#: libraries/messages.inc.php:168 +msgid "The number of threads that are not sleeping." +msgstr "" + +#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513 +#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157 +#: tbl_structure.php:473 +msgid "Primary" +msgstr "" + +#: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 +#: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 +#: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 +#: tbl_structure.php:475 tbl_structure.php:673 +msgid "Index" +msgstr "" + +#: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 +#: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 +#: tbl_structure.php:478 +msgid "Fulltext" +msgstr "" + +#: libraries/mult_submits.inc.php:435 tbl_replace.php:331 +msgid "No change" +msgstr "" + +#: libraries/mysql_charsets.lib.php:107 +msgid "Charset" +msgstr "" + +#: libraries/mysql_charsets.lib.php:201 libraries/mysql_charsets.lib.php:402 +#: tbl_change.php:518 +msgid "Binary" +msgstr "" + +#: libraries/mysql_charsets.lib.php:213 +msgid "Bulgarian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:217 libraries/mysql_charsets.lib.php:342 +msgid "Simplified Chinese" +msgstr "" + +#: libraries/mysql_charsets.lib.php:219 libraries/mysql_charsets.lib.php:362 +msgid "Traditional Chinese" +msgstr "" + +#: libraries/mysql_charsets.lib.php:223 libraries/mysql_charsets.lib.php:409 +msgid "case-insensitive" +msgstr "" + +#: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:411 +msgid "case-sensitive" +msgstr "" + +#: libraries/mysql_charsets.lib.php:229 +msgid "Croatian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:232 +msgid "Czech" +msgstr "" + +#: libraries/mysql_charsets.lib.php:235 +msgid "Danish" +msgstr "" + +#: libraries/mysql_charsets.lib.php:238 +msgid "English" +msgstr "" + +#: libraries/mysql_charsets.lib.php:241 +msgid "Esperanto" +msgstr "" + +#: libraries/mysql_charsets.lib.php:244 +msgid "Estonian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:247 libraries/mysql_charsets.lib.php:250 +msgid "German" +msgstr "" + +#: libraries/mysql_charsets.lib.php:247 +msgid "dictionary" +msgstr "" + +#: libraries/mysql_charsets.lib.php:250 +msgid "phone book" +msgstr "" + +#: libraries/mysql_charsets.lib.php:253 +msgid "Hungarian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:256 +msgid "Icelandic" +msgstr "" + +#: libraries/mysql_charsets.lib.php:259 libraries/mysql_charsets.lib.php:349 +msgid "Japanese" +msgstr "" + +#: libraries/mysql_charsets.lib.php:262 +msgid "Latvian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:265 +msgid "Lithuanian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:371 +msgid "Korean" +msgstr "" + +#: libraries/mysql_charsets.lib.php:271 +msgid "Persian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:274 +msgid "Polish" +msgstr "" + +#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:325 +msgid "West European" +msgstr "" + +#: libraries/mysql_charsets.lib.php:280 +msgid "Romanian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:283 +msgid "Slovak" +msgstr "" + +#: libraries/mysql_charsets.lib.php:286 +msgid "Slovenian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:289 +msgid "Spanish" +msgstr "" + +#: libraries/mysql_charsets.lib.php:292 +msgid "Traditional Spanish" +msgstr "" + +#: libraries/mysql_charsets.lib.php:295 libraries/mysql_charsets.lib.php:392 +msgid "Swedish" +msgstr "" + +#: libraries/mysql_charsets.lib.php:298 libraries/mysql_charsets.lib.php:395 +msgid "Thai" +msgstr "" + +#: libraries/mysql_charsets.lib.php:301 libraries/mysql_charsets.lib.php:389 +msgid "Turkish" +msgstr "" + +#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:386 +msgid "Ukrainian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:316 +msgid "Unicode" +msgstr "" + +#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:316 +#: libraries/mysql_charsets.lib.php:325 libraries/mysql_charsets.lib.php:332 +#: libraries/mysql_charsets.lib.php:354 libraries/mysql_charsets.lib.php:365 +msgid "multilingual" +msgstr "" + +#: libraries/mysql_charsets.lib.php:332 +msgid "Central European" +msgstr "" + +#: libraries/mysql_charsets.lib.php:337 +msgid "Russian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:354 +msgid "Baltic" +msgstr "" + +#: libraries/mysql_charsets.lib.php:359 +msgid "Armenian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:365 +msgid "Cyrillic" +msgstr "" + +#: libraries/mysql_charsets.lib.php:368 +msgid "Arabic" +msgstr "" + +#: libraries/mysql_charsets.lib.php:374 +msgid "Hebrew" +msgstr "" + +#: libraries/mysql_charsets.lib.php:377 +msgid "Georgian" +msgstr "" + +#: libraries/mysql_charsets.lib.php:380 +msgid "Greek" +msgstr "" + +#: libraries/mysql_charsets.lib.php:383 +msgid "Czech-Slovak" +msgstr "" + +#: libraries/mysql_charsets.lib.php:398 libraries/mysql_charsets.lib.php:405 +msgid "unknown" +msgstr "" + +#: libraries/navigation_header.inc.php:54 +#: libraries/navigation_header.inc.php:57 +#: libraries/navigation_header.inc.php:58 +msgid "Home" +msgstr "" + +#: libraries/navigation_header.inc.php:67 +#: libraries/navigation_header.inc.php:70 +#: libraries/navigation_header.inc.php:71 main.php:99 +msgid "Log out" +msgstr "" + +#: libraries/navigation_header.inc.php:80 +#: libraries/navigation_header.inc.php:83 +#: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 +msgid "Query window" +msgstr "" + +#: libraries/plugin_interface.lib.php:312 +msgid "This format has no options" +msgstr "" + +#: libraries/relation.lib.php:95 +msgid "not OK" +msgstr "" + +#: libraries/relation.lib.php:99 pmd_general.php:340 +msgid "OK" +msgstr "" + +#: libraries/relation.lib.php:100 +msgid "Enabled" +msgstr "" + +#: libraries/relation.lib.php:123 +msgid "Display Features" +msgstr "" + +#: libraries/relation.lib.php:129 +msgid "Creation of PDFs" +msgstr "" + +#: libraries/relation.lib.php:133 +msgid "Displaying Column Comments" +msgstr "" + +#: libraries/relation.lib.php:138 +msgid "" +"Please see the documentation on how to update your column_comments table" +msgstr "" + +#: libraries/relation.lib.php:143 libraries/sql_query_form.lib.php:433 +msgid "Bookmarked SQL query" +msgstr "" + +#: libraries/relation.lib.php:147 querywindow.php:109 querywindow.php:217 +msgid "SQL history" +msgstr "" + +#: libraries/relation.lib.php:159 +msgid "Quick steps to setup advanced features:" +msgstr "" + +#: libraries/relation.lib.php:161 +msgid "" +"Create the needed tables with the script/create_tables.sql." +msgstr "" + +#: libraries/relation.lib.php:162 +msgid "Create a pma user and give access to these tables." +msgstr "" + +#: libraries/relation.lib.php:163 +msgid "" +"Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." +msgstr "" + +#: libraries/relation.lib.php:164 +msgid "Re-login to phpMyAdmin to load the updated configuration file." +msgstr "" + +#: libraries/relation.lib.php:1173 +msgid "no description" +msgstr "" + +#: libraries/replication_gui.lib.php:51 +msgid "Slave configuration" +msgstr "" + +#: libraries/replication_gui.lib.php:51 server_replication.php:347 +msgid "Change or reconfigure master server" +msgstr "" + +#: libraries/replication_gui.lib.php:52 +msgid "" +"Make sure, you have unique server-id in your configuration file (my.cnf). If " +"not, please add the following line into [mysqld] section:" +msgstr "" + +#: libraries/replication_gui.lib.php:55 libraries/replication_gui.lib.php:56 +#: libraries/replication_gui.lib.php:249 libraries/replication_gui.lib.php:252 +#: libraries/replication_gui.lib.php:259 server_privileges.php:672 +#: server_privileges.php:675 server_privileges.php:682 +#: server_synchronize.php:1171 +msgid "User name" +msgstr "" + +#: libraries/replication_gui.lib.php:67 server_synchronize.php:1163 +msgid "Port" +msgstr "" + +#: libraries/replication_gui.lib.php:103 +msgid "Master status" +msgstr "" + +#: libraries/replication_gui.lib.php:105 +msgid "Slave status" +msgstr "" + +#: libraries/replication_gui.lib.php:114 libraries/sql_query_form.lib.php:445 +#: server_status.php:626 server_variables.php:52 +msgid "Variable" +msgstr "" + +#: libraries/replication_gui.lib.php:115 server_status.php:627 +#: tbl_change.php:324 tbl_printview.php:370 tbl_select.php:139 +#: tbl_structure.php:729 +msgid "Value" +msgstr "" + +#: libraries/replication_gui.lib.php:173 server_binlog.php:218 +msgid "Server ID" +msgstr "" + +#: libraries/replication_gui.lib.php:192 +msgid "" +"Only slaves started with the --report-host=host_name option are visible in " +"this list." +msgstr "" + +#: libraries/replication_gui.lib.php:240 server_replication.php:194 +msgid "Add slave replication user" +msgstr "" + +#: libraries/replication_gui.lib.php:254 server_privileges.php:677 +msgid "Any user" +msgstr "" + +#: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:323 +#: libraries/replication_gui.lib.php:346 server_privileges.php:678 +#: server_privileges.php:745 server_privileges.php:769 +#: server_privileges.php:1889 server_privileges.php:1919 +msgid "Use text field" +msgstr "" + +#: libraries/replication_gui.lib.php:302 server_privileges.php:725 +msgid "Any host" +msgstr "" + +#: libraries/replication_gui.lib.php:306 server_privileges.php:729 +msgid "Local" +msgstr "" + +#: libraries/replication_gui.lib.php:312 server_privileges.php:734 +msgid "This Host" +msgstr "" + +#: libraries/replication_gui.lib.php:318 server_privileges.php:740 +msgid "Use Host Table" +msgstr "" + +#: libraries/replication_gui.lib.php:331 server_privileges.php:753 +msgid "" +"When Host table is used, this field is ignored and values stored in Host " +"table are used instead." +msgstr "" + +#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 +#: libraries/select_lang.lib.php:492 +#, possible-php-format +msgid "Unknown language: %1$s." +msgstr "" + +#: libraries/select_server.lib.php:45 setup/frames/index.inc.php:97 +#: setup/lib/messages.inc.php:115 +msgid "Servers" +msgstr "" + +#: libraries/server_links.inc.php:53 server_engines.php:112 +#: server_engines.php:116 server_status.php:304 test/theme.php:105 +msgid "Variables" +msgstr "" + +#: libraries/server_links.inc.php:57 test/theme.php:109 +msgid "Charsets" +msgstr "" + +#: libraries/server_links.inc.php:61 test/theme.php:113 +msgid "Engines" +msgstr "" + +#: libraries/server_links.inc.php:76 server_binlog.php:110 +#: server_status.php:253 test/theme.php:121 +msgid "Binary log" +msgstr "" + +#: libraries/server_links.inc.php:80 +msgid "Processes" +msgstr "" + +#: libraries/server_links.inc.php:92 server_synchronize.php:1092 +#: server_synchronize.php:1100 +msgid "Synchronize" +msgstr "" + +#: libraries/server_synchronize.lib.php:1341 server_synchronize.php:1110 +msgid "Source database" +msgstr "" + +#: libraries/server_synchronize.lib.php:1343 +#: libraries/server_synchronize.lib.php:1369 +msgid "Current server" +msgstr "" + +#: libraries/server_synchronize.lib.php:1345 +#: libraries/server_synchronize.lib.php:1371 +msgid "Remote server" +msgstr "" + +#: libraries/server_synchronize.lib.php:1348 +msgid "Difference" +msgstr "" + +#: libraries/server_synchronize.lib.php:1367 server_synchronize.php:1112 +msgid "Target database" +msgstr "" + +#: libraries/sql_query_form.lib.php:223 +#, possible-php-format +msgid "Run SQL query/queries on server %s" +msgstr "" + +#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:265 +#, possible-php-format +msgid "Run SQL query/queries on database %s" +msgstr "" + +#: libraries/sql_query_form.lib.php:317 +msgid "Columns" +msgstr "" + +#: libraries/sql_query_form.lib.php:352 sql.php:665 sql.php:666 sql.php:683 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql_query_form.lib.php:359 sql.php:677 +msgid "Let every user access this bookmark" +msgstr "" + +#: libraries/sql_query_form.lib.php:365 +msgid "Replace existing bookmark of same name" +msgstr "" + +#: libraries/sql_query_form.lib.php:381 +msgid "Do not overwrite this query from outside the window" +msgstr "" + +#: libraries/sql_query_form.lib.php:388 +msgid "Delimiter" +msgstr "" + +#: libraries/sql_query_form.lib.php:396 +msgid " Show this query here again " +msgstr "" + +#: libraries/sql_query_form.lib.php:462 +msgid "Submit" +msgstr "" + +#: libraries/sql_query_form.lib.php:466 +msgid "View only" +msgstr "" + +#: libraries/sqlparser.lib.php:137 +msgid "" +"There seems to be an error in your SQL query. The MySQL server error output " +"below, if there is any, may also help you in diagnosing the problem" +msgstr "" + +#: libraries/sqlparser.lib.php:173 +msgid "" +"There is a chance that you may have found a bug in the SQL parser. Please " +"examine your query closely, and check that the quotes are correct and not " +"mis-matched. Other possible failure causes may be that you are uploading a " +"file with binary outside of a quoted text area. You can also try your query " +"on the MySQL command line interface. The MySQL server error output below, if " +"there is any, may also help you in diagnosing the problem. If you still have " +"problems or if the parser fails where the command line interface succeeds, " +"please reduce your SQL query input to the single query that causes problems, " +"and submit a bug report with the data chunk in the CUT section below:" +msgstr "" + +#: libraries/sqlparser.lib.php:175 +msgid "BEGIN CUT" +msgstr "" + +#: libraries/sqlparser.lib.php:177 +msgid "END CUT" +msgstr "" + +#: libraries/sqlparser.lib.php:179 +msgid "BEGIN RAW" +msgstr "" + +#: libraries/sqlparser.lib.php:183 +msgid "END RAW" +msgstr "" + +#: libraries/sqlparser.lib.php:344 +msgid "Unclosed quote" +msgstr "" + +#: libraries/sqlparser.lib.php:495 +msgid "Invalid Identifer" +msgstr "" + +#: libraries/sqlparser.lib.php:612 +msgid "Unknown Punctuation String" +msgstr "" + +#: libraries/sqlvalidator.lib.php:68 +#, possible-php-format +msgid "" +"The SQL validator could not be initialized. Please check if you have " +"installed the necessary PHP extensions as described in the %sdocumentation%s." +msgstr "" + +#: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140 +#: libraries/tbl_links.inc.php:141 +msgid "Table seems to be empty!" +msgstr "" + +#: libraries/tbl_links.inc.php:149 +#, possible-php-format +msgid "Tracking of %s.%s is activated." +msgstr "" + +#: libraries/tbl_properties.inc.php:105 +msgid "Length/Values" +msgstr "" + +#: libraries/tbl_properties.inc.php:105 +msgid "" +"If column type is \"enum\" or \"set\", please enter the values using this " +"format: 'a','b','c'...
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 "" + +#: libraries/tbl_properties.inc.php:106 +msgid "" +"For default values, please enter just a single value, without backslash " +"escaping or quotes, using this format: a" +msgstr "" + +#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264 +#: pdf_schema.php:1285 tbl_printview.php:144 tbl_structure.php:180 +msgid "Attributes" +msgstr "" + +#: libraries/tbl_properties.inc.php:137 +#, possible-php-format +msgid "" +"For a list of available transformation options and their MIME type " +"transformations, click on %stransformation descriptions%s" +msgstr "" + +#: libraries/tbl_properties.inc.php:145 +msgid "Transformation options" +msgstr "" + +#: libraries/tbl_properties.inc.php:146 +msgid "" +"Please enter the values for transformation options using this format: 'a', " +"100, b,'c'...
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 "" + +#: libraries/tbl_properties.inc.php:393 +msgctxt "for default" +msgid "None" +msgstr "" + +#: libraries/tbl_properties.inc.php:394 +msgid "As defined:" +msgstr "" + +#: libraries/tbl_properties.inc.php:580 transformation_overview.php:58 +#, possible-php-format +msgid "" +"No description is available for this transformation.
Please ask the " +"author what %s does." +msgstr "" + +#: libraries/tbl_properties.inc.php:726 server_engines.php:58 +#: tbl_operations.php:355 +msgid "Storage Engine" +msgstr "" + +#: libraries/tbl_properties.inc.php:755 +msgid "PARTITION definition" +msgstr "" + +#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503 +#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214 +#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1126 tbl_indexes.php:248 +#: tbl_relation.php:566 +msgid "Save" +msgstr "" + +#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 +#, possible-php-format +msgid "Add %s column(s)" +msgstr "" + +#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 +msgid "You have to add at least one column." +msgstr "" + +#: libraries/tbl_triggers.lib.php:29 +msgid "Event" +msgstr "" + +#: libraries/transformations/application_octetstream__download.inc.php:10 +msgid "" +"Displays a link to download the binary data of the column. You can use the " +"first option to specify the filename, or use the second option as the name " +"of a column which contains the filename. If you use the second option, you " +"need to set the first option to the empty string." +msgstr "" + +#: libraries/transformations/application_octetstream__hex.inc.php:10 +msgid "" +"Displays hexadecimal representation of data. Optional first parameter " +"specifies how often space will be added (defaults to 2 nibbles)." +msgstr "" + +#: libraries/transformations/image_jpeg__inline.inc.php:10 +#: libraries/transformations/image_png__inline.inc.php:10 +msgid "" +"Displays a clickable thumbnail. The options are the maximum width and height " +"in pixels. The original aspect ratio is preserved." +msgstr "" + +#: libraries/transformations/image_jpeg__link.inc.php:10 +msgid "Displays a link to download this image." +msgstr "" + +#: libraries/transformations/text_plain__dateformat.inc.php:10 +msgid "" +"Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp column as " +"formatted date. The first option is the offset (in hours) which will be " +"added to the timestamp (Default: 0). Use second option to specify a " +"different date/time format string. Third option determines whether you want " +"to see local date or UTC one (use \"local\" or \"utc\" strings) for that. " +"According to that, date format has different value - for \"local\" see the " +"documentation for PHP's strftime() function and for \"utc\" it is done using " +"gmdate() function." +msgstr "" + +#: libraries/transformations/text_plain__external.inc.php:10 +msgid "" +"LINUX ONLY: Launches an external application and feeds it the column data " +"via standard input. Returns the standard output of the application. The " +"default is Tidy, to pretty-print HTML code. For security reasons, you have " +"to manually edit the file libraries/transformations/text_plain__external.inc." +"php and list the tools you want to make available. The first option is then " +"the number of the program you want to use and the second option is the " +"parameters for the program. The third option, if set to 1, will convert the " +"output using htmlspecialchars() (Default 1). The fourth option, if set to 1, " +"will prevent wrapping and ensure that the output appears all on one line " +"(Default 1)." +msgstr "" + +#: libraries/transformations/text_plain__formatted.inc.php:10 +msgid "" +"Displays the contents of the column as-is, without running it through " +"htmlspecialchars(). That is, the column is assumed to contain valid HTML." +msgstr "" + +#: libraries/transformations/text_plain__imagelink.inc.php:10 +msgid "" +"Displays an image and a link; the column contains the filename. The first " +"option is a URL prefix like \"http://www.example.com/\". The second and " +"third options are the width and the height in pixels." +msgstr "" + +#: libraries/transformations/text_plain__link.inc.php:10 +msgid "" +"Displays a link; the column contains the filename. The first option is a URL " +"prefix like \"http://www.example.com/\". The second option is a title for " +"the link." +msgstr "" + +#: libraries/transformations/text_plain__longToIpv4.inc.php:10 +msgid "" +"Converts an (IPv4) Internet network address into a string in Internet " +"standard dotted format." +msgstr "" + +#: libraries/transformations/text_plain__sql.inc.php:10 +msgid "Formats text as SQL query with syntax highlighting." +msgstr "" + +#: libraries/transformations/text_plain__substr.inc.php:10 +msgid "" +"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: \"...\")." +msgstr "" + +#: libraries/zip_extension.lib.php:26 +msgid "No files found inside ZIP archive!" +msgstr "" + +#: libraries/zip_extension.lib.php:49 libraries/zip_extension.lib.php:51 +#: libraries/zip_extension.lib.php:66 +msgid "Error in ZIP archive:" +msgstr "" + +#: main.php:68 +msgid "Actions" +msgstr "" + +#: main.php:125 +msgid "MySQL connection collation" +msgstr "" + +#: main.php:139 +msgid "Interface" +msgstr "" + +#: main.php:159 +msgid "Custom color" +msgstr "" + +#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216 +#: tbl_change.php:1175 +msgid "Reset" +msgstr "" + +#: main.php:187 +msgid "Protocol version" +msgstr "" + +#: main.php:189 server_privileges.php:1350 server_privileges.php:1497 +#: server_privileges.php:1611 server_privileges.php:2029 +#: server_processlist.php:54 +msgid "User" +msgstr "" + +#: main.php:193 +msgid "MySQL charset" +msgstr "" + +#: main.php:205 +msgid "Web server" +msgstr "" + +#: main.php:211 +msgid "MySQL client version" +msgstr "" + +#: main.php:213 +msgid "PHP extension" +msgstr "" + +#: main.php:219 +msgid "Show PHP information" +msgstr "" + +#: main.php:230 +msgid "Wiki" +msgstr "" + +#: main.php:233 +msgid "Official Homepage" +msgstr "" + +#: main.php:266 +msgid "" +"Your configuration file contains settings (root with no password) that " +"correspond to the default MySQL privileged account. Your MySQL server is " +"running with this default, is open to intrusion, and you really should fix " +"this security hole by setting a password for user 'root'." +msgstr "" + +#: main.php:274 +msgid "" +"You have enabled mbstring.func_overload in your PHP configuration. This " +"option is incompatible with phpMyAdmin and might cause some data to be " +"corrupted!" +msgstr "" + +#: main.php:282 +msgid "" +"The mbstring PHP extension was not found and you seem to be using a " +"multibyte charset. Without the mbstring extension phpMyAdmin is unable to " +"split strings correctly and it may result in unexpected results." +msgstr "" + +#: main.php:290 +msgid "" +"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." +"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " +"validity configured in phpMyAdmin, because of this, your login will expire " +"sooner than configured in phpMyAdmin." +msgstr "" + +#: main.php:298 +msgid "The configuration file now needs a secret passphrase (blowfish_secret)." +msgstr "" + +#: main.php:306 +msgid "" +"Directory [code]config[/code], which is used by the setup script, still " +"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " +"has been configured." +msgstr "" + +#: main.php:331 +msgid "" +"Javascript support is missing or disabled in your browser, some phpMyAdmin " +"functionality will be missing. For example navigation frame will not refresh " +"automatically." +msgstr "" + +#: main.php:346 +#, possible-php-format +msgid "" +"Your PHP MySQL library version %s differs from your MySQL server version %s. " +"This may cause unpredictable behavior." +msgstr "" + +#: main.php:358 +#, possible-php-format +msgid "" +"Server running with Suhosin. Please refer to %sdocumentation%s for possible " +"issues." +msgstr "" + +#: navigation.php:66 navigation.php:67 navigation.php:70 +msgid "Reload navigation frame" +msgstr "" + +#: navigation.php:210 server_databases.php:371 server_synchronize.php:1191 +msgid "No databases" +msgstr "" + +#: navigation.php:304 +msgid "Filter" +msgstr "" + +#: navigation.php:305 setup/frames/index.inc.php:218 +#: setup/lib/messages.inc.php:42 +msgid "Clear" +msgstr "" + +#: navigation.php:336 navigation.php:337 +msgctxt "short form" +msgid "Create table" +msgstr "" + +#: navigation.php:339 navigation.php:502 +msgid "Please select a database" +msgstr "" + +#: pdf_pages.php:41 pdf_pages.php:47 pdf_pages.php:53 pdf_pages.php:58 +#, possible-php-format +msgid "%s table not found or not set in %s" +msgstr "" + +#: pdf_pages.php:266 +msgid "Please choose a page to edit" +msgstr "" + +#: pdf_pages.php:304 pmd_pdf.php:114 +msgid "Create a page" +msgstr "" + +#: pdf_pages.php:310 +msgid "Page name" +msgstr "" + +#: pdf_pages.php:314 +msgid "Automatic layout based on" +msgstr "" + +#: pdf_pages.php:316 +msgid "Internal relations" +msgstr "" + +#: pdf_pages.php:339 +msgid "Select Tables" +msgstr "" + +#: pdf_pages.php:362 +msgid "Toggle scratchboard" +msgstr "" + +#: pdf_pages.php:525 +msgid "" +"The current page has references to tables that no longer exist. Would you " +"like to delete those references?" +msgstr "" + +#: pdf_schema.php:636 +#, possible-php-format +msgid "The %s table doesn't exist!" +msgstr "" + +#: pdf_schema.php:672 +#, possible-php-format +msgid "Please configure the coordinates for table %s" +msgstr "" + +#: pdf_schema.php:995 +#, possible-php-format +msgid "Schema of the %s database - Page %s" +msgstr "" + +#: pdf_schema.php:1013 +msgid "No tables" +msgstr "" + +#: pdf_schema.php:1032 pdf_schema.php:1141 +msgid "Relational schema" +msgstr "" + +#: pdf_schema.php:1116 +msgid "Table of contents" +msgstr "" + +#: pdf_schema.php:1267 pdf_schema.php:1288 tbl_printview.php:147 +#: tbl_structure.php:183 tbl_tracking.php:278 +msgid "Extra" +msgstr "" + +#: pmd_general.php:64 +msgid "Show/Hide left menu" +msgstr "" + +#: pmd_general.php:68 +msgid "Save position" +msgstr "" + +#: pmd_general.php:71 server_synchronize.php:429 server_synchronize.php:872 +msgid "Create table" +msgstr "" + +#: pmd_general.php:74 pmd_general.php:306 +msgid "Create relation" +msgstr "" + +#: pmd_general.php:80 +msgid "Reload" +msgstr "" + +#: pmd_general.php:83 +msgid "Help" +msgstr "" + +#: pmd_general.php:87 +msgid "Angular links" +msgstr "" + +#: pmd_general.php:87 +msgid "Direct links" +msgstr "" + +#: pmd_general.php:91 +msgid "Snap to grid" +msgstr "" + +#: pmd_general.php:95 +msgid "Small/Big All" +msgstr "" + +#: pmd_general.php:99 +msgid "Toggle small/big" +msgstr "" + +#: pmd_general.php:104 +msgid "Import/Export coordinates for PDF schema" +msgstr "" + +#: pmd_general.php:108 +msgid "Move Menu" +msgstr "" + +#: pmd_general.php:120 +msgid "Hide/Show all" +msgstr "" + +#: pmd_general.php:124 +msgid "Hide/Show Tables with no relation" +msgstr "" + +#: pmd_general.php:164 +msgid "Number of tables" +msgstr "" + +#: pmd_general.php:372 +msgid "Delete relation" +msgstr "" + +#: pmd_help.php:27 +msgid "To select relation, click :" +msgstr "" + +#: pmd_help.php:29 +msgid "" +"The display column is shown in pink. To set/unset a column as the display " +"column, click the \"Choose column to display\" icon, then click on the " +"appropriate column name." +msgstr "" + +#: pmd_pdf.php:63 +msgid "Page has been created" +msgstr "" + +#: pmd_pdf.php:65 +msgid "Page creation failed" +msgstr "" + +#: pmd_pdf.php:85 +msgid "Export/Import to scale" +msgstr "" + +#: pmd_pdf.php:89 +msgid "recommended" +msgstr "" + +#: pmd_pdf.php:94 +msgid "to/from page" +msgstr "" + +#: querywindow.php:104 +msgid "Import files" +msgstr "" + +#: querywindow.php:115 +msgid "All" +msgstr "" + +#: server_binlog.php:120 +msgid "Select binary log to view" +msgstr "" + +#: server_binlog.php:136 +msgid "Files" +msgstr "" + +#: server_binlog.php:183 server_binlog.php:186 server_processlist.php:49 +#: server_processlist.php:51 +msgid "Truncate Shown Queries" +msgstr "" + +#: server_binlog.php:192 server_binlog.php:195 server_processlist.php:49 +#: server_processlist.php:51 +msgid "Show Full Queries" +msgstr "" + +#: server_binlog.php:215 +msgid "Log name" +msgstr "" + +#: server_binlog.php:216 +msgid "Position" +msgstr "" + +#: server_binlog.php:217 +msgid "Event type" +msgstr "" + +#: server_binlog.php:219 +msgid "Original position" +msgstr "" + +#: server_binlog.php:220 +msgid "Information" +msgstr "" + +#: server_collations.php:40 +msgid "Character Sets and Collations" +msgstr "" + +#: server_databases.php:52 +msgid "No databases selected." +msgstr "" + +#: server_databases.php:63 +#, possible-php-format +msgid "%s databases have been dropped successfully." +msgstr "" + +#: server_databases.php:88 +msgid "Databases statistics" +msgstr "" + +#: server_databases.php:117 server_status.php:260 +#: setup/lib/messages.inc.php:117 +msgid "Tables" +msgstr "" + +#: server_databases.php:195 server_replication.php:181 +#: server_replication.php:209 +msgid "Master replication" +msgstr "" + +#: server_databases.php:197 server_replication.php:248 +msgid "Slave replication" +msgstr "" + +#: server_databases.php:230 +msgid "Jump to database" +msgstr "" + +#: server_databases.php:289 +#, possible-php-format +msgid "Check privileges for database "%s"." +msgstr "" + +#: server_databases.php:293 server_databases.php:294 +msgid "Check Privileges" +msgstr "" + +#: server_databases.php:358 server_databases.php:359 +msgid "Enable Statistics" +msgstr "" + +#: server_databases.php:362 server_databases.php:363 +msgid "Disable Statistics" +msgstr "" + +#: server_databases.php:366 +msgid "" +"Note: Enabling the database statistics here might cause heavy traffic " +"between the web server and the MySQL server." +msgstr "" + +#: server_engines.php:49 +msgid "Storage Engines" +msgstr "" + +#: server_export.php:21 +msgid "View dump (schema) of databases" +msgstr "" + +#: server_privileges.php:263 server_privileges.php:264 +msgctxt "None privileges" +msgid "None" +msgstr "" + +#: server_privileges.php:392 server_privileges.php:527 +#: server_privileges.php:1679 server_privileges.php:1685 +msgid "Table-specific privileges" +msgstr "" + +#: server_privileges.php:393 server_privileges.php:535 +#: server_privileges.php:1501 +msgid " Note: MySQL privilege names are expressed in English " +msgstr "" + +#: server_privileges.php:524 server_privileges.php:1500 +msgid "Global privileges" +msgstr "" + +#: server_privileges.php:526 server_privileges.php:1679 +msgid "Database-specific privileges" +msgstr "" + +#: server_privileges.php:571 +msgid "Administration" +msgstr "" + +#: server_privileges.php:591 +msgid "Resource limits" +msgstr "" + +#: server_privileges.php:592 +msgid "Note: Setting these options to 0 (zero) removes the limit." +msgstr "" + +#: server_privileges.php:669 +msgid "Login Information" +msgstr "" + +#: server_privileges.php:763 +msgid "Do not change the password" +msgstr "" + +#: server_privileges.php:804 server_privileges.php:2166 +msgid "No user found." +msgstr "" + +#: server_privileges.php:848 +#, possible-php-format +msgid "The user %s already exists!" +msgstr "" + +#: server_privileges.php:931 +msgid "You have added a new user." +msgstr "" + +#: server_privileges.php:1152 +#, possible-php-format +msgid "You have updated the privileges for %s." +msgstr "" + +#: server_privileges.php:1176 +#, possible-php-format +msgid "You have revoked the privileges for %s" +msgstr "" + +#: server_privileges.php:1212 +#, possible-php-format +msgid "The password for %s was changed successfully." +msgstr "" + +#: server_privileges.php:1232 +#, possible-php-format +msgid "Deleting %s" +msgstr "" + +#: server_privileges.php:1243 +msgid "No users selected for deleting!" +msgstr "" + +#: server_privileges.php:1246 +msgid "Reloading the privileges" +msgstr "" + +#: server_privileges.php:1261 +msgid "The selected users have been deleted successfully." +msgstr "" + +#: server_privileges.php:1296 +msgid "The privileges were reloaded successfully." +msgstr "" + +#: server_privileges.php:1324 server_privileges.php:1610 +msgid "Edit Privileges" +msgstr "" + +#: server_privileges.php:1333 +msgid "Revoke" +msgstr "" + +#: server_privileges.php:1365 +msgid "User overview" +msgstr "" + +#: server_privileges.php:1502 server_privileges.php:1684 +#: server_privileges.php:2033 +msgid "Grant" +msgstr "" + +#: server_privileges.php:1521 server_privileges.php:2123 +msgid "Any" +msgstr "" + +#: server_privileges.php:1570 server_privileges.php:1594 +#: server_privileges.php:1988 server_privileges.php:2177 +msgid "Add a new User" +msgstr "" + +#: server_privileges.php:1575 +msgid "Remove selected users" +msgstr "" + +#: server_privileges.php:1578 +msgid "Revoke all active privileges from the users and delete them afterwards." +msgstr "" + +#: server_privileges.php:1579 server_privileges.php:1580 +#: server_privileges.php:1581 +msgid "Drop the databases that have the same names as the users." +msgstr "" + +#: server_privileges.php:1597 +#, possible-php-format +msgid "" +"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " +"tables. The content of these tables may differ from the privileges the " +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." +msgstr "" + +#: server_privileges.php:1645 +msgid "The selected user was not found in the privilege table." +msgstr "" + +#: server_privileges.php:1685 +msgid "Column-specific privileges" +msgstr "" + +#: server_privileges.php:1886 +msgid "Add privileges on the following database" +msgstr "" + +#: server_privileges.php:1904 +msgid "Wildcards % and _ should be escaped with a \\ to use them literally" +msgstr "" + +#: server_privileges.php:1907 +msgid "Add privileges on the following table" +msgstr "" + +#: server_privileges.php:1964 +msgid "Change Login Information / Copy User" +msgstr "" + +#: server_privileges.php:1967 +msgid "Create a new user with the same privileges and ..." +msgstr "" + +#: server_privileges.php:1969 +msgid "... keep the old one." +msgstr "" + +#: server_privileges.php:1970 +msgid " ... delete the old one from the user tables." +msgstr "" + +#: server_privileges.php:1971 +msgid "" +" ... revoke all active privileges from the old one and delete it afterwards." +msgstr "" + +#: server_privileges.php:1972 +msgid "" +" ... delete the old one from the user tables and reload the privileges " +"afterwards." +msgstr "" + +#: server_privileges.php:1994 +msgid "Database for user" +msgstr "" + +#: server_privileges.php:1998 +msgctxt "Create none database for user" +msgid "None" +msgstr "" + +#: server_privileges.php:1999 +msgid "Create database with same name and grant all privileges" +msgstr "" + +#: server_privileges.php:2000 +msgid "Grant all privileges on wildcard name (username\\_%)" +msgstr "" + +#: server_privileges.php:2003 +#, possible-php-format +msgid "Grant all privileges on database "%s"" +msgstr "" + +#: server_privileges.php:2026 +#, possible-php-format +msgid "Users having access to "%s"" +msgstr "" + +#: server_privileges.php:2134 +msgid "global" +msgstr "" + +#: server_privileges.php:2136 +msgid "database-specific" +msgstr "" + +#: server_privileges.php:2138 +msgid "wildcard" +msgstr "" + +#: server_processlist.php:22 +#, possible-php-format +msgid "Thread %s was successfully killed." +msgstr "" + +#: server_processlist.php:24 +#, possible-php-format +msgid "" +"phpMyAdmin was unable to kill thread %s. It probably has already been closed." +msgstr "" + +#: server_processlist.php:53 +msgid "ID" +msgstr "" + +#: server_replication.php:51 +msgid "Unknown error" +msgstr "" + +#: server_replication.php:58 +#, possible-php-format +msgid "Unable to connect to master %s." +msgstr "" + +#: server_replication.php:65 +msgid "" +"Unable to read master log position. Possible privilege problem on master." +msgstr "" + +#: server_replication.php:71 +msgid "Unable to change master" +msgstr "" + +#: server_replication.php:74 +#, possible-php-format +msgid "Master server changed succesfully to %s" +msgstr "" + +#: server_replication.php:182 +msgid "This server is configured as master in a replication process." +msgstr "" + +#: server_replication.php:184 server_status.php:281 +msgid "Show master status" +msgstr "" + +#: server_replication.php:187 +msgid "Show connected slaves" +msgstr "" + +#: server_replication.php:210 +#, possible-php-format +msgid "" +"This server is not configured as master in a replication process. Would you " +"like to configure it?" +msgstr "" + +#: server_replication.php:217 +msgid "Master configuration" +msgstr "" + +#: server_replication.php:218 +msgid "" +"This server is not configured as master server in a replication process. You " +"can choose from either replicating all databases and ignoring certain " +"(useful if you want to replicate majority of databases) or you can choose to " +"ignore all databases by default and allow only certain databases to be " +"replicated. Please select the mode:" +msgstr "" + +#: server_replication.php:221 +msgid "Replicate all databases; Ignore:" +msgstr "" + +#: server_replication.php:222 +msgid "Ignore all databases; Replicate:" +msgstr "" + +#: server_replication.php:225 +msgid "Please select databases:" +msgstr "" + +#: server_replication.php:228 +msgid "" +"Now, add the following lines at the end of [mysqld] section in your my.cnf " +"and please restart the MySQL server afterwards." +msgstr "" + +#: server_replication.php:230 +msgid "" +"Once you restarted MySQL server, please click on Go button. Afterwards, you " +"should see a message informing you, that this server is configured as " +"master" +msgstr "" + +#: server_replication.php:293 +msgid "Slave SQL Thread not running!" +msgstr "" + +#: server_replication.php:296 +msgid "Slave IO Thread not running!" +msgstr "" + +#: server_replication.php:305 +msgid "" +"Server is configured as slave in a replication process. Would you like to:" +msgstr "" + +#: server_replication.php:308 +msgid "See slave status table" +msgstr "" + +#: server_replication.php:311 +msgid "Synchronize databases with master" +msgstr "" + +#: server_replication.php:322 +msgid "Control slave:" +msgstr "" + +#: server_replication.php:325 +msgid "Full start" +msgstr "" + +#: server_replication.php:325 +msgid "Full stop" +msgstr "" + +#: server_replication.php:326 +msgid "Reset slave" +msgstr "" + +#: server_replication.php:327 +#, possible-php-format +msgid "SQL Thread %s only" +msgstr "" + +#: server_replication.php:327 server_replication.php:328 +msgid "Start" +msgstr "" + +#: server_replication.php:327 server_replication.php:328 +msgid "Stop" +msgstr "" + +#: server_replication.php:328 +#, possible-php-format +msgid "IO Thread %s only" +msgstr "" + +#: server_replication.php:332 +msgid "Error management:" +msgstr "" + +#: server_replication.php:334 +msgid "Skipping errors might lead into unsynchronized master and slave!" +msgstr "" + +#: server_replication.php:336 +msgid "Skip current error" +msgstr "" + +#: server_replication.php:337 +msgid "Skip next" +msgstr "" + +#: server_replication.php:340 +msgid "errors." +msgstr "" + +#: server_replication.php:355 +#, possible-php-format +msgid "" +"This server is not configured as slave in a replication process. Would you " +"like to configure it?" +msgstr "" + +#: server_status.php:46 +msgid "Runtime Information" +msgstr "" + +#: server_status.php:250 +msgid "Handler" +msgstr "" + +#: server_status.php:251 +msgid "Query cache" +msgstr "" + +#: server_status.php:252 +msgid "Threads" +msgstr "" + +#: server_status.php:254 +msgid "Temporary data" +msgstr "" + +#: server_status.php:255 +msgid "Delayed inserts" +msgstr "" + +#: server_status.php:256 +msgid "Key cache" +msgstr "" + +#: server_status.php:257 +msgid "Joins" +msgstr "" + +#: server_status.php:259 +msgid "Sorting" +msgstr "" + +#: server_status.php:261 +msgid "Transaction coordinator" +msgstr "" + +#: server_status.php:271 +msgid "Flush (close) all tables" +msgstr "" + +#: server_status.php:273 +msgid "Show open tables" +msgstr "" + +#: server_status.php:278 +msgid "Show slave hosts" +msgstr "" + +#: server_status.php:284 +msgid "Show slave status" +msgstr "" + +#: server_status.php:289 +msgid "Flush query cache" +msgstr "" + +#: server_status.php:294 +msgid "Show processes" +msgstr "" + +#: server_status.php:344 +msgctxt "for Show status" +msgid "Reset" +msgstr "" + +#: server_status.php:350 +#, possible-php-format +msgid "This MySQL server has been running for %s. It started up on %s." +msgstr "" + +#: server_status.php:360 +msgid "" +"This MySQL server works as master and slave in replication process." +msgstr "" + +#: server_status.php:362 +msgid "This MySQL server works as master in replication process." +msgstr "" + +#: server_status.php:364 +msgid "This MySQL server works as slave in replication process." +msgstr "" + +#: server_status.php:366 +msgid "" +"For further information about replication status on the server, please visit " +"the replication section." +msgstr "" + +#: server_status.php:383 +msgid "" +"Server traffic: These tables show the network traffic statistics of " +"this MySQL server since its startup." +msgstr "" + +#: server_status.php:388 +msgid "Traffic" +msgstr "" + +#: server_status.php:388 +msgid "" +"On a busy server, the byte counters may overrun, so those statistics as " +"reported by the MySQL server may be incorrect." +msgstr "" + +#: server_status.php:389 server_status.php:434 server_status.php:497 +#: server_status.php:555 +msgid "per hour" +msgstr "" + +#: server_status.php:394 +msgid "Received" +msgstr "" + +#: server_status.php:404 +msgid "Sent" +msgstr "" + +#: server_status.php:433 +msgid "Connections" +msgstr "" + +#: server_status.php:440 +msgid "max. concurrent connections" +msgstr "" + +#: server_status.php:447 +msgid "Failed attempts" +msgstr "" + +#: server_status.php:461 +msgid "Aborted" +msgstr "" + +#: server_status.php:490 +#, possible-php-format +msgid "" +"Query statistics: Since its startup, %s queries have been sent to the " +"server." +msgstr "" + +#: server_status.php:498 +msgid "per minute" +msgstr "" + +#: server_status.php:499 +msgid "per second" +msgstr "" + +#: server_status.php:554 +msgid "Query type" +msgstr "" + +#: server_status.php:721 +msgid "Replication status" +msgstr "" + +#: server_synchronize.php:94 +msgid "Could not connect to the source" +msgstr "" + +#: server_synchronize.php:97 +msgid "Could not connect to the target" +msgstr "" + +#: server_synchronize.php:122 server_synchronize.php:125 tbl_create.php:82 +#: tbl_get_field.php:20 +#, possible-php-format +msgid "'%s' database does not exist." +msgstr "" + +#: server_synchronize.php:265 +msgid "Structure Synchronization" +msgstr "" + +#: server_synchronize.php:272 +msgid "Data Synchronization" +msgstr "" + +#: server_synchronize.php:400 server_synchronize.php:839 +msgid "not present" +msgstr "" + +#: server_synchronize.php:424 server_synchronize.php:867 +msgid "Structure Difference" +msgstr "" + +#: server_synchronize.php:425 server_synchronize.php:868 +msgid "Data Difference" +msgstr "" + +#: server_synchronize.php:430 server_synchronize.php:873 +msgid "Add column(s)" +msgstr "" + +#: server_synchronize.php:431 server_synchronize.php:874 +msgid "Remove column(s)" +msgstr "" + +#: server_synchronize.php:432 server_synchronize.php:875 +msgid "Alter column(s)" +msgstr "" + +#: server_synchronize.php:433 server_synchronize.php:876 +msgid "Remove index(s)" +msgstr "" + +#: server_synchronize.php:434 server_synchronize.php:877 +msgid "Apply index(s)" +msgstr "" + +#: server_synchronize.php:435 server_synchronize.php:878 +msgid "Update row(s)" +msgstr "" + +#: server_synchronize.php:436 server_synchronize.php:879 +msgid "Insert row(s)" +msgstr "" + +#: server_synchronize.php:446 server_synchronize.php:890 +msgid "Would you like to delete all the previous rows from target tables?" +msgstr "" + +#: server_synchronize.php:449 server_synchronize.php:894 +msgid "Apply Selected Changes" +msgstr "" + +#: server_synchronize.php:451 server_synchronize.php:896 +msgid "Synchronize Databases" +msgstr "" + +#: server_synchronize.php:464 +msgid "Selected target tables have been synchronized with source tables." +msgstr "" + +#: server_synchronize.php:942 +msgid "Target database has been synchronized with source database" +msgstr "" + +#: server_synchronize.php:1003 +msgid "The following queries have been executed:" +msgstr "" + +#: server_synchronize.php:1122 +msgid "Enter manually" +msgstr "" + +#: server_synchronize.php:1123 +msgid "Current connection" +msgstr "" + +#: server_synchronize.php:1152 +#, possible-php-format +msgid "Configuration: %s" +msgstr "" + +#: server_synchronize.php:1167 +msgid "Socket" +msgstr "" + +#: server_synchronize.php:1213 +msgid "" +"Target database will be completely synchronized with source database. Source " +"database will remain unchanged." +msgstr "" + +#: server_variables.php:35 +msgid "Server variables and settings" +msgstr "" + +#: server_variables.php:55 +msgid "Session value" +msgstr "" + +#: server_variables.php:55 server_variables.php:89 +msgid "Global value" +msgstr "" + +#: setup/frames/config.inc.php:25 setup/frames/index.inc.php:152 +#: setup/lib/messages.inc.php:45 +msgid "Configuration file" +msgstr "" + +#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:212 +#: setup/lib/messages.inc.php:65 +msgid "Download" +msgstr "" + +#: setup/frames/index.inc.php:58 setup/lib/messages.inc.php:164 +msgid "" +"You are not using a secure connection; all data (including potentially " +"sensitive information, like passwords) is transferred unencrypted!" +msgstr "" + +#: setup/frames/index.inc.php:87 setup/frames/menu.inc.php:17 +#: setup/lib/messages.inc.php:219 +msgid "Overview" +msgstr "" + +#: setup/frames/index.inc.php:95 setup/lib/messages.inc.php:337 +msgid "Show hidden messages (#MSG_COUNT)" +msgstr "" + +#: setup/frames/index.inc.php:135 setup/lib/messages.inc.php:213 +msgid "There are no configured servers" +msgstr "" + +#: setup/frames/index.inc.php:143 setup/lib/messages.inc.php:212 +msgid "New server" +msgstr "" + +#: setup/frames/index.inc.php:172 setup/lib/messages.inc.php:50 +msgid "Default language" +msgstr "" + +#: setup/frames/index.inc.php:182 setup/lib/messages.inc.php:187 +msgid "let the user choose" +msgstr "" + +#: setup/frames/index.inc.php:193 setup/lib/messages.inc.php:216 +msgid "- none -" +msgstr "" + +#: setup/frames/index.inc.php:196 setup/lib/messages.inc.php:51 +msgid "Default server" +msgstr "" + +#: setup/frames/index.inc.php:206 setup/lib/messages.inc.php:66 +msgid "End of line" +msgstr "" + +#: setup/frames/index.inc.php:211 setup/lib/messages.inc.php:61 +msgid "Display" +msgstr "" + +#: setup/frames/index.inc.php:215 setup/lib/messages.inc.php:190 +msgid "Load" +msgstr "" + +#: setup/frames/index.inc.php:226 setup/lib/messages.inc.php:152 +msgid "phpMyAdmin homepage" +msgstr "" + +#: setup/frames/index.inc.php:227 setup/lib/messages.inc.php:64 +msgid "Donate" +msgstr "" + +#: setup/frames/index.inc.php:228 setup/lib/messages.inc.php:370 +msgid "Check for latest version" +msgstr "" + +#: setup/frames/menu.inc.php:18 setup/lib/messages.inc.php:137 +msgid "Features" +msgstr "" + +#: setup/frames/menu.inc.php:19 setup/lib/messages.inc.php:113 +msgid "Navigation frame" +msgstr "" + +#: setup/frames/menu.inc.php:20 setup/lib/messages.inc.php:118 +msgid "Main frame" +msgstr "" + +#: setup/frames/servers.inc.php:28 setup/lib/messages.inc.php:272 +msgid "Edit server" +msgstr "" + +#: setup/frames/servers.inc.php:37 setup/lib/messages.inc.php:241 +msgid "Add a new server" +msgstr "" + +#: setup/lib/FormDisplay.class.php:458 setup/lib/messages.inc.php:76 +msgid "Incorrect value" +msgstr "" + +#: setup/lib/FormDisplay.tpl.php:182 setup/lib/messages.inc.php:328 +#, possible-php-format +msgid "Set value: %s" +msgstr "" + +#: setup/lib/FormDisplay.tpl.php:187 setup/lib/messages.inc.php:234 +msgid "Restore default value" +msgstr "" + +#: setup/lib/form_processing.lib.php:43 setup/lib/messages.inc.php:377 +msgid "Warning" +msgstr "" + +#: setup/lib/messages.inc.php:16 +msgid "Allow character set conversion" +msgstr "" + +#: setup/lib/messages.inc.php:17 +msgid "" +"If enabled user can enter any MySQL server in login form for cookie auth" +msgstr "" + +#: setup/lib/messages.inc.php:18 +msgid "" +"This [a@?page=form&formset=features#tab_Security]option[/a] should be " +"disabled as it allows attackers to bruteforce login to any MySQL server. If " +"you feel this is necessary, use [a@?page=form&" +"formset=features#tab_Security]trusted proxies list[/a]. However, IP-based " +"protection may not be reliable if your IP belongs to an ISP where thousands " +"of users, including you, are connected to." +msgstr "" + +#: setup/lib/messages.inc.php:19 +msgid "Allow login to any MySQL server" +msgstr "" + +#: setup/lib/messages.inc.php:20 +msgid "Show "Drop database" link to normal users" +msgstr "" + +#: setup/lib/messages.inc.php:21 +msgid "Key should contain letters, numbers [em]and[/em] special characters" +msgstr "" + +#: setup/lib/messages.inc.php:22 +msgid "" +"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " +"authentication" +msgstr "" + +#: setup/lib/messages.inc.php:23 +msgid "Key is too short, it should have at least 8 characters" +msgstr "" + +#: setup/lib/messages.inc.php:24 +msgid "" +"You didn't have blowfish secret set and have enabled cookie authentication, " +"so a key was automatically generated for you. It is used to encrypt cookies; " +"you don't need to remember it." +msgstr "" + +#: setup/lib/messages.inc.php:25 +msgid "Blowfish secret" +msgstr "" + +#: setup/lib/messages.inc.php:26 +msgid "Highlight selected rows" +msgstr "" + +#: setup/lib/messages.inc.php:27 +msgid "Row marker" +msgstr "" + +#: setup/lib/messages.inc.php:28 +msgid "Highlight row pointed by the mouse cursor" +msgstr "" + +#: setup/lib/messages.inc.php:29 +msgid "Highlight pointer" +msgstr "" + +#: setup/lib/messages.inc.php:30 +msgid "" +"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " +"import and export operations" +msgstr "" + +#: setup/lib/messages.inc.php:31 +msgid "Bzip2" +msgstr "" + +#: setup/lib/messages.inc.php:32 +#, possible-php-format +msgid "" +"[a@?page=form&formset=features#tab_Import_export]Bzip2 compression and " +"decompression[/a] requires functions (%s) which are unavailable on this " +"system." +msgstr "" + +#: setup/lib/messages.inc.php:33 +msgid "Cannot load or save configuration" +msgstr "" + +#: setup/lib/messages.inc.php:34 +msgid "" +"Please create web server writable folder [em]config[/em] in phpMyAdmin top " +"level directory as described in [a@../Documentation.html#setup_script]" +"documentation[/a]. Otherwise you will be only able to download or display it." +msgstr "" + +#: setup/lib/messages.inc.php:35 +msgid "" +"Defines which type of editing controls should be used for CHAR and VARCHAR " +"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" +"kbd] - allows newlines in columns" +msgstr "" + +#: setup/lib/messages.inc.php:36 +msgid "CHAR columns editing" +msgstr "" + +#: setup/lib/messages.inc.php:37 +msgid "Number of columns for CHAR/VARCHAR textareas" +msgstr "" + +#: setup/lib/messages.inc.php:38 +msgid "CHAR textarea columns" +msgstr "" + +#: setup/lib/messages.inc.php:39 +msgid "Number of rows for CHAR/VARCHAR textareas" +msgstr "" + +#: setup/lib/messages.inc.php:40 +msgid "CHAR textarea rows" +msgstr "" + +#: setup/lib/messages.inc.php:41 +msgid "Check config file permissions" +msgstr "" + +#: setup/lib/messages.inc.php:43 +msgid "" +"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" +msgstr "" + +#: setup/lib/messages.inc.php:44 +msgid "Compress on the fly" +msgstr "" + +#: setup/lib/messages.inc.php:46 +msgid "" +"Whether a warning ("Are your really sure...") should be displayed " +"when you're about to lose data" +msgstr "" + +#: setup/lib/messages.inc.php:47 +msgid "Confirm DROP queries" +msgstr "" + +#: setup/lib/messages.inc.php:48 +msgid "Default character set used for conversions" +msgstr "" + +#: setup/lib/messages.inc.php:49 +msgid "Default character set" +msgstr "" + +#: setup/lib/messages.inc.php:52 +msgid "Tab that is displayed when entering a database" +msgstr "" + +#: setup/lib/messages.inc.php:53 +msgid "Default database tab" +msgstr "" + +#: setup/lib/messages.inc.php:54 +msgid "Tab that is displayed when entering a server" +msgstr "" + +#: setup/lib/messages.inc.php:55 +msgid "Default server tab" +msgstr "" + +#: setup/lib/messages.inc.php:56 +msgid "Tab that is displayed when entering a table" +msgstr "" + +#: setup/lib/messages.inc.php:57 +msgid "Default table tab" +msgstr "" + +#: setup/lib/messages.inc.php:58 +msgid "" +"This value should be double checked to ensure that this directory is neither " +"world accessible nor readable or writable by other users on your server." +msgstr "" + +#: setup/lib/messages.inc.php:59 +msgid "Show database listing as a list instead of a drop down" +msgstr "" + +#: setup/lib/messages.inc.php:60 +msgid "Display databases as a list" +msgstr "" + +#: setup/lib/messages.inc.php:62 +msgid "Show server listing as a list instead of a drop down" +msgstr "" + +#: setup/lib/messages.inc.php:63 +msgid "Display servers as a list" +msgstr "" + +#: setup/lib/messages.inc.php:67 +msgid "Could not connect to MySQL server" +msgstr "" + +#: setup/lib/messages.inc.php:68 +msgid "Empty phpMyAdmin control user password while using pmadb" +msgstr "" + +#: setup/lib/messages.inc.php:69 +msgid "Empty phpMyAdmin control user while using pmadb" +msgstr "" + +#: setup/lib/messages.inc.php:70 +msgid "Empty signon session name while using signon authentication method" +msgstr "" + +#: setup/lib/messages.inc.php:71 +msgid "Empty signon URL while using signon authentication method" +msgstr "" + +#: setup/lib/messages.inc.php:72 +msgid "Empty username while using config authentication method" +msgstr "" + +#: setup/lib/messages.inc.php:73 +msgid "Submitted form contains errors" +msgstr "" + +#: setup/lib/messages.inc.php:74 +#, possible-php-format +msgid "Incorrect IP address: %s" +msgstr "" + +#: setup/lib/messages.inc.php:75 +msgid "Not a valid port number" +msgstr "" + +#: setup/lib/messages.inc.php:77 +#, possible-php-format +msgid "Missing data for %s" +msgstr "" + +#: setup/lib/messages.inc.php:78 +msgid "Not a non-negative number" +msgstr "" + +#: setup/lib/messages.inc.php:79 +msgid "Not a positive number" +msgstr "" + +#: setup/lib/messages.inc.php:80 +msgid "" +"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " +"limit)" +msgstr "" + +#: setup/lib/messages.inc.php:81 +msgid "Maximum execution time" +msgstr "" + +#: setup/lib/messages.inc.php:83 +msgid "Character set of the file" +msgstr "" + +#: setup/lib/messages.inc.php:85 +msgid "Database name template" +msgstr "" + +#: setup/lib/messages.inc.php:86 +msgid "Server name template" +msgstr "" + +#: setup/lib/messages.inc.php:87 +msgid "Table name template" +msgstr "" + +#: setup/lib/messages.inc.php:89 +msgid "Save on server" +msgstr "" + +#: setup/lib/messages.inc.php:91 +msgid "Remember file name template" +msgstr "" + +#: setup/lib/messages.inc.php:92 +msgid "no" +msgstr "" + +#: setup/lib/messages.inc.php:93 +msgid "Force secured connection while using phpMyAdmin" +msgstr "" + +#: setup/lib/messages.inc.php:94 +msgid "" +"This [a@?page=form&formset=features#tab_Security]option[/a] should be " +"enabled if your web server supports it" +msgstr "" + +#: setup/lib/messages.inc.php:95 +msgid "Force SSL connection" +msgstr "" + +#: setup/lib/messages.inc.php:96 +msgid "" +"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " +"the referenced data, [kbd]id[/kbd] is the key value" +msgstr "" + +#: setup/lib/messages.inc.php:97 +msgid "Foreign key dropdown order" +msgstr "" + +#: setup/lib/messages.inc.php:98 +msgid "A dropdown will be used if fewer items are present" +msgstr "" + +#: setup/lib/messages.inc.php:99 +msgid "Foreign key limit" +msgstr "" + +#: setup/lib/messages.inc.php:100 +msgid "Browse mode" +msgstr "" + +#: setup/lib/messages.inc.php:101 +msgid "Customize browse mode" +msgstr "" + +#: setup/lib/messages.inc.php:102 +msgid "Customize edit mode" +msgstr "" + +#: setup/lib/messages.inc.php:103 +msgid "Edit mode" +msgstr "" + +#: setup/lib/messages.inc.php:104 +msgid "Customize default export options" +msgstr "" + +#: setup/lib/messages.inc.php:105 +msgid "Export defaults" +msgstr "" + +#: setup/lib/messages.inc.php:106 +msgid "Customize default common import options" +msgstr "" + +#: setup/lib/messages.inc.php:107 +msgid "Import defaults" +msgstr "" + +#: setup/lib/messages.inc.php:108 +msgid "Set import and export directories and compression options" +msgstr "" + +#: setup/lib/messages.inc.php:109 +msgid "Import / export" +msgstr "" + +#: setup/lib/messages.inc.php:111 +msgid "Databases display options" +msgstr "" + +#: setup/lib/messages.inc.php:112 +msgid "Customize appearance of the navigation frame" +msgstr "" + +#: setup/lib/messages.inc.php:114 +msgid "Servers display options" +msgstr "" + +#: setup/lib/messages.inc.php:116 +msgid "Tables display options" +msgstr "" + +#: setup/lib/messages.inc.php:119 +msgid "Settings that didn't fit enywhere else" +msgstr "" + +#: setup/lib/messages.inc.php:120 +msgid "Other core settings" +msgstr "" + +#: setup/lib/messages.inc.php:121 +msgid "Customize query window options" +msgstr "" + +#: setup/lib/messages.inc.php:123 +msgid "" +"Please note that phpMyAdmin is just a user interface and its features do not " +"limit MySQL" +msgstr "" + +#: setup/lib/messages.inc.php:124 +msgid "Security" +msgstr "" + +#: setup/lib/messages.inc.php:125 +msgid "Basic settings" +msgstr "" + +#: setup/lib/messages.inc.php:126 +msgid "" +"Advanced server configuration, do not change these options unless you know " +"what they are for" +msgstr "" + +#: setup/lib/messages.inc.php:127 +msgid "Server configuration" +msgstr "" + +#: setup/lib/messages.inc.php:128 +msgid "Enter server connection parameters" +msgstr "" + +#: setup/lib/messages.inc.php:129 +msgid "Enter login options for signon authentication" +msgstr "" + +#: setup/lib/messages.inc.php:130 +msgid "Signon login options" +msgstr "" + +#: setup/lib/messages.inc.php:131 +msgid "" +"Configure phpMyAdmin database to gain access to additional features, see " +"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " +"documentation" +msgstr "" + +#: setup/lib/messages.inc.php:132 setup/lib/messages.inc.php:293 +msgid "PMA database" +msgstr "" + +#: setup/lib/messages.inc.php:133 +msgid "Tracking of changes made in database. Requires configured PMA database." +msgstr "" + +#: setup/lib/messages.inc.php:134 +msgid "Changes tracking" +msgstr "" + +#: setup/lib/messages.inc.php:135 +msgid "Customization" +msgstr "" + +#: setup/lib/messages.inc.php:136 +msgid "Customize export options" +msgstr "" + +#: setup/lib/messages.inc.php:138 +msgid "Customize import defaults" +msgstr "" + +#: setup/lib/messages.inc.php:139 +msgid "Customize navigation frame" +msgstr "" + +#: setup/lib/messages.inc.php:140 +msgid "Customize main frame" +msgstr "" + +#: setup/lib/messages.inc.php:141 +msgid "Customize links shown in SQL Query boxes" +msgstr "" + +#: setup/lib/messages.inc.php:142 +msgid "SQL Query box" +msgstr "" + +#: setup/lib/messages.inc.php:143 +msgid "" +"SQL queries settings, for SQL Query box options see [a@?page=form&" +"formset=main_frame#tab_Sql_box]Navigation frame[/a] settings" +msgstr "" + +#: setup/lib/messages.inc.php:144 +msgid "SQL queries" +msgstr "" + +#: setup/lib/messages.inc.php:145 +msgid "Customize startup page" +msgstr "" + +#: setup/lib/messages.inc.php:146 +msgid "Startup" +msgstr "" + +#: setup/lib/messages.inc.php:147 +msgid "Choose how you want tabs to work" +msgstr "" + +#: setup/lib/messages.inc.php:148 +msgid "Tabs" +msgstr "" + +#: setup/lib/messages.inc.php:149 +msgid "" +"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " +"and export operations" +msgstr "" + +#: setup/lib/messages.inc.php:150 +msgid "GZip" +msgstr "" + +#: setup/lib/messages.inc.php:151 +#, possible-php-format +msgid "" +"[a@?page=form&formset=features#tab_Import_export]GZip compression and " +"decompression[/a] requires functions (%s) which are unavailable on this " +"system." +msgstr "" + +#: setup/lib/messages.inc.php:153 +msgid "Extra parameters for iconv" +msgstr "" + +#: setup/lib/messages.inc.php:154 +msgid "Ignore errors" +msgstr "" + +#: setup/lib/messages.inc.php:155 +msgid "" +"If enabled, phpMyAdmin continues computing multiple-statement queries even " +"if one of the queries failed" +msgstr "" + +#: setup/lib/messages.inc.php:156 +msgid "Ignore multiple statement errors" +msgstr "" + +#: setup/lib/messages.inc.php:157 +msgid "" +"Allow interrupt of import in case script detects it is close to time limit. " +"This might be good way to import large files, however it can break " +"transactions." +msgstr "" + +#: setup/lib/messages.inc.php:158 +msgid "Partial import: allow interrupt" +msgstr "" + +#: setup/lib/messages.inc.php:159 +msgid "" +"Default format; be aware that this list depends on location (database, " +"table) and only SQL is always available" +msgstr "" + +#: setup/lib/messages.inc.php:162 +msgid "Partial import: skip queries" +msgstr "" + +#: setup/lib/messages.inc.php:163 +msgid "Insecure connection" +msgstr "" + +#: setup/lib/messages.inc.php:165 +#, possible-php-format +msgid "" +"If your server is also configured to accept HTTPS requests follow [a@%s]this " +"link[/a] to use a secure connection." +msgstr "" + +#: setup/lib/messages.inc.php:166 +msgid "How many rows can be inserted at one time" +msgstr "" + +#: setup/lib/messages.inc.php:167 +msgid "Number of inserted rows" +msgstr "" + +#: setup/lib/messages.inc.php:168 +msgid "Target for quick access icon" +msgstr "" + +#: setup/lib/messages.inc.php:169 +msgid "Show logo in left frame" +msgstr "" + +#: setup/lib/messages.inc.php:170 +msgid "Display logo" +msgstr "" + +#: setup/lib/messages.inc.php:171 +msgid "Display server choice at the top of the left frame" +msgstr "" + +#: setup/lib/messages.inc.php:172 +msgid "Display servers selection" +msgstr "" + +#: setup/lib/messages.inc.php:173 +msgid "String that separates databases into different tree levels" +msgstr "" + +#: setup/lib/messages.inc.php:174 +msgid "Database tree separator" +msgstr "" + +#: setup/lib/messages.inc.php:175 +msgid "" +"Only light version; display databases in a tree (determined by the separator " +"defined below)" +msgstr "" + +#: setup/lib/messages.inc.php:176 +msgid "Display databases in a tree" +msgstr "" + +#: setup/lib/messages.inc.php:177 +msgid "Disable this if you want to see all databases at once" +msgstr "" + +#: setup/lib/messages.inc.php:178 +msgid "Use light version" +msgstr "" + +#: setup/lib/messages.inc.php:179 +msgid "Maximum table tree depth" +msgstr "" + +#: setup/lib/messages.inc.php:180 +msgid "String that separates tables into different tree levels" +msgstr "" + +#: setup/lib/messages.inc.php:181 +msgid "Table tree separator" +msgstr "" + +#: setup/lib/messages.inc.php:182 +msgid "Logo link URL" +msgstr "" + +#: setup/lib/messages.inc.php:183 +msgid "" +"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " +"([kbd]new[/kbd])" +msgstr "" + +#: setup/lib/messages.inc.php:184 +msgid "Logo link target" +msgstr "" + +#: setup/lib/messages.inc.php:185 +msgid "Highlight server under the mouse cursor" +msgstr "" + +#: setup/lib/messages.inc.php:186 +msgid "Enable highlighting" +msgstr "" + +#: setup/lib/messages.inc.php:188 +msgid "Use less graphically intense tabs" +msgstr "" + +#: setup/lib/messages.inc.php:189 +msgid "Light tabs" +msgstr "" + +#: setup/lib/messages.inc.php:191 +msgid "" +"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " +"only occurs for the current server. Setting this to FALSE makes it easy to " +"forget to log out from other servers when connected to multiple servers." +msgstr "" + +#: setup/lib/messages.inc.php:192 +msgid "Delete all cookies on logout" +msgstr "" + +#: setup/lib/messages.inc.php:193 +msgid "" +"Define whether the previous login should be recalled or not in cookie " +"authentication mode" +msgstr "" + +#: setup/lib/messages.inc.php:194 +msgid "Recall user name" +msgstr "" + +#: setup/lib/messages.inc.php:195 +msgid "" +"Defines how long (in seconds) a login cookie should be stored in browser. " +"The default of 0 means that it will be kept for the existing session only, " +"and will be deleted as soon as you close the browser window. This is " +"recommended for non-trusted environments." +msgstr "" + +#: setup/lib/messages.inc.php:196 +msgid "Login cookie store" +msgstr "" + +#: setup/lib/messages.inc.php:197 +msgid "Define how long (in seconds) a login cookie is valid" +msgstr "" + +#: setup/lib/messages.inc.php:198 +msgid "" +"[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] should " +"be set to 1800 seconds (30 minutes) at most. Values larger than 1800 may " +"pose a security risk such as impersonation." +msgstr "" + +#: setup/lib/messages.inc.php:199 +msgid "Login cookie validity" +msgstr "" + +#: setup/lib/messages.inc.php:200 +msgid "Maximum number of characters used when a SQL query is displayed" +msgstr "" + +#: setup/lib/messages.inc.php:201 +msgid "Maximum displayed SQL length" +msgstr "" + +#: setup/lib/messages.inc.php:202 +msgid "Maximum number of databases displayed in left frame and database list" +msgstr "" + +#: setup/lib/messages.inc.php:203 +msgid "Maximum databases" +msgstr "" + +#: setup/lib/messages.inc.php:204 +msgid "" +"Number of rows displayed when browsing a result set. If the result set " +"contains more rows, "Previous" and "Next" links will be " +"shown." +msgstr "" + +#: setup/lib/messages.inc.php:205 +msgid "Maximum number of rows to display" +msgstr "" + +#: setup/lib/messages.inc.php:206 +msgid "Maximum number of tables displayed in table list" +msgstr "" + +#: setup/lib/messages.inc.php:207 +msgid "Maximum tables" +msgstr "" + +#: setup/lib/messages.inc.php:208 +msgid "" +"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " +"([kbd]0[/kbd] for no limit)" +msgstr "" + +#: setup/lib/messages.inc.php:209 +msgid "Memory limit" +msgstr "" + +#: setup/lib/messages.inc.php:210 setup/lib/messages.inc.php:222 +msgid "Use only icons, only text or both" +msgstr "" + +#: setup/lib/messages.inc.php:211 +msgid "Iconic navigation bar" +msgstr "" + +#: setup/lib/messages.inc.php:214 +msgid "use GZip output buffering for increased speed in HTTP transfers" +msgstr "" + +#: setup/lib/messages.inc.php:215 +msgid "GZip output buffering" +msgstr "" + +#: setup/lib/messages.inc.php:217 +msgid "" +"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " +"DATETIME and TIMESTAMP, ascending order otherwise" +msgstr "" + +#: setup/lib/messages.inc.php:218 +msgid "Default sorting order" +msgstr "" + +#: setup/lib/messages.inc.php:220 +msgid "Use persistent connections to MySQL databases" +msgstr "" + +#: setup/lib/messages.inc.php:221 +msgid "Persistent connections" +msgstr "" + +#: setup/lib/messages.inc.php:223 +msgid "Iconic table operations" +msgstr "" + +#: setup/lib/messages.inc.php:224 +msgid "Disallow BLOB and BINARY columns from editing" +msgstr "" + +#: setup/lib/messages.inc.php:225 +msgid "Protect binary columns" +msgstr "" + +#: setup/lib/messages.inc.php:226 +msgid "" +"Enable if you want DB-based query history (requires pmadb). If disabled, " +"this utilizes JS-routines to display query history (lost by window close)." +msgstr "" + +#: setup/lib/messages.inc.php:227 +msgid "Permanent query history" +msgstr "" + +#: setup/lib/messages.inc.php:228 +msgid "How many queries are kept in history" +msgstr "" + +#: setup/lib/messages.inc.php:229 +msgid "Query history length" +msgstr "" + +#: setup/lib/messages.inc.php:230 +msgid "Tab displayed when opening a new query window" +msgstr "" + +#: setup/lib/messages.inc.php:231 +msgid "Default query window tab" +msgstr "" + +#: setup/lib/messages.inc.php:232 +msgid "Select which functions will be used for character set conversion" +msgstr "" + +#: setup/lib/messages.inc.php:233 +msgid "Recoding engine" +msgstr "" + +#: setup/lib/messages.inc.php:235 +msgid "Try to revert erroneous fields to their default values" +msgstr "" + +#: setup/lib/messages.inc.php:236 +msgid "Directory where exports can be saved on server" +msgstr "" + +#: setup/lib/messages.inc.php:237 +msgid "Save directory" +msgstr "" + +#: setup/lib/messages.inc.php:238 +#, possible-php-format +msgid "" +"You set the [kbd]config[/kbd] authentication type and included username and " +"password for auto-login, which is not a desirable option for live hosts. " +"Anyone who knows or guesses your phpMyAdmin URL can directly access your " +"phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1$d#tab_Server]" +"authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/kbd]." +msgstr "" + +#: setup/lib/messages.inc.php:239 +msgid "You should use mysqli for performance reasons" +msgstr "" + +#: setup/lib/messages.inc.php:240 +msgid "You allow for connecting to the server without a password." +msgstr "" + +#: setup/lib/messages.inc.php:242 +msgid "Leave blank if not used" +msgstr "" + +#: setup/lib/messages.inc.php:243 +msgid "Host authentication order" +msgstr "" + +#: setup/lib/messages.inc.php:244 +msgid "Leave blank for defaults" +msgstr "" + +#: setup/lib/messages.inc.php:245 +msgid "Host authentication rules" +msgstr "" + +#: setup/lib/messages.inc.php:246 +msgid "Allow logins without a password" +msgstr "" + +#: setup/lib/messages.inc.php:247 +msgid "Allow root login" +msgstr "" + +#: setup/lib/messages.inc.php:248 +msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" +msgstr "" + +#: setup/lib/messages.inc.php:249 +msgid "HTTP Realm" +msgstr "" + +#: setup/lib/messages.inc.php:250 +msgid "" +"The path for the config file for [a@http://swekey.com]SweKey hardware " +"authentication[/a] (not located in your document root; suggested: /etc/" +"swekey.conf)" +msgstr "" + +#: setup/lib/messages.inc.php:251 +msgid "SweKey config file" +msgstr "" + +#: setup/lib/messages.inc.php:252 +msgid "Authentication method to use" +msgstr "" + +#: setup/lib/messages.inc.php:253 +msgid "Authentication type" +msgstr "" + +#: setup/lib/messages.inc.php:254 +msgid "" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " +"support, suggested: [kbd]pma_bookmark[/kbd]" +msgstr "" + +#: setup/lib/messages.inc.php:255 +msgid "Bookmark table" +msgstr "" + +#: setup/lib/messages.inc.php:256 +msgid "" +"Leave blank for no column comments/mime types, suggested: [kbd]" +"pma_column_info[/kbd]" +msgstr "" + +#: setup/lib/messages.inc.php:257 +msgid "Column information table" +msgstr "" + +#: setup/lib/messages.inc.php:258 +msgid "Compress connection to MySQL server" +msgstr "" + +#: setup/lib/messages.inc.php:259 +msgid "Compress connection" +msgstr "" + +#: setup/lib/messages.inc.php:260 +msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" +msgstr "" + +#: setup/lib/messages.inc.php:261 +msgid "Connection type" +msgstr "" + +#: setup/lib/messages.inc.php:262 +msgid "Control user password" +msgstr "" + +#: setup/lib/messages.inc.php:263 +msgid "" +"A special MySQL user configured with limited permissions, more information " +"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" +msgstr "" + +#: setup/lib/messages.inc.php:264 +msgid "Control user" +msgstr "" + +#: setup/lib/messages.inc.php:265 +msgid "Count tables when showing database list" +msgstr "" + +#: setup/lib/messages.inc.php:266 +msgid "Count tables" +msgstr "" + +#: setup/lib/messages.inc.php:267 +msgid "" +"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" +"kbd]" +msgstr "" + +#: setup/lib/messages.inc.php:268 +msgid "Designer table" +msgstr "" + +#: setup/lib/messages.inc.php:269 +msgid "" +"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " +"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" +msgstr "" + +#: setup/lib/messages.inc.php:270 +msgid "Disable use of INFORMATION_SCHEMA" +msgstr "" + +#: setup/lib/messages.inc.php:271 +#, possible-php-format +msgid "" +"If you feel this is necessary, use additional protection settings - [a@?" +"page=servers&mode=edit&id=%1$d#tab_Server_config]host authentication" +"[/a] settings and [a@?page=form&formset=features#tab_Security]trusted " +"proxies list[/a]. However, IP-based protection may not be reliable if your " +"IP belongs to an ISP where thousands of users, including you, are connected " +"to." +msgstr "" + +#: setup/lib/messages.inc.php:273 +msgid "What PHP extension to use; you should use mysqli if supported" +msgstr "" + +#: setup/lib/messages.inc.php:274 +msgid "PHP extension to use" +msgstr "" + +#: setup/lib/messages.inc.php:275 +msgid "Hide databases matching regular expression (PCRE)" +msgstr "" + +#: setup/lib/messages.inc.php:276 +msgid "Hide databases" +msgstr "" + +#: setup/lib/messages.inc.php:277 +msgid "" +"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" +"kbd]" +msgstr "" + +#: setup/lib/messages.inc.php:278 +msgid "SQL query history table" +msgstr "" + +#: setup/lib/messages.inc.php:279 +msgid "" +"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" +"kbd]" +msgstr "" + +#: setup/lib/messages.inc.php:280 +msgid "SQL query tracking table" +msgstr "" + +#: setup/lib/messages.inc.php:281 +msgid "Hostname where MySQL server is running" +msgstr "" + +#: setup/lib/messages.inc.php:282 +msgid "Server hostname" +msgstr "" + +#: setup/lib/messages.inc.php:283 +msgid "Logout URL" +msgstr "" + +#: setup/lib/messages.inc.php:284 +msgid "Try to connect without password" +msgstr "" + +#: setup/lib/messages.inc.php:285 +msgid "Connect without password" +msgstr "" + +#: setup/lib/messages.inc.php:286 +msgid "" +"You can use MySQL wildcard characters (% and _), escape them if you want to " +"use their literal instances, i.e. use 'my\\_db' and not 'my_db'" +msgstr "" + +#: setup/lib/messages.inc.php:287 +msgid "Show only listed databases" +msgstr "" + +#: setup/lib/messages.inc.php:288 setup/lib/messages.inc.php:322 +msgid "Leave empty if not using config auth" +msgstr "" + +#: setup/lib/messages.inc.php:289 +msgid "Password for config auth" +msgstr "" + +#: setup/lib/messages.inc.php:290 +msgid "" +"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" +msgstr "" + +#: setup/lib/messages.inc.php:291 +msgid "PDF schema: pages table" +msgstr "" + +#: setup/lib/messages.inc.php:292 +msgid "" +"Database used for relations, bookmarks, and PDF features. See [a@http://wiki." +"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " +"no support. Suggested: [kbd]phpmyadmin[/kbd]" +msgstr "" + +#: setup/lib/messages.inc.php:294 +msgid "Port on which MySQL server is listening, leave empty for default" +msgstr "" + +#: setup/lib/messages.inc.php:295 +msgid "Server port" +msgstr "" + +#: setup/lib/messages.inc.php:296 +msgid "" +"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" +"[/a] support, suggested: [kbd]pma_relation[/kbd]" +msgstr "" + +#: setup/lib/messages.inc.php:297 +msgid "Relation table" +msgstr "" + +#: setup/lib/messages.inc.php:298 +msgid "SQL command to fetch available databases" +msgstr "" + +#: setup/lib/messages.inc.php:299 +msgid "SHOW DATABASES command" +msgstr "" + +#: setup/lib/messages.inc.php:300 +msgid "" +"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" +"[/a] for an example" +msgstr "" + +#: setup/lib/messages.inc.php:301 +msgid "Signon session name" +msgstr "" + +#: setup/lib/messages.inc.php:302 +msgid "Signon URL" +msgstr "" + +#: setup/lib/messages.inc.php:303 +msgid "" +"Whether the tracking mechanism creates versions for tables and views " +"automatically." +msgstr "" + +#: setup/lib/messages.inc.php:304 +msgid "Automatically create versions" +msgstr "" + +#: setup/lib/messages.inc.php:305 +msgid "Defines the list of statements the auto-creation uses for new versions." +msgstr "" + +#: setup/lib/messages.inc.php:306 +msgid "Statements to track" +msgstr "" + +#: setup/lib/messages.inc.php:307 +msgid "" +"Whether a DROP VIEW IF EXISTS statement will be added as first line to the " +"log when creating a view." +msgstr "" + +#: setup/lib/messages.inc.php:308 +msgid "Add DROP VIEW" +msgstr "" + +#: setup/lib/messages.inc.php:309 +msgid "" +"Whether a DROP TABLE IF EXISTS statement will be added as first line to the " +"log when creating a table." +msgstr "" + +#: setup/lib/messages.inc.php:310 +msgid "Add DROP TABLE" +msgstr "" + +#: setup/lib/messages.inc.php:311 +msgid "" +"Whether a DROP DATABASE IF EXISTS statement will be added as first line to " +"the log when creating a database." +msgstr "" + +#: setup/lib/messages.inc.php:312 +msgid "Add DROP DATABASE" +msgstr "" + +#: setup/lib/messages.inc.php:313 +msgid "You should use SSL connections if your web server supports it" +msgstr "" + +#: setup/lib/messages.inc.php:314 +msgid "Socket on which MySQL server is listening, leave empty for default" +msgstr "" + +#: setup/lib/messages.inc.php:315 +msgid "Server socket" +msgstr "" + +#: setup/lib/messages.inc.php:316 +msgid "Enable SSL for connection to MySQL server" +msgstr "" + +#: setup/lib/messages.inc.php:317 +msgid "Use SSL" +msgstr "" + +#: setup/lib/messages.inc.php:318 +msgid "" +"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" +msgstr "" + +#: setup/lib/messages.inc.php:319 +msgid "PDF schema: table coordinates" +msgstr "" + +#: setup/lib/messages.inc.php:320 +msgid "" +"Table to describe the display columns, leave blank for no support; " +"suggested: [kbd]pma_table_info[/kbd]" +msgstr "" + +#: setup/lib/messages.inc.php:321 +msgid "Display columns table" +msgstr "" + +#: setup/lib/messages.inc.php:323 +msgid "User for config auth" +msgstr "" + +#: setup/lib/messages.inc.php:324 +msgid "" +"Disable if you know that your pma_* tables are up to date. This prevents " +"compatibility checks and thereby increases performance" +msgstr "" + +#: setup/lib/messages.inc.php:325 +msgid "Verbose check" +msgstr "" + +#: setup/lib/messages.inc.php:326 +msgid "" +"A user-friendly description of this server. Leave blank to display the " +"hostname instead." +msgstr "" + +#: setup/lib/messages.inc.php:327 +msgid "Verbose name of this server" +msgstr "" + +#: setup/lib/messages.inc.php:329 +msgid "Whether a user should be displayed a "show all (rows)" button" +msgstr "" + +#: setup/lib/messages.inc.php:330 +msgid "Allow to display all the rows" +msgstr "" + +#: setup/lib/messages.inc.php:331 +msgid "" +"Please note that enabling this has no effect with [kbd]config[/kbd] " +"authentication mode because the password is hard coded in the configuration " +"file; this does not limit the ability to execute the same command directly" +msgstr "" + +#: setup/lib/messages.inc.php:332 +msgid "Show password change form" +msgstr "" + +#: setup/lib/messages.inc.php:333 +msgid "Show create database form" +msgstr "" + +#: setup/lib/messages.inc.php:334 +msgid "Show form" +msgstr "" + +#: setup/lib/messages.inc.php:335 +msgid "Display the function fields in edit/insert mode" +msgstr "" + +#: setup/lib/messages.inc.php:336 +msgid "Show function fields" +msgstr "" + +#: setup/lib/messages.inc.php:338 +msgid "" +"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " +"output" +msgstr "" + +#: setup/lib/messages.inc.php:339 +msgid "Show phpinfo() link" +msgstr "" + +#: setup/lib/messages.inc.php:340 +msgid "Show detailed MySQL server information" +msgstr "" + +#: setup/lib/messages.inc.php:341 +msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" +msgstr "" + +#: setup/lib/messages.inc.php:342 +msgid "Show SQL queries" +msgstr "" + +#: setup/lib/messages.inc.php:343 +msgid "Allow to display database and table statistics (eg. space usage)" +msgstr "" + +#: setup/lib/messages.inc.php:344 +msgid "Show statistics" +msgstr "" + +#: setup/lib/messages.inc.php:345 +msgid "" +"If tooltips are enabled and a database comment is set, this will flip the " +"comment and the real name" +msgstr "" + +#: setup/lib/messages.inc.php:346 +msgid "Display database comment instead of its name" +msgstr "" + +#: setup/lib/messages.inc.php:347 +msgid "" +"When setting this to [kbd]nested[/kbd], the alias of the table name is only " +"used to split/nest the tables according to the $cfg" +"['LeftFrameTableSeparator'] directive, so only the folder is called like the " +"alias, the table name itself stays unchanged" +msgstr "" + +#: setup/lib/messages.inc.php:348 +msgid "Display table comment instead of its name" +msgstr "" + +#: setup/lib/messages.inc.php:349 +msgid "Display table comments in tooltips" +msgstr "" + +#: setup/lib/messages.inc.php:350 +msgid "" +"Mark used tables and make it possible to show databases with locked tables" +msgstr "" + +#: setup/lib/messages.inc.php:351 +msgid "Skip locked tables" +msgstr "" + +#: setup/lib/messages.inc.php:357 +msgid "" +"Suggest a database name on the "Create Database" form (if " +"possible) or keep the text field empty" +msgstr "" + +#: setup/lib/messages.inc.php:358 +msgid "Suggest new database name" +msgstr "" + +#: setup/lib/messages.inc.php:359 +msgid "yes" +msgstr "" + +#: setup/lib/messages.inc.php:360 +msgid "" +"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " +"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" +"For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: " +"HTTP_X_FORWARDED_FOR[/kbd]" +msgstr "" + +#: setup/lib/messages.inc.php:361 +msgid "List of trusted proxies for IP allow/deny" +msgstr "" + +#: setup/lib/messages.inc.php:362 +msgid "Directory on server where you can upload files for import" +msgstr "" + +#: setup/lib/messages.inc.php:363 +msgid "Upload directory" +msgstr "" + +#: setup/lib/messages.inc.php:364 +msgid "Allow for searching inside the entire database" +msgstr "" + +#: setup/lib/messages.inc.php:365 +msgid "Use database search" +msgstr "" + +#: setup/lib/messages.inc.php:366 +msgid "" +"Show affected rows of each statement on multiple-statement queries. See " +"libraries/import.lib.php for defaults on how many queries a statement may " +"contain." +msgstr "" + +#: setup/lib/messages.inc.php:367 +msgid "Verbose multiple statements" +msgstr "" + +#: setup/lib/messages.inc.php:368 +msgid "" +"Reading of version failed. Maybe you're offline or the upgrade server does " +"not respond." +msgstr "" + +#: setup/lib/messages.inc.php:369 +msgid "Got invalid version string from server" +msgstr "" + +#: setup/lib/messages.inc.php:371 +#, possible-php-format +msgid "" +"A newer version of phpMyAdmin is available and you should consider " +"upgrading. The newest version is %s, released on %s." +msgstr "" + +#: setup/lib/messages.inc.php:372 +#, possible-php-format +msgid "" +"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " +"version is %s, released on %s." +msgstr "" + +#: setup/lib/messages.inc.php:373 +msgid "No newer stable version is available" +msgstr "" + +#: setup/lib/messages.inc.php:374 +msgid "Unparsable version string" +msgstr "" + +#: setup/lib/messages.inc.php:375 +msgid "Version check" +msgstr "" + +#: setup/lib/messages.inc.php:376 +msgid "" +"Neither URL wrapper nor CURL is available. Version check is not possible." +msgstr "" + +#: setup/lib/messages.inc.php:378 +msgid "" +"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " +"for import and export operations" +msgstr "" + +#: setup/lib/messages.inc.php:379 +#, possible-php-format +msgid "" +"[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] " +"requires functions (%s) which are unavailable on this system." +msgstr "" + +#: setup/lib/messages.inc.php:380 +#, possible-php-format +msgid "" +"[a@?page=form&formset=features#tab_Import_export]Zip decompression[/a] " +"requires functions (%s) which are unavailable on this system." +msgstr "" + +#: setup/lib/messages.inc.php:381 +msgid "ZIP" +msgstr "" + +#: sql.php:496 tbl_replace.php:386 +#, possible-php-format +msgid "Inserted row id: %1$d" +msgstr "" + +#: sql.php:513 +msgid "Showing as PHP code" +msgstr "" + +#: sql.php:516 tbl_replace.php:360 +msgid "Showing SQL query" +msgstr "" + +#: sql.php:639 +#, possible-php-format +msgid "Problems with indexes of table `%s`" +msgstr "" + +#: sql.php:671 +msgid "Label" +msgstr "" + +#: tbl_addfield.php:189 tbl_alter.php:103 tbl_indexes.php:98 +#, possible-php-format +msgid "Table %1$s has been altered successfully" +msgstr "" + +#: tbl_change.php:252 tbl_select.php:27 tbl_select.php:28 tbl_select.php:31 +#: tbl_select.php:34 +msgid "Browse foreign values" +msgstr "" + +#: tbl_change.php:282 tbl_change.php:320 +msgid "Function" +msgstr "" + +#: tbl_change.php:302 tbl_indexes.php:200 tbl_indexes.php:225 +msgid "Ignore" +msgstr "" + +#: tbl_change.php:728 +msgid " Because of its length,
this column might not be editable " +msgstr "" + +#: tbl_change.php:888 +msgid "Remove BLOB Repository Reference" +msgstr "" + +#: tbl_change.php:894 +msgid "Binary - do not edit" +msgstr "" + +#: tbl_change.php:987 +msgid "Upload to BLOB repository" +msgstr "" + +#: tbl_change.php:1130 +msgid "Insert as new row" +msgstr "" + +#: tbl_change.php:1131 +msgid "Insert as new row and ignore errors" +msgstr "" + +#: tbl_change.php:1132 +msgid "Show insert query" +msgstr "" + +#: tbl_change.php:1147 +msgid "Go back to previous page" +msgstr "" + +#: tbl_change.php:1148 +msgid "Insert another new row" +msgstr "" + +#: tbl_change.php:1152 +msgid "Go back to this page" +msgstr "" + +#: tbl_change.php:1160 +msgid "Edit next row" +msgstr "" + +#: tbl_change.php:1171 +msgid "" +"Use TAB key to move from value to value, or CTRL+arrows to move anywhere" +msgstr "" + +#: tbl_change.php:1209 +#, possible-php-format +msgid "Restart insertion with %s rows" +msgstr "" + +#: tbl_create.php:62 +#, possible-php-format +msgid "Table %s already exists!" +msgstr "" + +#: tbl_create.php:249 +#, possible-php-format +msgid "Table %1$s has been created." +msgstr "" + +#: tbl_export.php:23 +msgid "View dump (schema) of table" +msgstr "" + +#: tbl_indexes.php:67 +msgid "The name of the primary key must be \"PRIMARY\"!" +msgstr "" + +#: tbl_indexes.php:75 +msgid "Can't rename index to PRIMARY!" +msgstr "" + +#: tbl_indexes.php:91 +msgid "No index parts defined!" +msgstr "" + +#: tbl_indexes.php:160 +msgid "Create a new index" +msgstr "" + +#: tbl_indexes.php:162 +msgid "Modify an index" +msgstr "" + +#: tbl_indexes.php:168 +msgid "Index name:" +msgstr "" + +#: tbl_indexes.php:174 +msgid "Index type:" +msgstr "" + +#: tbl_indexes.php:184 +msgid "" +"(\"PRIMARY\" must be the name of and only of a primary key!)" +msgstr "" + +#: tbl_indexes.php:251 +#, possible-php-format +msgid "Add to index  %s column(s)" +msgstr "" + +#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600 +msgid "Column count has to be larger than zero." +msgstr "" + +#: tbl_move_copy.php:46 +msgid "Can't move table to same one!" +msgstr "" + +#: tbl_move_copy.php:48 +msgid "Can't copy table to same one!" +msgstr "" + +#: tbl_move_copy.php:56 +#, possible-php-format +msgid "Table %s has been moved to %s." +msgstr "" + +#: tbl_move_copy.php:58 +#, possible-php-format +msgid "Table %s has been copied to %s." +msgstr "" + +#: tbl_move_copy.php:82 +msgid "The table name is empty!" +msgstr "" + +#: tbl_operations.php:249 +msgid "Alter table order by" +msgstr "" + +#: tbl_operations.php:258 +msgid "(singly)" +msgstr "" + +#: tbl_operations.php:278 +msgid "Move table to (database.table):" +msgstr "" + +#: tbl_operations.php:336 +msgid "Table options" +msgstr "" + +#: tbl_operations.php:340 +msgid "Rename table to" +msgstr "" + +#: tbl_operations.php:511 +msgid "Copy table to (database.table):" +msgstr "" + +#: tbl_operations.php:558 +msgid "Switch to copied table" +msgstr "" + +#: tbl_operations.php:570 +msgid "Table maintenance" +msgstr "" + +#: tbl_operations.php:591 +msgid "Defragment table" +msgstr "" + +#: tbl_operations.php:630 +#, possible-php-format +msgid "Table %s has been flushed" +msgstr "" + +#: tbl_operations.php:636 +msgid "Flush the table (FLUSH)" +msgstr "" + +#: tbl_operations.php:651 +msgid "Partition maintenance" +msgstr "" + +#: tbl_operations.php:659 +#, possible-php-format +msgid "Partition %s" +msgstr "" + +#: tbl_operations.php:662 +msgid "Analyze" +msgstr "" + +#: tbl_operations.php:663 +msgid "Check" +msgstr "" + +#: tbl_operations.php:664 +msgid "Optimize" +msgstr "" + +#: tbl_operations.php:665 +msgid "Rebuild" +msgstr "" + +#: tbl_operations.php:666 +msgid "Repair" +msgstr "" + +#: tbl_operations.php:678 +msgid "Remove partitioning" +msgstr "" + +#: tbl_operations.php:704 +msgid "Check referential integrity:" +msgstr "" + +#: tbl_printview.php:75 +msgid "Show tables" +msgstr "" + +#: tbl_printview.php:310 tbl_structure.php:656 +msgid "Space usage" +msgstr "" + +#: tbl_printview.php:314 tbl_structure.php:660 +msgid "Usage" +msgstr "" + +#: tbl_printview.php:341 tbl_structure.php:687 +msgid "Effective" +msgstr "" + +#: tbl_printview.php:366 tbl_structure.php:725 +msgid "Row Statistics" +msgstr "" + +#: tbl_printview.php:369 tbl_structure.php:728 +msgid "Statements" +msgstr "" + +#: tbl_printview.php:380 tbl_structure.php:740 +msgid "static" +msgstr "" + +#: tbl_printview.php:382 tbl_structure.php:742 +msgid "dynamic" +msgstr "" + +#: tbl_printview.php:404 tbl_structure.php:785 +msgid "Row length" +msgstr "" + +#: tbl_printview.php:414 tbl_structure.php:793 +msgid " Row size " +msgstr "" + +#: tbl_relation.php:279 +#, possible-php-format +msgid "Error creating foreign key on %1$s (check data types)" +msgstr "" + +#: tbl_relation.php:405 +msgid "Internal relation" +msgstr "" + +#: tbl_relation.php:407 +msgid "" +"An internal relation is not necessary when a corresponding FOREIGN KEY " +"relation exists." +msgstr "" + +#: tbl_relation.php:413 +msgid "Foreign key constraint" +msgstr "" + +#: tbl_row_action.php:29 +msgid "No rows selected" +msgstr "" + +#: tbl_select.php:132 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: tbl_select.php:138 +msgid "Operator" +msgstr "" + +#: tbl_select.php:270 +msgid "Select columns (at least one):" +msgstr "" + +#: tbl_select.php:288 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: tbl_select.php:295 +msgid "Number of rows per page" +msgstr "" + +#: tbl_select.php:301 +msgid "Display order:" +msgstr "" + +#: tbl_structure.php:161 +msgid "Browse distinct values" +msgstr "" + +#: tbl_structure.php:361 +msgctxt "None for default" +msgid "None" +msgstr "" + +#: tbl_structure.php:374 +#, possible-php-format +msgid "Column %s has been dropped" +msgstr "" + +#: tbl_structure.php:385 +#, possible-php-format +msgid "A primary key has been added on %s" +msgstr "" + +#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 +#, possible-php-format +msgid "An index has been added on %s" +msgstr "" + +#: tbl_structure.php:506 tbl_structure.php:508 +msgid "Relation view" +msgstr "" + +#: tbl_structure.php:515 tbl_structure.php:517 +msgid "Propose table structure" +msgstr "" + +#: tbl_structure.php:540 +msgid "Add column" +msgstr "" + +#: tbl_structure.php:554 +msgid "At End of Table" +msgstr "" + +#: tbl_structure.php:555 +msgid "At Beginning of Table" +msgstr "" + +#: tbl_structure.php:556 +#, possible-php-format +msgid "After %s" +msgstr "" + +#: tbl_structure.php:594 +#, possible-php-format +msgid "Create an index on  %s columns" +msgstr "" + +#: tbl_structure.php:756 +msgid "partitioned" +msgstr "" + +#: tbl_tracking.php:114 +#, possible-php-format +msgid "Tracking report for table `%s`" +msgstr "" + +#: tbl_tracking.php:187 +#, possible-php-format +msgid "Version %s is created, tracking for %s.%s is activated." +msgstr "" + +#: tbl_tracking.php:195 +#, possible-php-format +msgid "Tracking for %s.%s , version %s is deactivated." +msgstr "" + +#: tbl_tracking.php:203 +#, possible-php-format +msgid "Tracking for %s.%s , version %s is activated." +msgstr "" + +#: tbl_tracking.php:213 +msgid "SQL statements executed." +msgstr "" + +#: tbl_tracking.php:220 +msgid "" +"You can execute the dump by creating and using a temporary database. Please " +"ensure that you have the privileges to do so." +msgstr "" + +#: tbl_tracking.php:221 +msgid "Comment out these two lines if you do not need them." +msgstr "" + +#: tbl_tracking.php:230 +msgid "SQL statements exported. Please copy the dump or execute it." +msgstr "" + +#: tbl_tracking.php:251 tbl_tracking.php:379 +msgid "Close" +msgstr "" + +#: tbl_tracking.php:262 +#, possible-php-format +msgid "Version %s snapshot (SQL code)" +msgstr "" + +#: tbl_tracking.php:381 +msgid "Tracking statements" +msgstr "" + +#: tbl_tracking.php:397 tbl_tracking.php:504 +#, possible-php-format +msgid "Show %s with dates from %s to %s by user %s %s" +msgstr "" + +#: tbl_tracking.php:410 tbl_tracking.php:461 +msgid "Date" +msgstr "" + +#: tbl_tracking.php:411 tbl_tracking.php:462 +msgid "Username" +msgstr "" + +#: tbl_tracking.php:412 +msgid "Data definition statement" +msgstr "" + +#: tbl_tracking.php:463 +msgid "Data manipulation statement" +msgstr "" + +#: tbl_tracking.php:507 +msgid "SQL dump (file download)" +msgstr "" + +#: tbl_tracking.php:508 +msgid "SQL dump" +msgstr "" + +#: tbl_tracking.php:509 +msgid "This option will replace your table and contained data." +msgstr "" + +#: tbl_tracking.php:509 +msgid "SQL execution" +msgstr "" + +#: tbl_tracking.php:521 +#, possible-php-format +msgid "Export as %s" +msgstr "" + +#: tbl_tracking.php:561 +msgid "Show versions" +msgstr "" + +#: tbl_tracking.php:593 +msgid "Version" +msgstr "" + +#: tbl_tracking.php:640 +#, possible-php-format +msgid "Deactivate tracking for %s.%s" +msgstr "" + +#: tbl_tracking.php:642 +msgid "Deactivate now" +msgstr "" + +#: tbl_tracking.php:653 +#, possible-php-format +msgid "Activate tracking for %s.%s" +msgstr "" + +#: tbl_tracking.php:655 +msgid "Activate now" +msgstr "" + +#: tbl_tracking.php:668 +#, possible-php-format +msgid "Create version %s of %s.%s" +msgstr "" + +#: tbl_tracking.php:672 +msgid "Track these data definition statements:" +msgstr "" + +#: tbl_tracking.php:680 +msgid "Track these data manipulation statements:" +msgstr "" + +#: tbl_tracking.php:688 +msgid "Create version" +msgstr "" + +#: themes.php:32 +#, possible-php-format +msgid "" +"No themes support; please check your configuration and/or your themes in " +"directory %s." +msgstr "" + +#: themes.php:42 +msgid "Get more themes!" +msgstr "" + +#: transformation_overview.php:25 +msgid "Available MIME types" +msgstr "" + +#: transformation_overview.php:38 +msgid "" +"MIME types printed in italics do not have a separate transformation function" +msgstr "" + +#: transformation_overview.php:43 +msgid "Available transformations" +msgstr "" + +#: transformation_overview.php:48 +msgctxt "for MIME transformation" +msgid "Description" +msgstr "" + +#: user_password.php:54 +msgid "You don't have sufficient privileges to be here right now!" +msgstr "" + +#: user_password.php:112 +msgid "The profile has been updated." +msgstr "" + +#: view_create.php:142 +msgid "VIEW name" +msgstr "" + +#: view_operations.php:93 +msgid "Rename view to" +msgstr "" From 1649a0a1c4e5d049e7b2e064d660439286fe0894 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 7 Jun 2010 20:20:47 +0200 Subject: [PATCH 64/75] Add description for Welsh. --- libraries/select_lang.lib.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php index 7a8927d7f..a6c93bb90 100644 --- a/libraries/select_lang.lib.php +++ b/libraries/select_lang.lib.php @@ -220,6 +220,8 @@ function PMA_langDetails($lang) { return array('ca|catalan', 'ca', 'Català'); case 'cs': return array('cs|czech', 'cs', 'Česky'); + case 'cy': + return array('cy|welsh', 'cy', 'Cymraeg'); case 'da': return array('da|danish', 'da', 'Dansk'); case 'de': From 5d454e2c4d80116eaea0964aa4562a144dab12d1 Mon Sep 17 00:00:00 2001 From: ardavies Date: Mon, 7 Jun 2010 20:23:04 +0200 Subject: [PATCH 65/75] Translation update done using Pootle. --- po/cy.po | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/po/cy.po b/po/cy.po index abd878113..3bdd5ea09 100644 --- a/po/cy.po +++ b/po/cy.po @@ -2,24 +2,25 @@ # Copyright (C) 2003 - 2010 phpMyAdmin devel team # This file is distributed under the same license as the phpMyAdmin package. # FIRST AUTHOR , YEAR. -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-06-04 16:07-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2010-06-07 20:23+0200\n" +"Last-Translator: \n" "Language-Team: LANGUAGE \n" +"Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.5.3\n" +"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" +"X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 #: libraries/display_tbl.lib.php:417 server_privileges.php:1475 msgid "Show all" -msgstr "" +msgstr "Dangos pob" #: browse_foreigners.php:82 libraries/common.lib.php:2304 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 From 0fa21b5527b9b47f4575ac8a0491a1356a1d5ab9 Mon Sep 17 00:00:00 2001 From: ardavies Date: Mon, 7 Jun 2010 20:23:25 +0200 Subject: [PATCH 66/75] Translation update done using Pootle. --- po/cy.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/cy.po b/po/cy.po index 3bdd5ea09..329689502 100644 --- a/po/cy.po +++ b/po/cy.po @@ -27,7 +27,7 @@ msgstr "Dangos pob" #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 msgid "Page number:" -msgstr "" +msgstr "Rhif tudalen:" #: browse_foreigners.php:132 msgid "" From 5f2081549ab89ac9162e2754b2b21bea6237b383 Mon Sep 17 00:00:00 2001 From: ardavies Date: Mon, 7 Jun 2010 20:58:35 +0200 Subject: [PATCH 67/75] Translation update done using Pootle. --- po/cy.po | 131 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 68 insertions(+), 63 deletions(-) diff --git a/po/cy.po b/po/cy.po index 329689502..aeb889cb6 100644 --- a/po/cy.po +++ b/po/cy.po @@ -35,6 +35,9 @@ msgid "" "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" +"Nid oedd modd diweddaru ffenest y targed. Efallai eich bod chi wedi cau " +"ffenest y rhiant, neu bod gosodiadau diogelwch eich porwr yn gwrthod " +"caniatáu diweddariadau traws-ffenest." #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 @@ -42,7 +45,7 @@ msgstr "" #: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" -msgstr "" +msgstr "Chwilio" #: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429 #: db_operations.php:499 db_operations.php:609 db_search.php:362 @@ -71,37 +74,37 @@ msgstr "" #: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512 #: view_create.php:182 view_operations.php:101 msgid "Go" -msgstr "" +msgstr "Ewch" #: browse_foreigners.php:168 browse_foreigners.php:172 #: libraries/Index.class.php:442 tbl_tracking.php:320 msgid "Keyname" -msgstr "" +msgstr "Enw allweddol" #: browse_foreigners.php:169 browse_foreigners.php:171 #: server_collations.php:55 server_collations.php:67 server_engines.php:59 #: server_status.php:628 msgid "Description" -msgstr "" +msgstr "Disgrifiad" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 msgid "Use this value" -msgstr "" +msgstr "Defnyddiwch y gwerth hwn" #: db_create.php:46 #, possible-php-format msgid "Database %1$s has been created." -msgstr "" +msgstr "Cafodd y gronfa ddata %1$s ei chreu." #: db_datadict.php:49 db_operations.php:378 msgid "Database comment: " -msgstr "" +msgstr "Sylw cronfa ddata:" #: db_datadict.php:165 libraries/tbl_properties.inc.php:724 #: pdf_schema.php:1236 tbl_operations.php:347 tbl_printview.php:130 msgid "Table comments" -msgstr "" +msgstr "Sylwadau tabl" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 @@ -112,7 +115,7 @@ msgstr "" #: tbl_select.php:135 tbl_structure.php:177 tbl_tracking.php:273 #: tbl_tracking.php:324 msgid "Column" -msgstr "" +msgstr "Colofn" #: db_datadict.php:175 db_printview.php:106 libraries/Index.class.php:443 #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 @@ -124,7 +127,7 @@ msgstr "" #: tbl_printview.php:313 tbl_select.php:136 tbl_structure.php:178 #: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321 msgid "Type" -msgstr "" +msgstr "Math" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 @@ -133,7 +136,7 @@ msgstr "" #: pdf_schema.php:1286 tbl_change.php:323 tbl_printview.php:145 #: tbl_structure.php:181 tbl_tracking.php:276 tbl_tracking.php:327 msgid "Null" -msgstr "" +msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 @@ -141,14 +144,14 @@ msgstr "" #: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:146 #: tbl_structure.php:182 tbl_tracking.php:277 msgid "Default" -msgstr "" +msgstr "Diofyn" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 #: libraries/export/texytext.php:238 pdf_schema.php:1268 pdf_schema.php:1289 #: tbl_printview.php:150 msgid "Links to" -msgstr "" +msgstr "Cysylltu i" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:45 libraries/export/latex.php:365 @@ -157,7 +160,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" -msgstr "" +msgstr "Sylwadau" #: db_datadict.php:267 libraries/Index.class.php:359 #: libraries/Index.class.php:386 libraries/export/htmlword.php:322 @@ -168,7 +171,7 @@ msgstr "" #: server_privileges.php:2148 sql.php:132 sql.php:194 tbl_printview.php:229 #: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342 msgid "No" -msgstr "" +msgstr "Na" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 @@ -185,131 +188,131 @@ msgstr "" #: tbl_printview.php:229 tbl_structure.php:40 tbl_structure.php:350 #: tbl_tracking.php:335 tbl_tracking.php:340 msgid "Yes" -msgstr "" +msgstr "Ie" #: db_datadict.php:322 db_printview.php:266 tbl_printview.php:498 msgid "Print" -msgstr "" +msgstr "Argraffu" #: db_export.php:29 msgid "View dump (schema) of database" -msgstr "" +msgstr "Dangos dadlwythiad (sgema) y gronfa ddata" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 #: db_tracking.php:35 export.php:359 navigation.php:332 msgid "No tables found in database." -msgstr "" +msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." #: db_export.php:43 db_search.php:344 server_export.php:27 msgid "Select All" -msgstr "" +msgstr "Dewis Pob" #: db_export.php:45 db_search.php:347 server_export.php:29 msgid "Unselect All" -msgstr "" +msgstr "Dad-ddewis Pob" #: db_operations.php:38 tbl_create.php:54 msgid "The database name is empty!" -msgstr "" +msgstr "Mae enw'r gronfa ddata'n wag!" #: db_operations.php:236 #, possible-php-format msgid "Database %s has been renamed to %s" -msgstr "" +msgstr "Cafodd cronfa ddata %s ei hailenwi i %s" #: db_operations.php:240 #, possible-php-format msgid "Database %s has been copied to %s" -msgstr "" +msgstr "Cafodd y gronfa ddata %s ei chopïo i %s" #: db_operations.php:412 msgid "Rename database to" -msgstr "" +msgstr "Ailenwch y gronfa ddata i" #: db_operations.php:417 server_processlist.php:57 msgid "Command" -msgstr "" +msgstr "Gorchymyn" #: db_operations.php:429 tbl_change.php:1143 msgid "and then" -msgstr "" +msgstr "ac yna" #: db_operations.php:455 msgid "Copy database to" -msgstr "" +msgstr "Copïwch y gronfa ddata i" #: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388 msgid "Structure only" -msgstr "" +msgstr "Strwythur yn unig" #: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390 msgid "Structure and data" -msgstr "" +msgstr "Strwythur a data" #: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389 msgid "Data only" -msgstr "" +msgstr "Data yn unig" #: db_operations.php:472 msgid "CREATE DATABASE before copying" -msgstr "" +msgstr "Defnyddiwch CREATE DATABASE cyn copïo" #: db_operations.php:475 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 #, possible-php-format msgid "Add %s" -msgstr "" +msgstr "Ychwanegwch %s" #: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299 #: tbl_operations.php:538 msgid "Add AUTO_INCREMENT value" -msgstr "" +msgstr "Ychwanegwch werth AUTO_INCREMENT" #: db_operations.php:483 tbl_operations.php:545 msgid "Add constraints" -msgstr "" +msgstr "Ychwanegwch cyfyngiadau" #: db_operations.php:496 msgid "Switch to copied database" -msgstr "" +msgstr "Newidiwch i'r gronfa ddata a gopïwyd" #: db_operations.php:537 msgid "BLOB Repository" -msgstr "" +msgstr "Ystorfa BLOB" #: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" -msgstr "" +msgstr "Statws" #: db_operations.php:548 msgctxt "BLOB repository" msgid "Enabled" -msgstr "" +msgstr "Galluogwyd" #: db_operations.php:552 msgid "Disable" -msgstr "" +msgstr "Analluogwch" #: db_operations.php:562 msgid "Damaged" -msgstr "" +msgstr "Wedi difrodi" #: db_operations.php:566 msgctxt "BLOB repository" msgid "Repair" -msgstr "" +msgstr "Trwsiwch" #: db_operations.php:574 msgctxt "BLOB repository" msgid "Disabled" -msgstr "" +msgstr "Analluogwyd" #: db_operations.php:578 msgid "Enable" -msgstr "" +msgstr "Galluogwch" #: db_operations.php:602 libraries/Index.class.php:448 #: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107 @@ -318,7 +321,7 @@ msgstr "" #: tbl_operations.php:363 tbl_select.php:137 tbl_structure.php:179 #: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326 msgid "Collation" -msgstr "" +msgstr "Coladiad" #: db_operations.php:615 main.php:316 pdf_schema.php:34 #, possible-php-format @@ -326,10 +329,12 @@ msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "" +"Mae'r nodweddion ar gyfer gweithio gyda thablau sydd wedi cysylltu wedi'u " +"hanalluogi. Pwyswch %syma%s i ddarganfod pam." #: db_operations.php:648 msgid "Edit PDF Pages" -msgstr "" +msgstr "Golygwch Dudalennau PDF" #: db_printview.php:104 db_tracking.php:72 db_tracking.php:157 #: libraries/db_structure.lib.php:46 libraries/export/xml.php:328 @@ -338,48 +343,48 @@ msgstr "" #: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592 #: test/theme.php:75 msgid "Table" -msgstr "" +msgstr "Tabl" #: db_printview.php:105 libraries/db_structure.lib.php:56 #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 #: navigation.php:638 navigation.php:660 server_databases.php:122 #: tbl_printview.php:394 tbl_structure.php:365 tbl_structure.php:777 msgid "Rows" -msgstr "" +msgstr "Rhesi" #: db_printview.php:109 libraries/db_structure.lib.php:67 tbl_indexes.php:190 msgid "Size" -msgstr "" +msgstr "Maint" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 #: libraries/export/sql.php:899 msgid "in use" -msgstr "" +msgstr "ar ddefnydd" #: db_printview.php:187 libraries/db_info.inc.php:88 #: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:434 #: tbl_structure.php:809 msgid "Creation" -msgstr "" +msgstr "Cread" #: db_printview.php:196 libraries/db_info.inc.php:93 #: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:444 #: tbl_structure.php:817 msgid "Last update" -msgstr "" +msgstr "Diweddariad diwethaf" #: db_printview.php:205 libraries/db_info.inc.php:98 #: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:454 #: tbl_structure.php:825 msgid "Last check" -msgstr "" +msgstr "Gwiriad diwethaf" #: db_printview.php:222 db_structure.php:480 #, possible-php-format msgid "%s table" msgid_plural "%s tables" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s tabl" +msgstr[1] "%s tabl" #: db_qbe.php:29 libraries/Message.class.php:191 #: libraries/display_tbl.lib.php:1981 libraries/sql_query_form.lib.php:140 @@ -1591,7 +1596,7 @@ msgstr "" #: libraries/select_server.lib.php:41 libraries/select_server.lib.php:47 #: main.php:185 test/theme.php:57 msgid "Server" -msgstr "" +msgstr "Gweinydd" #: libraries/common.inc.php:823 msgid "Invalid authentication method set in configuration:" @@ -1611,13 +1616,13 @@ msgstr "" #: libraries/common.lib.php:411 msgctxt "$mysql_5_1_doc_lang" msgid "en" -msgstr "" +msgstr "en" #. l10n: Language to use for MySQL 5.0 documentation, please use only languages which do exist in official documentation. #: libraries/common.lib.php:415 msgctxt "$mysql_5_0_doc_lang" msgid "en" -msgstr "" +msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 @@ -1631,19 +1636,19 @@ msgstr "" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 #: server_processlist.php:60 server_status.php:247 msgid "SQL query" -msgstr "" +msgstr "Ymholiad SQL" #: libraries/common.lib.php:634 msgid "MySQL said: " -msgstr "" +msgstr "Dywedodd MySQL:" #: libraries/common.lib.php:1177 setup/lib/messages.inc.php:353 msgid "Explain SQL" -msgstr "" +msgstr "Esbonio SQL" #: libraries/common.lib.php:1180 msgid "Skip Explain SQL" -msgstr "" +msgstr "Sgipio Esbonio SQL" #: libraries/common.lib.php:1212 msgid "Without PHP Code" @@ -1694,7 +1699,7 @@ msgstr "" #: libraries/common.lib.php:1379 msgid "MiB" -msgstr "" +msgstr "MiB" #: libraries/common.lib.php:1379 msgid "GiB" From 6c93204f63fe54e452690620602aa20d72ad3fda Mon Sep 17 00:00:00 2001 From: ardavies Date: Mon, 7 Jun 2010 21:37:08 +0200 Subject: [PATCH 68/75] Translation update done using Pootle. --- po/cy.po | 150 +++++++++++++++++++++++++++---------------------------- 1 file changed, 75 insertions(+), 75 deletions(-) diff --git a/po/cy.po b/po/cy.po index aeb889cb6..42b9e6f6b 100644 --- a/po/cy.po +++ b/po/cy.po @@ -391,115 +391,115 @@ msgstr[1] "%s tabl" #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" -msgstr "" +msgstr "Cafodd eich ymholiad SQL ei gweithredu'n llwyddiannus" #: db_qbe.php:42 msgid "You have to choose at least one column to display" -msgstr "" +msgstr "Mae'n rhaid dewis o leiaf un golofn i'w dangos" #: db_qbe.php:200 libraries/db_structure.lib.php:104 #: libraries/display_tbl.lib.php:866 msgid "Sort" -msgstr "" +msgstr "Trefnu" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 #: server_databases.php:170 server_databases.php:187 tbl_operations.php:260 #: tbl_select.php:314 msgid "Ascending" -msgstr "" +msgstr "Esgynnol" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 #: server_databases.php:170 server_databases.php:187 tbl_operations.php:261 #: tbl_select.php:315 msgid "Descending" -msgstr "" +msgstr "Disgynnol" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 #: tbl_change.php:277 tbl_tracking.php:597 msgid "Show" -msgstr "" +msgstr "Dangos" #: db_qbe.php:300 msgid "Criteria" -msgstr "" +msgstr "Meini prawf" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 msgid "Ins" -msgstr "" +msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 msgid "And" -msgstr "" +msgstr "And" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 msgid "Del" -msgstr "" +msgstr "Del" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 #: libraries/display_import.lib.php:166 libraries/tbl_properties.inc.php:779 #: server_privileges.php:258 tbl_change.php:1031 tbl_indexes.php:250 #: tbl_select.php:288 msgid "Or" -msgstr "" +msgstr "Or" #: db_qbe.php:507 msgid "Modify" -msgstr "" +msgstr "Addasu" #: db_qbe.php:584 msgid "Add/Delete criteria rows" -msgstr "" +msgstr "Ychwanegu/Dileu rhesi meini prawf" #: db_qbe.php:596 msgid "Add/Delete columns" -msgstr "" +msgstr "Ychwanegu/Dileu colofnau" #: db_qbe.php:609 db_qbe.php:634 msgid "Update Query" -msgstr "" +msgstr "Ymholiad Diweddaru" #: db_qbe.php:617 msgid "Use Tables" -msgstr "" +msgstr "Defnyddiwch Dablau" #: db_qbe.php:640 #, possible-php-format msgid "SQL query on database %s:" -msgstr "" +msgstr "Ymholiad SQL ar gronfa ddata %s:" #: db_qbe.php:934 libraries/common.lib.php:1223 msgid "Submit Query" -msgstr "" +msgstr "Cyflwynwch yr Ymholiad" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 #: libraries/auth/signon.auth.lib.php:183 msgid "Access denied" -msgstr "" +msgstr "Mynediad wedi'i wrthod" #: db_search.php:80 db_search.php:311 msgid "at least one of the words" -msgstr "" +msgstr "o leiaf un o'r geiriau" #: db_search.php:81 db_search.php:312 msgid "all words" -msgstr "" +msgstr "pob gair" #: db_search.php:82 db_search.php:313 msgid "the exact phrase" -msgstr "" +msgstr "y cymal union" #: db_search.php:83 db_search.php:314 msgid "as regular expression" -msgstr "" +msgstr "fel mynegiad arferol (regular expression)" #: db_search.php:242 #, possible-php-format msgid "Search results for \"%s\" %s:" -msgstr "" +msgstr "Canlyniadau chwilio am \"%s\" %s:" #: db_search.php:260 #, possible-php-format @@ -3766,215 +3766,215 @@ msgstr "" #: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157 #: tbl_structure.php:473 msgid "Primary" -msgstr "" +msgstr "Cynradd" #: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116 #: libraries/tbl_properties.inc.php:525 tbl_printview.php:326 #: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158 #: tbl_structure.php:475 tbl_structure.php:673 msgid "Index" -msgstr "" +msgstr "Indecs" #: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531 #: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160 #: tbl_structure.php:478 msgid "Fulltext" -msgstr "" +msgstr "Testunllawn" #: libraries/mult_submits.inc.php:435 tbl_replace.php:331 msgid "No change" -msgstr "" +msgstr "Dim newid" #: libraries/mysql_charsets.lib.php:107 msgid "Charset" -msgstr "" +msgstr "Set nodau" #: libraries/mysql_charsets.lib.php:201 libraries/mysql_charsets.lib.php:402 #: tbl_change.php:518 msgid "Binary" -msgstr "" +msgstr "Deuaidd" #: libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" -msgstr "" +msgstr "Bwlgareg" #: libraries/mysql_charsets.lib.php:217 libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" -msgstr "" +msgstr "Tsieinëeg Syml" #: libraries/mysql_charsets.lib.php:219 libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" -msgstr "" +msgstr "Tsieinëeg Draddodiadol" #: libraries/mysql_charsets.lib.php:223 libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" -msgstr "" +msgstr "cas-ansensitif" #: libraries/mysql_charsets.lib.php:226 libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" -msgstr "" +msgstr "cas-sensitif" #: libraries/mysql_charsets.lib.php:229 msgid "Croatian" -msgstr "" +msgstr "Croateg" #: libraries/mysql_charsets.lib.php:232 msgid "Czech" -msgstr "" +msgstr "Tsieceg" #: libraries/mysql_charsets.lib.php:235 msgid "Danish" -msgstr "" +msgstr "Daneg" #: libraries/mysql_charsets.lib.php:238 msgid "English" -msgstr "" +msgstr "Saesneg" #: libraries/mysql_charsets.lib.php:241 msgid "Esperanto" -msgstr "" +msgstr "Esperanto" #: libraries/mysql_charsets.lib.php:244 msgid "Estonian" -msgstr "" +msgstr "Estoneg" #: libraries/mysql_charsets.lib.php:247 libraries/mysql_charsets.lib.php:250 msgid "German" -msgstr "" +msgstr "Almaeneg" #: libraries/mysql_charsets.lib.php:247 msgid "dictionary" -msgstr "" +msgstr "geiriadur" #: libraries/mysql_charsets.lib.php:250 msgid "phone book" -msgstr "" +msgstr "llyfr ffôn" #: libraries/mysql_charsets.lib.php:253 msgid "Hungarian" -msgstr "" +msgstr "Hwngareg" #: libraries/mysql_charsets.lib.php:256 msgid "Icelandic" -msgstr "" +msgstr "Islandeg" #: libraries/mysql_charsets.lib.php:259 libraries/mysql_charsets.lib.php:349 msgid "Japanese" -msgstr "" +msgstr "Siapaneg" #: libraries/mysql_charsets.lib.php:262 msgid "Latvian" -msgstr "" +msgstr "Latfieg" #: libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" -msgstr "" +msgstr "Lithwaneg" #: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:371 msgid "Korean" -msgstr "" +msgstr "Corëeg" #: libraries/mysql_charsets.lib.php:271 msgid "Persian" -msgstr "" +msgstr "Perseg" #: libraries/mysql_charsets.lib.php:274 msgid "Polish" -msgstr "" +msgstr "Pwyleg" #: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:325 msgid "West European" -msgstr "" +msgstr "Ewropeaidd Gorllewinol" #: libraries/mysql_charsets.lib.php:280 msgid "Romanian" -msgstr "" +msgstr "Rwmaneg" #: libraries/mysql_charsets.lib.php:283 msgid "Slovak" -msgstr "" +msgstr "Slofaceg" #: libraries/mysql_charsets.lib.php:286 msgid "Slovenian" -msgstr "" +msgstr "Slofeneg" #: libraries/mysql_charsets.lib.php:289 msgid "Spanish" -msgstr "" +msgstr "Sbaeneg" #: libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" -msgstr "" +msgstr "Sbaeneg Draddodiadol" #: libraries/mysql_charsets.lib.php:295 libraries/mysql_charsets.lib.php:392 msgid "Swedish" -msgstr "" +msgstr "Swedeg" #: libraries/mysql_charsets.lib.php:298 libraries/mysql_charsets.lib.php:395 msgid "Thai" -msgstr "" +msgstr "Tai" #: libraries/mysql_charsets.lib.php:301 libraries/mysql_charsets.lib.php:389 msgid "Turkish" -msgstr "" +msgstr "Twrceg" #: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" -msgstr "" +msgstr "Wcreineg" #: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:316 msgid "Unicode" -msgstr "" +msgstr "Unicode" #: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:316 #: libraries/mysql_charsets.lib.php:325 libraries/mysql_charsets.lib.php:332 #: libraries/mysql_charsets.lib.php:354 libraries/mysql_charsets.lib.php:365 msgid "multilingual" -msgstr "" +msgstr "amlieithog" #: libraries/mysql_charsets.lib.php:332 msgid "Central European" -msgstr "" +msgstr "Ewropeaidd Canolog" #: libraries/mysql_charsets.lib.php:337 msgid "Russian" -msgstr "" +msgstr "Rwseg" #: libraries/mysql_charsets.lib.php:354 msgid "Baltic" -msgstr "" +msgstr "Balteg" #: libraries/mysql_charsets.lib.php:359 msgid "Armenian" -msgstr "" +msgstr "Armeneg" #: libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" -msgstr "" +msgstr "Syrilig" #: libraries/mysql_charsets.lib.php:368 msgid "Arabic" -msgstr "" +msgstr "Arabeg" #: libraries/mysql_charsets.lib.php:374 msgid "Hebrew" -msgstr "" +msgstr "Iddeweg" #: libraries/mysql_charsets.lib.php:377 msgid "Georgian" -msgstr "" +msgstr "Georgeg" #: libraries/mysql_charsets.lib.php:380 msgid "Greek" -msgstr "" +msgstr "Groegeg" #: libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" -msgstr "" +msgstr "Tsiec-Slofac" #: libraries/mysql_charsets.lib.php:398 libraries/mysql_charsets.lib.php:405 msgid "unknown" -msgstr "" +msgstr "anhysbys" #: libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 From cbfebc2ac6b1b427ee91236fc7b72245f3878b65 Mon Sep 17 00:00:00 2001 From: ardavies Date: Mon, 7 Jun 2010 21:49:27 +0200 Subject: [PATCH 69/75] Translation update done using Pootle. --- po/cy.po | 86 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/po/cy.po b/po/cy.po index 42b9e6f6b..1e53a35bd 100644 --- a/po/cy.po +++ b/po/cy.po @@ -512,7 +512,7 @@ msgstr "" #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" -msgstr "" +msgstr "Porwch" #: db_search.php:272 libraries/display_tbl.lib.php:1165 #: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470 @@ -520,7 +520,7 @@ msgstr "" #: pmd_general.php:377 setup/frames/index.inc.php:125 #: setup/frames/index.inc.php:216 tbl_row_action.php:63 msgid "Delete" -msgstr "" +msgstr "Dileu" #: db_search.php:285 #, possible-php-format @@ -529,7 +529,7 @@ msgstr "" #: db_search.php:299 msgid "Search in database" -msgstr "" +msgstr "Chwiliwch yn y gronfa ddata" #: db_search.php:302 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" @@ -537,7 +537,7 @@ msgstr "" #: db_search.php:307 msgid "Find:" -msgstr "" +msgstr "Darganfyddwch:" #: db_search.php:311 db_search.php:312 msgid "Words are separated by a space character (\" \")." @@ -545,18 +545,18 @@ msgstr "" #: db_search.php:325 msgid "Inside table(s):" -msgstr "" +msgstr "Tu fewn tabl(au):" #: db_search.php:355 msgid "Inside column:" -msgstr "" +msgstr "Tu fewn colofn:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 #: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" -msgstr "" +msgstr "Mewnosod" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 #: libraries/common.lib.php:2820 libraries/common.lib.php:2827 @@ -567,7 +567,7 @@ msgstr "" #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" -msgstr "" +msgstr "Strwythur" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 @@ -578,37 +578,37 @@ msgstr "" #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 #: tbl_structure.php:152 tbl_structure.php:471 msgid "Drop" -msgstr "" +msgstr "Gollwng" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 #: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" -msgstr "" +msgstr "Gwagu" #: db_structure.php:316 libraries/tbl_links.inc.php:100 #, possible-php-format msgid "Table %s has been emptied" -msgstr "" +msgstr "Cafodd tabl %s ei wagu" #: db_structure.php:326 libraries/tbl_links.inc.php:133 #, possible-php-format msgid "View %s has been dropped" -msgstr "" +msgstr "Cafodd golwg %s ei ollwng" #: db_structure.php:326 libraries/tbl_links.inc.php:133 #, possible-php-format msgid "Table %s has been dropped" -msgstr "" +msgstr "Cafodd tabl %s ei ollwng" #: db_structure.php:333 msgid "Tracking is active." -msgstr "" +msgstr "Mae tracio'n weithredol" #: db_structure.php:335 msgid "Tracking is not active." -msgstr "" +msgstr "Nid yw tracio'n weithredol" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, possible-php-format @@ -620,17 +620,17 @@ msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 msgid "View" -msgstr "" +msgstr "Dangos" #: db_structure.php:485 libraries/db_structure.lib.php:49 #: libraries/server_links.inc.php:70 server_replication.php:33 #: server_replication.php:164 server_status.php:258 msgid "Replication" -msgstr "" +msgstr "Dyblygiad" #: db_structure.php:489 msgid "Sum" -msgstr "" +msgstr "Swm" #: db_structure.php:496 libraries/StorageEngine.class.php:356 #, possible-php-format @@ -649,43 +649,43 @@ msgstr "" #: server_databases.php:348 server_privileges.php:530 #: server_privileges.php:1560 tbl_structure.php:458 msgid "Check All" -msgstr "" +msgstr "Dewis Pob" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 #: libraries/replication_gui.lib.php:33 server_databases.php:350 #: server_privileges.php:533 server_privileges.php:1564 tbl_structure.php:462 msgid "Uncheck All" -msgstr "" +msgstr "Dad-ddewis Pob" #: db_structure.php:536 msgid "Check tables having overhead" -msgstr "" +msgstr "Gwiriwch dablau â gorbenion" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 #: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28 #: tbl_structure.php:492 tbl_structure.php:494 msgid "Print view" -msgstr "" +msgstr "Argraffu golwg" #: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42 #: tbl_operations.php:581 msgid "Check table" -msgstr "" +msgstr "Gwirio tabl" #: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47 #: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711 msgid "Optimize table" -msgstr "" +msgstr "Optimeiddio tabl" #: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52 #: tbl_operations.php:611 msgid "Repair table" -msgstr "" +msgstr "Trwsio tabl" #: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57 #: tbl_operations.php:601 msgid "Analyze table" -msgstr "" +msgstr "Dadansoddi tabl" #: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71 #: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094 @@ -694,15 +694,15 @@ msgstr "" #: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1341 #: setup/frames/menu.inc.php:22 tbl_row_action.php:59 msgid "Export" -msgstr "" +msgstr "Allforio" #: db_structure.php:606 libraries/display_pdf_schema.lib.php:44 msgid "Data Dictionary" -msgstr "" +msgstr "Geiriadur Data" #: db_tracking.php:66 msgid "Tracked tables" -msgstr "" +msgstr "Tablau a draciwyd" #: db_tracking.php:71 libraries/export/htmlword.php:86 #: libraries/export/latex.php:148 libraries/export/odt.php:113 @@ -714,65 +714,65 @@ msgstr "" #: server_synchronize.php:1179 server_synchronize.php:1183 #: tbl_tracking.php:591 test/theme.php:65 msgid "Database" -msgstr "" +msgstr "Cronfa ddata" #: db_tracking.php:73 msgid "Last version" -msgstr "" +msgstr "Fersiwn diweddaraf" #: db_tracking.php:74 tbl_tracking.php:594 msgid "Created" -msgstr "" +msgstr "Crëwyd" #: db_tracking.php:75 tbl_tracking.php:595 msgid "Updated" -msgstr "" +msgstr "Diweddarwyd" #: db_tracking.php:77 libraries/Index.class.php:440 #: libraries/db_structure.lib.php:53 server_databases.php:203 #: server_privileges.php:1503 server_privileges.php:1686 #: server_privileges.php:2034 tbl_structure.php:187 msgid "Action" -msgstr "" +msgstr "Gweithred" #: db_tracking.php:88 db_tracking.php:120 msgid "Delete tracking data for this table" -msgstr "" +msgstr "Dilëwch data tracio ar gyfer y tabl hwn" #: db_tracking.php:106 tbl_tracking.php:548 tbl_tracking.php:606 #: tbl_tracking.php:613 msgid "active" -msgstr "" +msgstr "gweithredol" #: db_tracking.php:108 tbl_tracking.php:550 tbl_tracking.php:608 #: tbl_tracking.php:610 msgid "not active" -msgstr "" +msgstr "ddim yn weithredol" #: db_tracking.php:121 msgid "Versions" -msgstr "" +msgstr "Fersiynau" #: db_tracking.php:122 tbl_tracking.php:379 tbl_tracking.php:624 msgid "Tracking report" -msgstr "" +msgstr "Adroddiad tracio" #: db_tracking.php:123 tbl_tracking.php:251 tbl_tracking.php:624 msgid "Structure snapshot" -msgstr "" +msgstr "Ciplun strwythur" #: db_tracking.php:152 msgid "Untracked tables" -msgstr "" +msgstr "Tablau heb dracio " #: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528 #: tbl_structure.php:530 msgid "Track table" -msgstr "" +msgstr "Tracio tabl" #: db_tracking.php:200 msgid "Database Log" -msgstr "" +msgstr "Log cronfa ddata" #: export.php:62 msgid "Selected export type has to be saved in file!" From caf06c4cfcfd5461f3125756b239738c17fbd469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 7 Jun 2010 21:56:11 +0200 Subject: [PATCH 70/75] Fix po file header. --- po/cy.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/cy.po b/po/cy.po index 1e53a35bd..ee4d8c346 100644 --- a/po/cy.po +++ b/po/cy.po @@ -4,12 +4,12 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: phpMyAdmin 3.4.0\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-06-04 16:07-0400\n" "PO-Revision-Date: 2010-06-07 20:23+0200\n" "Last-Translator: \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Welsh \n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" From 99e53e88de393f05a4d5e98b6a2964d91a8222f6 Mon Sep 17 00:00:00 2001 From: ardavies Date: Mon, 7 Jun 2010 22:09:54 +0200 Subject: [PATCH 71/75] Translation update done using Pootle. --- po/cy.po | 224 +++++++++++++++++++++++++++---------------------------- 1 file changed, 112 insertions(+), 112 deletions(-) diff --git a/po/cy.po b/po/cy.po index ee4d8c346..e49cbec93 100644 --- a/po/cy.po +++ b/po/cy.po @@ -842,7 +842,7 @@ msgstr "" #: import.php:403 sql.php:626 #, possible-php-format msgid "Bookmark %s created" -msgstr "" +msgstr "Clustnodi %s a grëwyd" #: import.php:409 import.php:415 #, possible-php-format @@ -864,7 +864,7 @@ msgstr "" #: import_status.php:31 libraries/common.lib.php:667 pdf_schema.php:241 #: user_password.php:115 msgid "Back" -msgstr "" +msgstr "Nôl" #: index.php:190 msgid "phpMyAdmin is more friendly with a frames-capable browser." @@ -987,12 +987,12 @@ msgstr "" #. l10n: Display text for calendar close link #: js/messages.php:73 msgid "Done" -msgstr "" +msgstr "Gorffen" #. l10n: Display text for previous month link in calendar #: js/messages.php:75 msgid "Prev" -msgstr "" +msgstr "Cynt" #. l10n: Display text for next month link in calendar #: js/messages.php:77 libraries/common.lib.php:2344 @@ -1000,240 +1000,240 @@ msgstr "" #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" -msgstr "" +msgstr "Nesaf" #. l10n: Display text for current month link in calendar #: js/messages.php:79 msgid "Today" -msgstr "" +msgstr "Heddiw" #: js/messages.php:82 msgid "January" -msgstr "" +msgstr "Ionawr" #: js/messages.php:83 msgid "February" -msgstr "" +msgstr "Chwefror" #: js/messages.php:84 msgid "March" -msgstr "" +msgstr "Mawrth" #: js/messages.php:85 msgid "April" -msgstr "" +msgstr "Ebrill" #: js/messages.php:86 msgid "May" -msgstr "" +msgstr "Mai" #: js/messages.php:87 msgid "June" -msgstr "" +msgstr "Mehefin" #: js/messages.php:88 msgid "July" -msgstr "" +msgstr "Gorffennaf" #: js/messages.php:89 msgid "August" -msgstr "" +msgstr "Awst" #: js/messages.php:90 msgid "September" -msgstr "" +msgstr "Medi" #: js/messages.php:91 msgid "October" -msgstr "" +msgstr "Hydref" #: js/messages.php:92 msgid "November" -msgstr "" +msgstr "Tachwedd" #: js/messages.php:93 msgid "December" -msgstr "" +msgstr "Rhagfyr" #. l10n: Short month name #: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" -msgstr "" +msgstr "Ion" #. l10n: Short month name #: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" -msgstr "" +msgstr "Chwe" #. l10n: Short month name #: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" -msgstr "" +msgstr "Maw" #. l10n: Short month name #: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" -msgstr "" +msgstr "Ebr" #. l10n: Short month name #: js/messages.php:105 libraries/common.lib.php:1563 msgctxt "Short month name" msgid "May" -msgstr "" +msgstr "Mai" #. l10n: Short month name #: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" -msgstr "" +msgstr "Meh" #. l10n: Short month name #: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" -msgstr "" +msgstr "Gor" #. l10n: Short month name #: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" -msgstr "" +msgstr "Aws" #. l10n: Short month name #: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" -msgstr "" +msgstr "Med" #. l10n: Short month name #: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" -msgstr "" +msgstr "Hyd" #. l10n: Short month name #: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" -msgstr "" +msgstr "Tach" #. l10n: Short month name #: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" -msgstr "" +msgstr "Rhag" #: js/messages.php:122 msgid "Sunday" -msgstr "" +msgstr "Dydd Sul" #: js/messages.php:123 msgid "Monday" -msgstr "" +msgstr "Dydd Llun" #: js/messages.php:124 msgid "Tuesday" -msgstr "" +msgstr "Dydd Mawrth" #: js/messages.php:125 msgid "Wednesday" -msgstr "" +msgstr "DYdd Mercher" #: js/messages.php:126 msgid "Thursday" -msgstr "" +msgstr "Dydd Iau" #: js/messages.php:127 msgid "Friday" -msgstr "" +msgstr "Dydd Gwener" #: js/messages.php:128 msgid "Saturday" -msgstr "" +msgstr "Dydd Sadwrn" #. l10n: Short week day name #: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" -msgstr "" +msgstr "Sul" #. l10n: Short week day name #: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" -msgstr "" +msgstr "Llun" #. l10n: Short week day name #: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" -msgstr "" +msgstr "Maw" #. l10n: Short week day name #: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" -msgstr "" +msgstr "Mer" #. l10n: Short week day name #: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" -msgstr "" +msgstr "Iau" #. l10n: Short week day name #: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" -msgstr "" +msgstr "Gwe" #. l10n: Short week day name #: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" -msgstr "" +msgstr "Sad" #. l10n: Minimal week day name #: js/messages.php:148 msgid "Su" -msgstr "" +msgstr "Su" #. l10n: Minimal week day name #: js/messages.php:150 msgid "Mo" -msgstr "" +msgstr "Llu" #. l10n: Minimal week day name #: js/messages.php:152 msgid "Tu" -msgstr "" +msgstr "Ma" #. l10n: Minimal week day name #: js/messages.php:154 msgid "We" -msgstr "" +msgstr "Me" #. l10n: Minimal week day name #: js/messages.php:156 msgid "Th" -msgstr "" +msgstr "Ia" #. l10n: Minimal week day name #: js/messages.php:158 msgid "Fr" -msgstr "" +msgstr "Gw" #. l10n: Minimal week day name #: js/messages.php:160 msgid "Sa" -msgstr "" +msgstr "Sa" #. l10n: Column header for week of the year in calendar #: js/messages.php:162 msgid "Wk" -msgstr "" +msgstr "Wy" #: js/messages.php:164 msgid "Hour" -msgstr "" +msgstr "Awr" #: js/messages.php:165 msgid "Minute" -msgstr "" +msgstr "Munud" #: js/messages.php:166 msgid "Second" -msgstr "" +msgstr "Eiliad" #: libraries/Config.class.php:1015 msgid "Font size" -msgstr "" +msgstr "Maint ffont" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 @@ -1278,14 +1278,14 @@ msgstr "" #: libraries/Index.class.php:433 server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" -msgstr "" +msgstr "Indecsau" #: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103 #: libraries/tbl_properties.inc.php:519 tbl_structure.php:33 #: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474 #: tbl_tracking.php:322 msgid "Unique" -msgstr "" +msgstr "Unigryw" #: libraries/Index.class.php:445 tbl_tracking.php:323 msgid "Packed" @@ -1297,7 +1297,7 @@ msgstr "" #: libraries/Index.class.php:450 tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" -msgstr "" +msgstr "Sylw" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 @@ -1305,7 +1305,7 @@ msgstr "" #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 msgid "Edit" -msgstr "" +msgstr "Golygu" #: libraries/Index.class.php:472 msgid "The primary key has been dropped" @@ -1610,7 +1610,7 @@ msgstr "" #: libraries/common.lib.php:147 #, possible-php-format msgid "Max: %s%s" -msgstr "" +msgstr "Uchaf: %s%s" #. l10n: Language to use for MySQL 5.1 documentation, please use only languages which do exist in official documentation. #: libraries/common.lib.php:411 @@ -1631,7 +1631,7 @@ msgstr "en" #: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454 #: main.php:229 setup/lib/FormDisplay.tpl.php:124 msgid "Documentation" -msgstr "" +msgstr "Dogfennaeth" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 #: server_processlist.php:60 server_status.php:247 @@ -1652,11 +1652,11 @@ msgstr "Sgipio Esbonio SQL" #: libraries/common.lib.php:1212 msgid "Without PHP Code" -msgstr "" +msgstr "Heb God PHP" #: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 msgid "Create PHP Code" -msgstr "" +msgstr "Creu Cod PHP" #: libraries/common.lib.php:1233 server_status.php:341 #: setup/lib/messages.inc.php:354 @@ -1665,37 +1665,37 @@ msgstr "" #: libraries/common.lib.php:1242 msgid "Skip Validate SQL" -msgstr "" +msgstr "Sgipio Dilysu SQL" #: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" -msgstr "" +msgstr "Dilysu SQL" #: libraries/common.lib.php:1276 msgid "Inline edit of this query" -msgstr "" +msgstr "Golygu mewnol yr ymholiad hwn" #: libraries/common.lib.php:1278 msgid "Inline" -msgstr "" +msgstr "Mewnol" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 msgid "Profiling" -msgstr "" +msgstr "Proffilio" #: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" -msgstr "" +msgstr "Amser" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ #: libraries/common.lib.php:1379 msgid "B" -msgstr "" +msgstr "B" #: libraries/common.lib.php:1379 msgid "KiB" -msgstr "" +msgstr "KiB" #: libraries/common.lib.php:1379 msgid "MiB" @@ -1703,56 +1703,56 @@ msgstr "MiB" #: libraries/common.lib.php:1379 msgid "GiB" -msgstr "" +msgstr "GiB" #: libraries/common.lib.php:1379 msgid "TiB" -msgstr "" +msgstr "TiB" #: libraries/common.lib.php:1379 msgid "PiB" -msgstr "" +msgstr "PiB" #: libraries/common.lib.php:1379 msgid "EiB" -msgstr "" +msgstr "EiB" #. l10n: Thousands separator #: libraries/common.lib.php:1417 msgid "," -msgstr "" +msgstr "," #. l10n: Decimal separator #: libraries/common.lib.php:1419 msgid "." -msgstr "" +msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string #: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" -msgstr "" +msgstr "%B %d, %Y am %I:%M %p" #: libraries/common.lib.php:1898 #, possible-php-format msgid "%s days, %s hours, %s minutes and %s seconds" -msgstr "" +msgstr "%s diwrnod, %s awr, %s munud a %s eiliad" #: libraries/common.lib.php:2313 libraries/common.lib.php:2316 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" -msgstr "" +msgstr "Dechrau" #: libraries/common.lib.php:2314 libraries/common.lib.php:2317 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" -msgstr "" +msgstr "Cynt" #: libraries/common.lib.php:2345 libraries/common.lib.php:2348 #: libraries/display_tbl.lib.php:353 msgid "End" -msgstr "" +msgstr "Diwedd" #: libraries/common.lib.php:2421 #, possible-php-format @@ -1769,13 +1769,13 @@ msgstr "" #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" -msgstr "" +msgstr "SQL" #: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" -msgstr "" +msgstr "Gweithrediadau" #: libraries/core.lib.php:284 libraries/dbg/setup.php:22 #, possible-php-format @@ -1787,13 +1787,13 @@ msgstr "" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 #: libraries/export/sql.php:415 msgid "Events" -msgstr "" +msgstr "Digwyddiadau" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 #: libraries/display_create_table.lib.php:53 libraries/tbl_triggers.lib.php:27 #: setup/frames/index.inc.php:112 msgid "Name" -msgstr "" +msgstr "Enw" #: libraries/db_links.inc.php:45 #, possible-php-format @@ -1808,31 +1808,31 @@ msgstr "" #: libraries/db_links.inc.php:81 libraries/relation.lib.php:155 #: libraries/tbl_links.inc.php:69 msgid "Tracking" -msgstr "" +msgstr "Tracio" #: libraries/db_links.inc.php:86 msgid "Query" -msgstr "" +msgstr "Ymholiad" #: libraries/db_links.inc.php:91 libraries/relation.lib.php:151 msgid "Designer" -msgstr "" +msgstr "Dyluniwr" #: libraries/db_links.inc.php:98 libraries/server_links.inc.php:88 #: libraries/tbl_links.inc.php:91 pmd_pdf.php:84 pmd_pdf.php:110 #: setup/frames/menu.inc.php:21 msgid "Import" -msgstr "" +msgstr "Mewnforio" #: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66 #: server_privileges.php:72 server_privileges.php:1683 #: server_privileges.php:2032 test/theme.php:117 msgid "Privileges" -msgstr "" +msgstr "Breintiau" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 msgid "Routines" -msgstr "" +msgstr "Rheolweithiau" #: libraries/db_routines.inc.php:43 msgid "Return type" @@ -1847,7 +1847,7 @@ msgstr "" #: libraries/db_structure.lib.php:69 server_databases.php:142 #: tbl_printview.php:336 tbl_structure.php:682 msgid "Overhead" -msgstr "" +msgstr "Gorbenion" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 msgid "Connection for controluser as defined in your configuration failed." @@ -1869,12 +1869,12 @@ msgstr "" #: libraries/display_change_password.lib.php:30 main.php:91 #: user_password.php:111 user_password.php:129 msgid "Change password" -msgstr "" +msgstr "Newid cyfrinair" #: libraries/display_change_password.lib.php:35 #: libraries/replication_gui.lib.php:345 server_privileges.php:768 msgid "No Password" -msgstr "" +msgstr "Dim Cyfrinair" #: libraries/display_change_password.lib.php:41 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 @@ -1883,45 +1883,45 @@ msgstr "" #: server_privileges.php:761 server_privileges.php:772 #: server_privileges.php:1499 server_synchronize.php:1175 msgid "Password" -msgstr "" +msgstr "Cyfrinair" #: libraries/display_change_password.lib.php:46 #: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:356 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" -msgstr "" +msgstr "Ail-deipiwch" #: libraries/display_change_password.lib.php:52 msgid "Password Hashing" -msgstr "" +msgstr "Stwnsio Cyfrinair" #: libraries/display_change_password.lib.php:66 msgid "MySQL 4.0 compatible" -msgstr "" +msgstr "MySQL 4.0-cytûn" #: libraries/display_change_password.lib.php:72 #: libraries/replication_gui.lib.php:360 server_privileges.php:783 msgid "Generate Password" -msgstr "" +msgstr "Generadu Cyfrinair" #: libraries/display_change_password.lib.php:75 #: libraries/replication_gui.lib.php:363 server_privileges.php:786 msgid "Generate" -msgstr "" +msgstr "Generadu" #: libraries/display_create_database.lib.php:22 #: libraries/display_create_database.lib.php:36 msgid "Create new database" -msgstr "" +msgstr "Creu cronfa ddata newydd" #: libraries/display_create_database.lib.php:30 msgid "Create" -msgstr "" +msgstr "Creu" #: libraries/display_create_database.lib.php:40 server_privileges.php:74 #: server_privileges.php:1388 server_replication.php:35 msgid "No Privileges" -msgstr "" +msgstr "Dim Breintiau" #: libraries/display_create_table.lib.php:41 msgid "Table must have at least one column." @@ -1934,7 +1934,7 @@ msgstr "" #: libraries/display_create_table.lib.php:57 msgid "Number of columns" -msgstr "" +msgstr "Nifer y colofnau" #: libraries/display_export.lib.php:42 msgid "Could not load export plugins, please check your installation!" @@ -1947,7 +1947,7 @@ msgstr "" #: libraries/display_export.lib.php:115 msgid "Dump all rows" -msgstr "" +msgstr "Dadlwytho pob rhes" #: libraries/display_export.lib.php:125 setup/lib/messages.inc.php:82 msgid "Save as file" @@ -2122,7 +2122,7 @@ msgstr "" #: libraries/display_pdf_schema.lib.php:50 msgid "Landscape" -msgstr "" +msgstr "Tirlun" #: libraries/display_pdf_schema.lib.php:51 msgid "Portrait" @@ -2130,12 +2130,12 @@ msgstr "" #: libraries/display_pdf_schema.lib.php:54 msgid "Paper size" -msgstr "" +msgstr "Maint papur" #: libraries/display_select_lang.lib.php:45 #: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70 msgid "Language" -msgstr "" +msgstr "iaith" #: libraries/display_tbl.lib.php:304 #, possible-php-format @@ -2148,7 +2148,7 @@ msgstr "" #: libraries/display_tbl.lib.php:316 msgid "horizontal" -msgstr "" +msgstr "llorweddol" #: libraries/display_tbl.lib.php:317 msgid "horizontal (rotated headers)" @@ -2156,7 +2156,7 @@ msgstr "" #: libraries/display_tbl.lib.php:318 msgid "vertical" -msgstr "" +msgstr "fertigol" #: libraries/display_tbl.lib.php:324 #, possible-php-format From cad642cd99158245e7dde757110a5c04e5c0b320 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 7 Jun 2010 22:10:17 +0200 Subject: [PATCH 72/75] Refresh po files. --- po/af.po | 148 ++++++++-------- po/ar.po | 152 ++++++++-------- po/az.po | 148 ++++++++-------- po/be.po | 156 ++++++++--------- po/be@latin.po | 168 +++++++++--------- po/bg.po | 152 ++++++++-------- po/bn.po | 164 +++++++++--------- po/bs.po | 148 ++++++++-------- po/ca.po | 160 ++++++++--------- po/cs.po | 161 ++++++++--------- po/cy.po | 430 +++++++++++++++++++++++----------------------- po/da.po | 156 ++++++++--------- po/de.po | 160 ++++++++--------- po/el.po | 177 +++++++++---------- po/en_GB.po | 288 +++++++++++-------------------- po/es.po | 160 ++++++++--------- po/et.po | 148 ++++++++-------- po/eu.po | 148 ++++++++-------- po/fa.po | 168 +++++++++--------- po/fi.po | 156 ++++++++--------- po/fr.po | 162 ++++++++--------- po/gl.po | 160 ++++++++--------- po/he.po | 148 ++++++++-------- po/hi.po | 152 ++++++++-------- po/hr.po | 156 ++++++++--------- po/hu.po | 168 +++++++++--------- po/id.po | 156 ++++++++--------- po/it.po | 152 ++++++++-------- po/ja.po | 152 ++++++++-------- po/ka.po | 168 +++++++++--------- po/ko.po | 148 ++++++++-------- po/lt.po | 156 ++++++++--------- po/lv.po | 152 ++++++++-------- po/mk.po | 148 ++++++++-------- po/mn.po | 156 ++++++++--------- po/ms.po | 148 ++++++++-------- po/nb.po | 155 +++++++++-------- po/nl.po | 152 ++++++++-------- po/phpmyadmin.pot | 147 ++++++++-------- po/pl.po | 168 +++++++++--------- po/pt.po | 148 ++++++++-------- po/pt_BR.po | 148 ++++++++-------- po/ro.po | 156 ++++++++--------- po/ru.po | 169 +++++++++--------- po/si.po | 160 ++++++++--------- po/sk.po | 156 ++++++++--------- po/sl.po | 151 ++++++++-------- po/sq.po | 148 ++++++++-------- po/sr.po | 156 ++++++++--------- po/sr@latin.po | 156 ++++++++--------- po/sv.po | 156 ++++++++--------- po/ta.po | 148 ++++++++-------- po/te.po | 148 ++++++++-------- po/th.po | 148 ++++++++-------- po/tr.po | 152 ++++++++-------- po/tt.po | 152 ++++++++-------- po/uk.po | 152 ++++++++-------- po/ur.po | 156 ++++++++--------- po/uz.po | 168 +++++++++--------- po/uz@latin.po | 176 +++++++++---------- po/zh_CN.po | 158 ++++++++--------- po/zh_TW.po | 148 ++++++++-------- 62 files changed, 4989 insertions(+), 5073 deletions(-) diff --git a/po/af.po b/po/af.po index ce4a5bc48..71ad95648 100644 --- a/po/af.po +++ b/po/af.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" +"Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Wys alles" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -35,8 +35,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Soek" @@ -46,7 +46,7 @@ msgstr "Soek" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -283,7 +283,7 @@ msgstr "" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -484,7 +484,7 @@ msgstr "Gebruik Tabelle" msgid "SQL query on database %s:" msgstr "SQL-navraag op databasis %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Doen Navraag" @@ -523,7 +523,7 @@ msgstr "%s resultate binne tabel %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -570,13 +570,13 @@ msgstr "Binne tabel(le):" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Voeg by" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -589,7 +589,7 @@ msgstr "Struktuur" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -599,7 +599,7 @@ msgstr "Verwyder" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Maak Leeg" @@ -630,8 +630,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -824,8 +824,8 @@ msgstr "" #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1025,8 +1025,8 @@ msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1101,27 +1101,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1129,37 +1129,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Des" @@ -1200,37 +1200,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sa" @@ -1374,7 +1374,7 @@ msgid "Comment" msgstr "Kommentaar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1516,8 +1516,8 @@ msgstr "Welkom by %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1737,128 +1737,128 @@ msgstr "Verduidelik SQL" msgid "Skip Explain SQL" msgstr "Ignoreer SQL Verduideliking" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Sonder PHP Kode" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Skep PHP Kode" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Ignoreer SQL Validasie" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Valideer SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Vorige" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Einde" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2077,8 +2077,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4282,8 +4282,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5266,8 +5266,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1645 diff --git a/po/ar.po b/po/ar.po index c394e96ec..969e0a6f9 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-05-29 14:16+0200\n" "Last-Translator: Ahmed \n" "Language-Team: arabic \n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Pootle 2.0.1\n" @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "شاهد الكل" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "ابحث" @@ -49,7 +49,7 @@ msgstr "ابحث" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -334,8 +334,8 @@ msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" -"s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" +"%s." #: db_operations.php:648 msgid "Edit PDF Pages" @@ -479,7 +479,7 @@ msgstr "استخدم الجدول" msgid "SQL query on database %s:" msgstr "في قاعدة البيانات SQL-إستعلام %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "إرسال الاستعلام" @@ -518,7 +518,7 @@ msgstr "%s مطابقة في الجدول %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "داخل الجدول)الجداول(:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "إدخال" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "بناء" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "حذف" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "إفراغ محتوى" @@ -625,8 +625,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -816,8 +816,8 @@ msgstr "تم حفظ الـDump إلى الملف %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1015,8 +1015,8 @@ msgid "Prev" msgstr "سابق" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1090,27 +1090,27 @@ msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1118,37 +1118,37 @@ msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "ديسمبر" @@ -1189,37 +1189,37 @@ msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "السبت" @@ -1358,7 +1358,7 @@ msgid "Comment" msgstr "تعليق" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1500,8 +1500,8 @@ msgstr "أهلا بك في %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1723,128 +1723,128 @@ msgstr "اشرح SQL" msgid "Skip Explain SQL" msgstr "تخطي شرح SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "بدون كود PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "أنشئ كود PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "حدث" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "تخطي التأكد من SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "التحقق من استعلام SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "وقت" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "بايت" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "كيلوبايت" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "ميجابايت" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "جيجابايت" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "تيرابايت" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "بيتابايت" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "إكسابايت" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y الساعة %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "بداية" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "سابق" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "نهاية" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "إذهب إلى قاعدة بيانات "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2060,8 +2060,8 @@ msgstr "اسم الجدول" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4252,8 +4252,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5274,8 +5274,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL " "مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " diff --git a/po/az.po b/po/az.po index d59a6486b..34f504fe9 100644 --- a/po/az.po +++ b/po/az.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Hamısını göster" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -34,8 +34,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Axtarış" @@ -45,7 +45,7 @@ msgstr "Axtarış" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Kopyalanmış cedvele keç" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -481,7 +481,7 @@ msgstr "Use Tables" msgid "SQL query on database %s:" msgstr "SQL-query on database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Emri İcra Et" @@ -520,7 +520,7 @@ msgstr "%s uyğunluq tapıldı (%s cedvelinde)" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -567,13 +567,13 @@ msgstr "Inside table(s):" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Elave et" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -586,7 +586,7 @@ msgstr "Quruluş" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -596,7 +596,7 @@ msgstr "Leğv et" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Boşalt" @@ -627,8 +627,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -824,8 +824,8 @@ msgstr "Sxem %s faylına qeyd edildi." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1027,8 +1027,8 @@ msgid "Prev" msgstr "Evvelki" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1104,27 +1104,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1132,37 +1132,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dek" @@ -1203,37 +1203,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Şen" @@ -1377,7 +1377,7 @@ msgid "Comment" msgstr "Qısa İzahatlar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1519,8 +1519,8 @@ msgstr "%s - e Xoş Gelmişsiniz!" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1743,130 +1743,130 @@ msgstr "SQL-i İzah Et" msgid "Skip Explain SQL" msgstr "SQL İzah Et-i Keç" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP Kodunu Gösterme" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "SQL İfadesini Yoxlama" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL Tesdiqle" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motorlar" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Müddet" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bayt" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "QB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y saat %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s deqiqe ve %s saniye" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Başla" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Evvelki" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Son" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr ""%s" me'lumat bazasına keç." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2087,8 +2087,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4308,8 +4308,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5351,8 +5351,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler " "cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin " diff --git a/po/be.po b/po/be.po index fddb06684..3fe857a26 100644 --- a/po/be.po +++ b/po/be.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Паказаць усе" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Пошук" @@ -48,7 +48,7 @@ msgstr "Пошук" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Перайсьці да скапіяванай базы дадзеных msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -480,7 +480,7 @@ msgstr "Выкарыстоўваць табліцы" msgid "SQL query on database %s:" msgstr "SQL-запыт да БД %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Выканаць запыт" @@ -519,7 +519,7 @@ msgstr "%s супадзеньняў у табліцы %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -566,13 +566,13 @@ msgstr "Унутры поля:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Уставіць" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -585,7 +585,7 @@ msgstr "Структура" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -595,7 +595,7 @@ msgstr "Выдаліць" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Ачысьціць" @@ -626,11 +626,11 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %" -"sдакумэнтацыі%s." +"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да " +"%sдакумэнтацыі%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -829,8 +829,8 @@ msgstr "Дамп захаваны ў файл %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, " "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " @@ -849,8 +849,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%" -"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " +"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца " +"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." #: import.php:337 @@ -1042,8 +1042,8 @@ msgid "Prev" msgstr "Папярэдняя старонка" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1119,27 +1119,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1147,37 +1147,37 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Сьн" @@ -1218,37 +1218,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Суб" @@ -1397,7 +1397,7 @@ msgid "Comment" msgstr "Камэнтар" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1545,8 +1545,8 @@ msgstr "Запрашаем у %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго " "стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s." @@ -1780,131 +1780,131 @@ msgstr "Тлумачыць SQL" msgid "Skip Explain SQL" msgstr "Не тлумачыць SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Без PHP-коду" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Стварыць PHP-код" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Абнавіць" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Не правяраць SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Праверыць SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Машыны" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Прафіляваньне" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Час" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Б" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "КiБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "МіБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "ГіБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "ТіБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "ПіБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "ЭіБ" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Першая старонка" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Папярэдняя старонка" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Апошняя старонка" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Перайсьці да базы дадзеных "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2127,8 +2127,8 @@ msgstr "імя табліцы" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна " "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " @@ -4532,8 +4532,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Невядомая мова: %1$s." @@ -5625,8 +5625,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц " "прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " diff --git a/po/be@latin.po b/po/be@latin.po index ea80b928a..4a3026cc4 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" +"Language: be@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: be@latin\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Pakazać usie" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -39,8 +39,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Pošuk" @@ -50,7 +50,7 @@ msgstr "Pošuk" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -281,7 +281,7 @@ msgstr "Pierajści da skapijavanaj bazy dadzienych" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -481,7 +481,7 @@ msgstr "Vykarystoŭvać tablicy" msgid "SQL query on database %s:" msgstr "SQL-zapyt da BD %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Vykanać zapyt" @@ -520,7 +520,7 @@ msgstr "%s supadzieńniaŭ u tablicy %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -567,13 +567,13 @@ msgstr "Unutry pola:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Ustavić" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -586,7 +586,7 @@ msgstr "Struktura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -596,7 +596,7 @@ msgstr "Vydalić" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Ačyścić" @@ -627,11 +627,11 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %" -"sdakumentacyi%s." +"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da " +"%sdakumentacyi%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -822,8 +822,8 @@ msgstr "Damp zachavany ŭ fajł %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, " "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " @@ -842,8 +842,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%" -"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " +"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca " +"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." #: import.php:337 @@ -1036,8 +1036,8 @@ msgid "Prev" msgstr "Papiaredniaja staronka" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1113,27 +1113,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1141,37 +1141,37 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Śn" @@ -1212,37 +1212,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sub" @@ -1392,7 +1392,7 @@ msgid "Comment" msgstr "Kamentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1540,8 +1540,8 @@ msgstr "Zaprašajem u %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab " "jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s." @@ -1774,132 +1774,132 @@ msgstr "Tłumačyć SQL" msgid "Skip Explain SQL" msgstr "Nie tłumačyć SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Biez PHP-kodu" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Abnavić" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Nie praviarać SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Pravieryć SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Mašyny" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Prafilavańnie" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Čas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dzion, %s hadzinaŭ, %s chvilinaŭ i %s sekundaŭ" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Pieršaja staronka" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Papiaredniaja staronka" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Apošniaja staronka" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Pierajści da bazy dadzienych \"%s\"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Isnuje viadomaja pamyłka z vykarystańniem parametra %s, hladzicie apisańnie " "na %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2122,8 +2122,8 @@ msgstr "imia tablicy" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu " "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " @@ -4521,8 +4521,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Nieviadomaja mova: %1$s." @@ -4697,8 +4697,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci " -"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %" -"sdakumentacyi%s." +"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ " +"%sdakumentacyi%s." #: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140 #: libraries/tbl_links.inc.php:141 @@ -4889,8 +4889,8 @@ msgstr "" "dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar " "vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar " "vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo " -"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U " -"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " +"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). " +"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " "parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), " "a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()." @@ -5614,8 +5614,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic " "pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, " diff --git a/po/bg.po b/po/bg.po index 5c71ab912..13eee30ac 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bulgarian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Покажи всички" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Търсене" @@ -48,7 +48,7 @@ msgstr "Търсене" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Прехвърляна към копираната база от дан msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -479,7 +479,7 @@ msgstr "Използвай таблицата" msgid "SQL query on database %s:" msgstr "SQL-заявка към базата от данни %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Изпълни заявката" @@ -518,7 +518,7 @@ msgstr "%s съвпадение(я) в таблица %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "В таблиците:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Вмъкване" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "Структура" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "Унищожаване" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Изчистване" @@ -625,8 +625,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -821,8 +821,8 @@ msgstr "Схемата(дъмп) беше записана във файл %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sdдокументацията%s за да намерите начин да избегнете това ограничение." @@ -1028,8 +1028,8 @@ msgid "Prev" msgstr "Предишен" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1105,27 +1105,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "януари" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "февруари" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "април" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1133,37 +1133,37 @@ msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "август" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "септември" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "октомври" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "ноември" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "декември" @@ -1204,37 +1204,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "сб" @@ -1379,7 +1379,7 @@ msgid "Comment" msgstr "Коментари" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1523,8 +1523,8 @@ msgstr "Добре дошли в %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1753,130 +1753,130 @@ msgstr "Explain SQL" msgid "Skip Explain SQL" msgstr "Пропусни Explain SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Създаване на PHP код" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Презареждане" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Пропусни Validate SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Валидирай SQL-а" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Хранилища" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Време" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "байта" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "КБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "ТБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "ПБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "ЕБ" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%e %B %Y в %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дена, %s часа, %s минути и %s секунди" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Начало" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Предишен" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Край" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Скочи към база от данни "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2097,8 +2097,8 @@ msgstr "име на таблицата" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4334,8 +4334,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -4511,8 +4511,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL валидатора не може да бъде инициализиран. Моля проверете дали сте " -"инсталирали необходимите PHP разширения, така както е описано в %" -"sдокументацията%s." +"инсталирали необходимите PHP разширения, така както е описано в " +"%sдокументацията%s." #: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140 #: libraries/tbl_links.inc.php:141 @@ -5392,8 +5392,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Забележка: phpMyAdmin взема потребителските привилегии директно от таблицата " "на привилегиите на MySQL. Съдържанието на тази таблица може да се различава " diff --git a/po/bn.po b/po/bn.po index 15722d1ad..9ba9b7af4 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bangla \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Show all" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "খুঁজুন" @@ -48,7 +48,7 @@ msgstr "খুঁজুন" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Switch to copied database" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -479,7 +479,7 @@ msgstr "টেবিল ব্যাবহারকারী" msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Submit Query" @@ -518,7 +518,7 @@ msgstr "%s match(es) inside table %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "Inside table(s):" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Insert" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "Structure" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "মুছে ফেল" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "খালি" @@ -625,8 +625,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -823,11 +823,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1034,8 +1034,8 @@ msgid "Prev" msgstr "পূর্ববর্তী" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1111,27 +1111,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "জানুয়ারী" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "ফেব্রুয়ারী" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "মার্চ" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "এপ্রিল" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1139,37 +1139,37 @@ msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "জুলাই" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "আগস্ট" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "সেপ্টেমবর" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "অক্টোবর" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "নভেম্বর" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "ডিসেম্বর" @@ -1210,37 +1210,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "রবিবার" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "সোমবার" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "মঙ্গলবার" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "বুধবার" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "বৃহস্পতিবার" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "শুক্রবার" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "শনিবার" @@ -1385,7 +1385,7 @@ msgid "Comment" msgstr "মন্তব্যসমূহ" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1530,8 +1530,8 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার " "করে একটি তৈরী করতে পারেন " @@ -1760,130 +1760,130 @@ msgstr "SQL ব্যাখ্যা কর" msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP কোড ছাড়া" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Refresh" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "ইঞ্জিনসমূহ" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "সময়" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "বাইট" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "কিলোবাইট" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "মেগাবাইট" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "গিগাবাইট" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "টেরাবাইট" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "পেটাবাইট" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "এক্সাবাইট" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s দিন, %s মাস, %s মিনিট and %s সেকেণ্ড" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "শুরু" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "পূর্ববর্তী" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "End" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1896,8 +1896,8 @@ msgid "" "extension. Please check your PHP configuration." msgstr "" " [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] extension লোড করা " -"যায়নি। আপনার পিএইচপি কনফিগারেশন পরীক্ষা করুন। Cannot load [a@http://php.net/%1" -"$s@Documentation][em]%1$s[/em][/a] extension. Please check your PHP " +"যায়নি। আপনার পিএইচপি কনফিগারেশন পরীক্ষা করুন। Cannot load [a@http://php.net/" +"%1$s@Documentation][em]%1$s[/em][/a] extension. Please check your PHP " "configuration." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 @@ -2106,12 +2106,12 @@ msgstr "টেবিল এর নাম" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:202 msgid "remember template" @@ -4456,8 +4456,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Unknown language: %1$s." @@ -5538,13 +5538,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1645 msgid "The selected user was not found in the privilege table." diff --git a/po/bs.po b/po/bs.po index e0851f96c..80e07b382 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Pretraživanje" @@ -48,7 +48,7 @@ msgstr "Pretraživanje" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -283,7 +283,7 @@ msgstr "Pređi na kopiranu tabelu" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -483,7 +483,7 @@ msgstr "Koristi tabele" msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Izvrši SQL upit" @@ -522,7 +522,7 @@ msgstr "%s pogodaka unutar tabele %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -569,13 +569,13 @@ msgstr "Unutar tabela:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Novi zapis" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -588,7 +588,7 @@ msgstr "Struktura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -598,7 +598,7 @@ msgstr "Odbaci" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Isprazni" @@ -629,8 +629,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -826,8 +826,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1027,8 +1027,8 @@ msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1104,27 +1104,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1132,37 +1132,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "dec" @@ -1203,37 +1203,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sub" @@ -1377,7 +1377,7 @@ msgid "Comment" msgstr "Komentari" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1519,8 +1519,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1746,128 +1746,128 @@ msgstr "Objasni SQL" msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Preskoči provjeru SQL-a" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Provjeri SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Vrijeme" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "bajta" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Početak" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Prethodna" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Kraj" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2087,8 +2087,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4309,8 +4309,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5348,8 +5348,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " diff --git a/po/ca.po b/po/ca.po index ce2e92d10..67b403f8c 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: catalan \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Mostra tot" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Cerca" @@ -48,7 +48,7 @@ msgstr "Cerca" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Canvia a la base de dades copiada" msgid "BLOB Repository" msgstr "Repositori BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -478,7 +478,7 @@ msgstr "Usa Taules" msgid "SQL query on database %s:" msgstr "Consulta SQL a la base de dades %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Executa consulta" @@ -517,7 +517,7 @@ msgstr "%s resultat(s) a la taula %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -564,13 +564,13 @@ msgstr "Camp interior:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Insereix" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -583,7 +583,7 @@ msgstr "Estructura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -593,7 +593,7 @@ msgstr "Elimina" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Buida" @@ -624,8 +624,8 @@ msgstr "El seguiment no està actiu." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." @@ -816,11 +816,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Probablement has triat d'enviar un arxiu massa gran. Consulta la %" -"sdocumentació%s per trobar formes de modificar aquest límit." +"Probablement has triat d'enviar un arxiu massa gran. Consulta la " +"%sdocumentació%s per trobar formes de modificar aquest límit." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1031,8 +1031,8 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1108,27 +1108,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1136,37 +1136,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" @@ -1207,37 +1207,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Dis" @@ -1385,7 +1385,7 @@ msgid "Comment" msgstr "Comentari" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1534,8 +1534,8 @@ msgstr "Benvingut a %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La raó més probable d'aixó és que no heu creat l'arxiu de configuració. " "Podriau voler utilitzar %1$ssetup script%2$s per crear-ne un." @@ -1769,130 +1769,130 @@ msgstr "Explica SQL" msgid "Skip Explain SQL" msgstr "Salta l'explicació de l'SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Sense codi PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Crea codi PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Refresca" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Salta la Validació de l'SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Valida l'SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motors" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Perfils" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Temps" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a les %H:%M:%S" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dies, %s hores, %s minuts i %s segons" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Inici" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Final" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Vés a la Base de Dades "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2113,12 +2113,12 @@ msgstr "nom de taula" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les " -"cadenes de formateig de temps. A més, es faràn aquestes transformacions: %3" -"$s. Altre text es deixarà sense variació." +"cadenes de formateig de temps. A més, es faràn aquestes transformacions: " +"%3$s. Altre text es deixarà sense variació." #: libraries/display_export.lib.php:202 msgid "remember template" @@ -4514,8 +4514,8 @@ msgstr "" "Quan s'utilitza la taula Host, aquest camp s'ignora i es fan servir els " "valors enmagatzemats a la taula Host en lloc seu." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Idioma desconegut: %1$s." @@ -4688,8 +4688,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu " -"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %" -"sdocumentació%s." +"instal·lats els mòduls de PHP necessaris tal i com s'indica a la " +"%sdocumentació%s." #: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140 #: libraries/tbl_links.inc.php:141 @@ -5608,8 +5608,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de " "permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels " diff --git a/po/cs.po b/po/cs.po index 62058c77b..6440a466c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-06-01 08:05+0200\n" "Last-Translator: Michal \n" "Language-Team: czech \n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" @@ -21,7 +21,7 @@ msgstr "" msgid "Show all" msgstr "Zobrazit vše" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -40,8 +40,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Vyhledávání" @@ -51,7 +51,7 @@ msgstr "Vyhledávání" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Přepnout na zkopírovanou databázi" msgid "BLOB Repository" msgstr "Skladiště BLOBů" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -469,7 +469,7 @@ msgstr "Použít tabulky" msgid "SQL query on database %s:" msgstr "SQL dotaz na databázi %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Provést dotaz" @@ -508,7 +508,7 @@ msgstr "%s odpovídající(ch) záznam(ů) v tabulce %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -553,13 +553,13 @@ msgstr "Uvnitř pole:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Vložit" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -572,7 +572,7 @@ msgstr "Struktura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -582,7 +582,7 @@ msgstr "Odstranit" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Vyprázdnit" @@ -613,8 +613,8 @@ msgstr "Sledování není zapnuté." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." @@ -805,8 +805,8 @@ msgstr "Výpis byl uložen do souboru %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." @@ -1011,8 +1011,8 @@ msgid "Prev" msgstr "Předchozí" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1072,63 +1072,63 @@ msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "pro" @@ -1161,37 +1161,37 @@ msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sob" @@ -1321,7 +1321,7 @@ msgid "Comment" msgstr "Komentář" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1468,8 +1468,8 @@ msgstr "Vítejte v %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." @@ -1697,128 +1697,128 @@ msgstr "Vysvětlit SQL" msgid "Skip Explain SQL" msgstr "Bez vysvětlení (EXPLAIN) SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Vytvořit PHP kód" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Obnovit" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Zkontrolovat SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "Upravit tento dotaz na této stránce" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "Upravit zde" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profilování" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Čas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d. %b %Y, %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dnů, %s hodin, %s minut a %s sekund" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Začátek" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Předchozí" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Konec" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Přejít na databázi „%s“." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnost %s je omezena známou chybou, viz %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2035,8 +2035,8 @@ msgstr "jméno tabulky" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít " "libovolné řetězce pro formátování data a času. Dále budou provedena " @@ -4382,8 +4382,8 @@ msgstr "" "Pokud je použita tabulka Host, toto pole je ignorováno a jsou použity " "hodnoty uložené v tabulce Host." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Neznámý jazyk: %1$s." @@ -4600,8 +4600,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" -"spopisy transformací%s" +"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na " +"%spopisy transformací%s" #: libraries/tbl_properties.inc.php:145 msgid "Transformation options" @@ -4634,8 +4634,8 @@ msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %" -"s dělá." +"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co " +"%s dělá." #: libraries/tbl_properties.inc.php:726 server_engines.php:58 #: tbl_operations.php:355 @@ -5396,8 +5396,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " "tabulek se může lišit od oprávnění, která server právě používá, pokud byly " @@ -7046,8 +7046,9 @@ msgstr "" "Nastavil jste typ autentizace [kbd]config[/kbd] a zadal jste uživatelské " "jméno a heslo pro automatické přihlášení, což není doporučená volba pro " "produkční servery. Kdokoli kdo zná URL phpMyAdminu může přímo přistoupit k " -"Vašemu phpMyAdmin panelu. Nastavte [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]typ autentizace[/a] na [kbd]cookie[/kbd] nebo [kbd]http[/kbd]." +"Vašemu phpMyAdmin panelu. Nastavte [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server]typ autentizace[/a] na [kbd]cookie[/kbd] nebo [kbd]http[/" +"kbd]." #: setup/lib/messages.inc.php:239 msgid "You should use mysqli for performance reasons" diff --git a/po/cy.po b/po/cy.po index ee4d8c346..c45079735 100644 --- a/po/cy.po +++ b/po/cy.po @@ -4,9 +4,9 @@ # FIRST AUTHOR , YEAR. msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.4.0\n" +"Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-06-07 20:23+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" @@ -22,7 +22,7 @@ msgstr "" msgid "Show all" msgstr "Dangos pob" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -41,8 +41,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Chwilio" @@ -52,7 +52,7 @@ msgstr "Chwilio" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -93,7 +93,7 @@ msgid "Use this value" msgstr "Defnyddiwch y gwerth hwn" #: db_create.php:46 -#, possible-php-format +#, php-format msgid "Database %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." @@ -216,12 +216,12 @@ msgid "The database name is empty!" msgstr "Mae enw'r gronfa ddata'n wag!" #: db_operations.php:236 -#, possible-php-format +#, php-format msgid "Database %s has been renamed to %s" msgstr "Cafodd cronfa ddata %s ei hailenwi i %s" #: db_operations.php:240 -#, possible-php-format +#, php-format msgid "Database %s has been copied to %s" msgstr "Cafodd y gronfa ddata %s ei chopïo i %s" @@ -260,7 +260,7 @@ msgstr "Defnyddiwch CREATE DATABASE cyn copïo" #: db_operations.php:475 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 #: libraries/export/sql.php:82 tbl_operations.php:536 -#, possible-php-format +#, php-format msgid "Add %s" msgstr "Ychwanegwch %s" @@ -281,7 +281,7 @@ msgstr "Newidiwch i'r gronfa ddata a gopïwyd" msgid "BLOB Repository" msgstr "Ystorfa BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -324,7 +324,7 @@ msgid "Collation" msgstr "Coladiad" #: db_operations.php:615 main.php:316 pdf_schema.php:34 -#, possible-php-format +#, php-format msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." @@ -380,7 +380,7 @@ msgid "Last check" msgstr "Gwiriad diwethaf" #: db_printview.php:222 db_structure.php:480 -#, possible-php-format +#, php-format msgid "%s table" msgid_plural "%s tables" msgstr[0] "%s tabl" @@ -465,11 +465,11 @@ msgid "Use Tables" msgstr "Defnyddiwch Dablau" #: db_qbe.php:640 -#, possible-php-format +#, php-format msgid "SQL query on database %s:" msgstr "Ymholiad SQL ar gronfa ddata %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Cyflwynwch yr Ymholiad" @@ -497,18 +497,18 @@ msgid "as regular expression" msgstr "fel mynegiad arferol (regular expression)" #: db_search.php:242 -#, possible-php-format +#, php-format msgid "Search results for \"%s\" %s:" msgstr "Canlyniadau chwilio am \"%s\" %s:" #: db_search.php:260 -#, possible-php-format +#, php-format msgid "%s match(es) inside table %s" msgstr "" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -523,7 +523,7 @@ msgid "Delete" msgstr "Dileu" #: db_search.php:285 -#, possible-php-format +#, php-format msgid "Total: %s match(es)" msgstr "" @@ -553,13 +553,13 @@ msgstr "Tu fewn colofn:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Mewnosod" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -572,7 +572,7 @@ msgstr "Strwythur" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -582,23 +582,23 @@ msgstr "Gollwng" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Gwagu" #: db_structure.php:316 libraries/tbl_links.inc.php:100 -#, possible-php-format +#, php-format msgid "Table %s has been emptied" msgstr "Cafodd tabl %s ei wagu" #: db_structure.php:326 libraries/tbl_links.inc.php:133 -#, possible-php-format +#, php-format msgid "View %s has been dropped" msgstr "Cafodd golwg %s ei ollwng" #: db_structure.php:326 libraries/tbl_links.inc.php:133 -#, possible-php-format +#, php-format msgid "Table %s has been dropped" msgstr "Cafodd tabl %s ei ollwng" @@ -611,10 +611,10 @@ msgid "Tracking is not active." msgstr "Nid yw tracio'n weithredol" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#, possible-php-format +#, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -633,7 +633,7 @@ msgid "Sum" msgstr "Swm" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#, possible-php-format +#, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" @@ -779,31 +779,31 @@ msgid "Selected export type has to be saved in file!" msgstr "" #: export.php:154 export.php:179 export.php:627 -#, possible-php-format +#, php-format msgid "Insufficient space to save the file %s." msgstr "" #: export.php:294 -#, possible-php-format +#, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" #: export.php:298 export.php:302 -#, possible-php-format +#, php-format msgid "The web server does not have permission to save the file %s." msgstr "" #: export.php:629 -#, possible-php-format +#, php-format msgid "Dump has been saved to file %s." msgstr "" #: import.php:60 -#, possible-php-format +#, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -814,7 +814,7 @@ msgstr "" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#, possible-php-format +#, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." @@ -840,12 +840,12 @@ msgid "Showing bookmark" msgstr "" #: import.php:403 sql.php:626 -#, possible-php-format +#, php-format msgid "Bookmark %s created" msgstr "" #: import.php:409 import.php:415 -#, possible-php-format +#, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" @@ -898,7 +898,7 @@ msgid "You are about to DISABLE a BLOB Repository!" msgstr "" #: js/messages.php:35 -#, possible-php-format +#, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" @@ -995,8 +995,8 @@ msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1056,63 +1056,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "" @@ -1145,37 +1145,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "" @@ -1300,7 +1300,7 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1312,12 +1312,12 @@ msgid "The primary key has been dropped" msgstr "" #: libraries/Index.class.php:476 -#, possible-php-format +#, php-format msgid "Index %s has been dropped" msgstr "" #: libraries/Index.class.php:576 -#, possible-php-format +#, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." @@ -1337,21 +1337,21 @@ msgid "Error" msgstr "" #: libraries/Message.class.php:282 -#, possible-php-format +#, php-format msgid "%1$d row affected." msgid_plural "%1$d rows affected." msgstr[0] "" msgstr[1] "" #: libraries/Message.class.php:301 -#, possible-php-format +#, php-format msgid "%1$d row deleted." msgid_plural "%1$d rows deleted." msgstr[0] "" msgstr[1] "" #: libraries/Message.class.php:320 -#, possible-php-format +#, php-format msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "" @@ -1363,17 +1363,17 @@ msgid "" msgstr "" #: libraries/StorageEngine.class.php:359 -#, possible-php-format +#, php-format msgid "%s is available on this MySQL server." msgstr "" #: libraries/StorageEngine.class.php:362 -#, possible-php-format +#, php-format msgid "%s has been disabled for this MySQL server." msgstr "" #: libraries/StorageEngine.class.php:366 -#, possible-php-format +#, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" @@ -1386,17 +1386,17 @@ msgid "Invalid table name" msgstr "" #: libraries/Table.class.php:1048 -#, possible-php-format +#, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" #: libraries/Table.class.php:1132 -#, possible-php-format +#, php-format msgid "Table %s has been renamed to %s" msgstr "" #: libraries/Theme.class.php:162 -#, possible-php-format +#, php-format msgid "No valid image path for theme %s found!" msgstr "" @@ -1409,17 +1409,17 @@ msgid "take it" msgstr "" #: libraries/Theme_Manager.class.php:115 -#, possible-php-format +#, php-format msgid "Default theme %s not found!" msgstr "" #: libraries/Theme_Manager.class.php:153 -#, possible-php-format +#, php-format msgid "Theme %s not found!" msgstr "" #: libraries/Theme_Manager.class.php:221 -#, possible-php-format +#, php-format msgid "Theme path not found for theme %s!" msgstr "" @@ -1435,15 +1435,15 @@ msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 #: test/theme.php:152 -#, possible-php-format +#, php-format msgid "Welcome to %s" msgstr "" #: libraries/auth/config.auth.lib.php:107 -#, possible-php-format +#, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1498,7 +1498,7 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:675 #: libraries/auth/signon.auth.lib.php:185 -#, possible-php-format +#, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1513,7 +1513,7 @@ msgid "Wrong username/password. Access denied." msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:118 -#, possible-php-format +#, php-format msgid "File %s does not contain any key id" msgstr "" @@ -1572,7 +1572,7 @@ msgid "" msgstr "" #: libraries/common.inc.php:594 -#, possible-php-format +#, php-format msgid "Could not load default configuration from: %1$s" msgstr "" @@ -1583,12 +1583,12 @@ msgid "" msgstr "" #: libraries/common.inc.php:629 -#, possible-php-format +#, php-format msgid "Invalid server index: %s" msgstr "" #: libraries/common.inc.php:636 -#, possible-php-format +#, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1603,12 +1603,12 @@ msgid "Invalid authentication method set in configuration:" msgstr "" #: libraries/common.inc.php:926 -#, possible-php-format +#, php-format msgid "You should upgrade to %s %s or later." msgstr "" #: libraries/common.lib.php:147 -#, possible-php-format +#, php-format msgid "Max: %s%s" msgstr "" @@ -1650,135 +1650,135 @@ msgstr "Esbonio SQL" msgid "Skip Explain SQL" msgstr "Sgipio Esbonio SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "" #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1898 -#, possible-php-format +#: libraries/common.lib.php:1907 +#, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "" -#: libraries/common.lib.php:2421 -#, possible-php-format +#: libraries/common.lib.php:2430 +#, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2441 -#, possible-php-format +#: libraries/common.lib.php:2450 +#, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "" #: libraries/core.lib.php:284 libraries/dbg/setup.php:22 -#, possible-php-format +#, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " "extension. Please check your PHP configuration." @@ -1796,7 +1796,7 @@ msgid "Name" msgstr "" #: libraries/db_links.inc.php:45 -#, possible-php-format +#, php-format msgid "Database %s has been dropped." msgstr "" @@ -1928,7 +1928,7 @@ msgid "Table must have at least one column." msgstr "" #: libraries/display_create_table.lib.php:48 -#, possible-php-format +#, php-format msgid "Create table on database %s" msgstr "" @@ -1941,7 +1941,7 @@ msgid "Could not load export plugins, please check your installation!" msgstr "" #: libraries/display_export.lib.php:107 -#, possible-php-format +#, php-format msgid "Dump %s row(s) starting at row # %s" msgstr "" @@ -1954,7 +1954,7 @@ msgid "Save as file" msgstr "" #: libraries/display_export.lib.php:134 -#, possible-php-format +#, php-format msgid "Save on server in %s directory" msgstr "" @@ -1979,11 +1979,11 @@ msgid "table name" msgstr "" #: libraries/display_export.lib.php:162 -#, possible-php-format +#, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -2063,7 +2063,7 @@ msgid "web server upload directory" msgstr "" #: libraries/display_import.lib.php:212 -#, possible-php-format +#, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" @@ -2072,7 +2072,7 @@ msgid "Partial import" msgstr "" #: libraries/display_import.lib.php:225 -#, possible-php-format +#, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" @@ -2138,7 +2138,7 @@ msgid "Language" msgstr "" #: libraries/display_tbl.lib.php:304 -#, possible-php-format +#, php-format msgid "%d is not valid row number." msgstr "" @@ -2159,7 +2159,7 @@ msgid "vertical" msgstr "" #: libraries/display_tbl.lib.php:324 -#, possible-php-format +#, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" @@ -2253,7 +2253,7 @@ msgid "total" msgstr "" #: libraries/display_tbl.lib.php:1970 sql.php:524 -#, possible-php-format +#, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2954,22 +2954,22 @@ msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#, possible-php-format +#, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" #: libraries/import/csv.php:119 -#, possible-php-format +#, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#, possible-php-format +#, php-format msgid "Invalid format of CSV input on line %d." msgstr "" #: libraries/import/csv.php:312 -#, possible-php-format +#, php-format msgid "Invalid column count in CSV input on line %d." msgstr "" @@ -4154,9 +4154,9 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 -#, possible-php-format +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 +#, php-format msgid "Unknown language: %1$s." msgstr "" @@ -4215,12 +4215,12 @@ msgid "Target database" msgstr "" #: libraries/sql_query_form.lib.php:223 -#, possible-php-format +#, php-format msgid "Run SQL query/queries on server %s" msgstr "" #: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:265 -#, possible-php-format +#, php-format msgid "Run SQL query/queries on database %s" msgstr "" @@ -4308,7 +4308,7 @@ msgid "Unknown Punctuation String" msgstr "" #: libraries/sqlvalidator.lib.php:68 -#, possible-php-format +#, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." @@ -4320,7 +4320,7 @@ msgid "Table seems to be empty!" msgstr "" #: libraries/tbl_links.inc.php:149 -#, possible-php-format +#, php-format msgid "Tracking of %s.%s is activated." msgstr "" @@ -4348,7 +4348,7 @@ msgid "Attributes" msgstr "" #: libraries/tbl_properties.inc.php:137 -#, possible-php-format +#, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" @@ -4376,7 +4376,7 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:580 transformation_overview.php:58 -#, possible-php-format +#, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." @@ -4399,7 +4399,7 @@ msgid "Save" msgstr "" #: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 -#, possible-php-format +#, php-format msgid "Add %s column(s)" msgstr "" @@ -4618,14 +4618,14 @@ msgid "" msgstr "" #: main.php:346 -#, possible-php-format +#, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" #: main.php:358 -#, possible-php-format +#, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." @@ -4658,7 +4658,7 @@ msgid "Please select a database" msgstr "" #: pdf_pages.php:41 pdf_pages.php:47 pdf_pages.php:53 pdf_pages.php:58 -#, possible-php-format +#, php-format msgid "%s table not found or not set in %s" msgstr "" @@ -4697,17 +4697,17 @@ msgid "" msgstr "" #: pdf_schema.php:636 -#, possible-php-format +#, php-format msgid "The %s table doesn't exist!" msgstr "" #: pdf_schema.php:672 -#, possible-php-format +#, php-format msgid "Please configure the coordinates for table %s" msgstr "" #: pdf_schema.php:995 -#, possible-php-format +#, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -4882,7 +4882,7 @@ msgid "No databases selected." msgstr "" #: server_databases.php:63 -#, possible-php-format +#, php-format msgid "%s databases have been dropped successfully." msgstr "" @@ -4909,7 +4909,7 @@ msgid "Jump to database" msgstr "" #: server_databases.php:289 -#, possible-php-format +#, php-format msgid "Check privileges for database "%s"." msgstr "" @@ -4987,7 +4987,7 @@ msgid "No user found." msgstr "" #: server_privileges.php:848 -#, possible-php-format +#, php-format msgid "The user %s already exists!" msgstr "" @@ -4996,22 +4996,22 @@ msgid "You have added a new user." msgstr "" #: server_privileges.php:1152 -#, possible-php-format +#, php-format msgid "You have updated the privileges for %s." msgstr "" #: server_privileges.php:1176 -#, possible-php-format +#, php-format msgid "You have revoked the privileges for %s" msgstr "" #: server_privileges.php:1212 -#, possible-php-format +#, php-format msgid "The password for %s was changed successfully." msgstr "" #: server_privileges.php:1232 -#, possible-php-format +#, php-format msgid "Deleting %s" msgstr "" @@ -5071,12 +5071,12 @@ msgid "Drop the databases that have the same names as the users." msgstr "" #: server_privileges.php:1597 -#, possible-php-format +#, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1645 @@ -5144,12 +5144,12 @@ msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" #: server_privileges.php:2003 -#, possible-php-format +#, php-format msgid "Grant all privileges on database "%s"" msgstr "" #: server_privileges.php:2026 -#, possible-php-format +#, php-format msgid "Users having access to "%s"" msgstr "" @@ -5166,12 +5166,12 @@ msgid "wildcard" msgstr "" #: server_processlist.php:22 -#, possible-php-format +#, php-format msgid "Thread %s was successfully killed." msgstr "" #: server_processlist.php:24 -#, possible-php-format +#, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" @@ -5185,7 +5185,7 @@ msgid "Unknown error" msgstr "" #: server_replication.php:58 -#, possible-php-format +#, php-format msgid "Unable to connect to master %s." msgstr "" @@ -5199,7 +5199,7 @@ msgid "Unable to change master" msgstr "" #: server_replication.php:74 -#, possible-php-format +#, php-format msgid "Master server changed succesfully to %s" msgstr "" @@ -5216,7 +5216,7 @@ msgid "Show connected slaves" msgstr "" #: server_replication.php:210 -#, possible-php-format +#, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" @@ -5298,7 +5298,7 @@ msgid "Reset slave" msgstr "" #: server_replication.php:327 -#, possible-php-format +#, php-format msgid "SQL Thread %s only" msgstr "" @@ -5311,7 +5311,7 @@ msgid "Stop" msgstr "" #: server_replication.php:328 -#, possible-php-format +#, php-format msgid "IO Thread %s only" msgstr "" @@ -5336,7 +5336,7 @@ msgid "errors." msgstr "" #: server_replication.php:355 -#, possible-php-format +#, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" @@ -5412,7 +5412,7 @@ msgid "Reset" msgstr "" #: server_status.php:350 -#, possible-php-format +#, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" @@ -5482,7 +5482,7 @@ msgid "Aborted" msgstr "" #: server_status.php:490 -#, possible-php-format +#, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." @@ -5514,7 +5514,7 @@ msgstr "" #: server_synchronize.php:122 server_synchronize.php:125 tbl_create.php:82 #: tbl_get_field.php:20 -#, possible-php-format +#, php-format msgid "'%s' database does not exist." msgstr "" @@ -5599,7 +5599,7 @@ msgid "Current connection" msgstr "" #: server_synchronize.php:1152 -#, possible-php-format +#, php-format msgid "Configuration: %s" msgstr "" @@ -5723,7 +5723,7 @@ msgid "Incorrect value" msgstr "" #: setup/lib/FormDisplay.tpl.php:182 setup/lib/messages.inc.php:328 -#, possible-php-format +#, php-format msgid "Set value: %s" msgstr "" @@ -5814,7 +5814,7 @@ msgid "Bzip2" msgstr "" #: setup/lib/messages.inc.php:32 -#, possible-php-format +#, php-format msgid "" "[a@?page=form&formset=features#tab_Import_export]Bzip2 compression and " "decompression[/a] requires functions (%s) which are unavailable on this " @@ -5966,7 +5966,7 @@ msgid "Submitted form contains errors" msgstr "" #: setup/lib/messages.inc.php:74 -#, possible-php-format +#, php-format msgid "Incorrect IP address: %s" msgstr "" @@ -5975,7 +5975,7 @@ msgid "Not a valid port number" msgstr "" #: setup/lib/messages.inc.php:77 -#, possible-php-format +#, php-format msgid "Missing data for %s" msgstr "" @@ -6245,7 +6245,7 @@ msgid "GZip" msgstr "" #: setup/lib/messages.inc.php:151 -#, possible-php-format +#, php-format msgid "" "[a@?page=form&formset=features#tab_Import_export]GZip compression and " "decompression[/a] requires functions (%s) which are unavailable on this " @@ -6296,7 +6296,7 @@ msgid "Insecure connection" msgstr "" #: setup/lib/messages.inc.php:165 -#, possible-php-format +#, php-format msgid "" "If your server is also configured to accept HTTPS requests follow [a@%s]this " "link[/a] to use a secure connection." @@ -6584,7 +6584,7 @@ msgid "Save directory" msgstr "" #: setup/lib/messages.inc.php:238 -#, possible-php-format +#, php-format msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -6731,7 +6731,7 @@ msgid "Disable use of INFORMATION_SCHEMA" msgstr "" #: setup/lib/messages.inc.php:271 -#, possible-php-format +#, php-format msgid "" "If you feel this is necessary, use additional protection settings - [a@?" "page=servers&mode=edit&id=%1$d#tab_Server_config]host authentication" @@ -7146,14 +7146,14 @@ msgid "Got invalid version string from server" msgstr "" #: setup/lib/messages.inc.php:371 -#, possible-php-format +#, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" #: setup/lib/messages.inc.php:372 -#, possible-php-format +#, php-format msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." @@ -7183,14 +7183,14 @@ msgid "" msgstr "" #: setup/lib/messages.inc.php:379 -#, possible-php-format +#, php-format msgid "" "[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] " "requires functions (%s) which are unavailable on this system." msgstr "" #: setup/lib/messages.inc.php:380 -#, possible-php-format +#, php-format msgid "" "[a@?page=form&formset=features#tab_Import_export]Zip decompression[/a] " "requires functions (%s) which are unavailable on this system." @@ -7201,7 +7201,7 @@ msgid "ZIP" msgstr "" #: sql.php:496 tbl_replace.php:386 -#, possible-php-format +#, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7214,7 +7214,7 @@ msgid "Showing SQL query" msgstr "" #: sql.php:639 -#, possible-php-format +#, php-format msgid "Problems with indexes of table `%s`" msgstr "" @@ -7223,7 +7223,7 @@ msgid "Label" msgstr "" #: tbl_addfield.php:189 tbl_alter.php:103 tbl_indexes.php:98 -#, possible-php-format +#, php-format msgid "Table %1$s has been altered successfully" msgstr "" @@ -7290,17 +7290,17 @@ msgid "" msgstr "" #: tbl_change.php:1209 -#, possible-php-format +#, php-format msgid "Restart insertion with %s rows" msgstr "" #: tbl_create.php:62 -#, possible-php-format +#, php-format msgid "Table %s already exists!" msgstr "" #: tbl_create.php:249 -#, possible-php-format +#, php-format msgid "Table %1$s has been created." msgstr "" @@ -7342,7 +7342,7 @@ msgid "" msgstr "" #: tbl_indexes.php:251 -#, possible-php-format +#, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -7359,12 +7359,12 @@ msgid "Can't copy table to same one!" msgstr "" #: tbl_move_copy.php:56 -#, possible-php-format +#, php-format msgid "Table %s has been moved to %s." msgstr "" #: tbl_move_copy.php:58 -#, possible-php-format +#, php-format msgid "Table %s has been copied to %s." msgstr "" @@ -7409,7 +7409,7 @@ msgid "Defragment table" msgstr "" #: tbl_operations.php:630 -#, possible-php-format +#, php-format msgid "Table %s has been flushed" msgstr "" @@ -7422,7 +7422,7 @@ msgid "Partition maintenance" msgstr "" #: tbl_operations.php:659 -#, possible-php-format +#, php-format msgid "Partition %s" msgstr "" @@ -7495,7 +7495,7 @@ msgid " Row size " msgstr "" #: tbl_relation.php:279 -#, possible-php-format +#, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -7551,17 +7551,17 @@ msgid "None" msgstr "" #: tbl_structure.php:374 -#, possible-php-format +#, php-format msgid "Column %s has been dropped" msgstr "" #: tbl_structure.php:385 -#, possible-php-format +#, php-format msgid "A primary key has been added on %s" msgstr "" #: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428 -#, possible-php-format +#, php-format msgid "An index has been added on %s" msgstr "" @@ -7586,12 +7586,12 @@ msgid "At Beginning of Table" msgstr "" #: tbl_structure.php:556 -#, possible-php-format +#, php-format msgid "After %s" msgstr "" #: tbl_structure.php:594 -#, possible-php-format +#, php-format msgid "Create an index on  %s columns" msgstr "" @@ -7600,22 +7600,22 @@ msgid "partitioned" msgstr "" #: tbl_tracking.php:114 -#, possible-php-format +#, php-format msgid "Tracking report for table `%s`" msgstr "" #: tbl_tracking.php:187 -#, possible-php-format +#, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" #: tbl_tracking.php:195 -#, possible-php-format +#, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" #: tbl_tracking.php:203 -#, possible-php-format +#, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" @@ -7642,7 +7642,7 @@ msgid "Close" msgstr "" #: tbl_tracking.php:262 -#, possible-php-format +#, php-format msgid "Version %s snapshot (SQL code)" msgstr "" @@ -7651,7 +7651,7 @@ msgid "Tracking statements" msgstr "" #: tbl_tracking.php:397 tbl_tracking.php:504 -#, possible-php-format +#, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" @@ -7688,7 +7688,7 @@ msgid "SQL execution" msgstr "" #: tbl_tracking.php:521 -#, possible-php-format +#, php-format msgid "Export as %s" msgstr "" @@ -7701,7 +7701,7 @@ msgid "Version" msgstr "" #: tbl_tracking.php:640 -#, possible-php-format +#, php-format msgid "Deactivate tracking for %s.%s" msgstr "" @@ -7710,7 +7710,7 @@ msgid "Deactivate now" msgstr "" #: tbl_tracking.php:653 -#, possible-php-format +#, php-format msgid "Activate tracking for %s.%s" msgstr "" @@ -7719,7 +7719,7 @@ msgid "Activate now" msgstr "" #: tbl_tracking.php:668 -#, possible-php-format +#, php-format msgid "Create version %s of %s.%s" msgstr "" @@ -7736,7 +7736,7 @@ msgid "Create version" msgstr "" #: themes.php:32 -#, possible-php-format +#, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." diff --git a/po/da.po b/po/da.po index e34745f0c..39881ffc9 100644 --- a/po/da.po +++ b/po/da.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: danish \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Vis alle" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Søg" @@ -48,7 +48,7 @@ msgstr "Søg" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Skift til den kopierede database" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -478,7 +478,7 @@ msgstr "Benyt tabeller" msgid "SQL query on database %s:" msgstr "SQL-forespørgsel til database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Send forespørgsel" @@ -517,7 +517,7 @@ msgstr "%s hit(s) i tabel %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -564,13 +564,13 @@ msgstr "Indeni tabel(ler):" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Indsæt" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -583,7 +583,7 @@ msgstr "Struktur" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -593,7 +593,7 @@ msgstr "Slet" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tøm" @@ -624,8 +624,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -815,11 +815,11 @@ msgstr "Dump er blevet gemt i filen %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %" -"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " +"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst " +"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " "begrænsning." #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1029,8 +1029,8 @@ msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1106,27 +1106,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1134,37 +1134,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "dec" @@ -1205,37 +1205,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "lør" @@ -1380,7 +1380,7 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1526,8 +1526,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. " "Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en." @@ -1756,130 +1756,130 @@ msgstr "Forklar SQL" msgid "Skip Explain SQL" msgstr "Spring over Forklar SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "uden PHP-kode" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Fremstil PHP-kode" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Opdatér" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Spring over Validér SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validér SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Lagre" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Tid" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %m %Y kl. %H:%M:%S" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dage, %s timer, %s minutter og %s sekunder" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Start" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Forrige" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Slut" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Hop til database "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2100,8 +2100,8 @@ msgstr "tabelnavn" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede " "strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst " @@ -4442,8 +4442,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Ukendt sprog: %1$s." @@ -5525,14 +5525,14 @@ msgstr "Drop databaser der har samme navne som brugernes." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs " "privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra " "privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle " -"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%" -"s før du fortsætter." +"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" +"%s før du fortsætter." #: server_privileges.php:1645 msgid "The selected user was not found in the privilege table." diff --git a/po/de.po b/po/de.po index 9228a7ebd..50585a8ce 100644 --- a/po/de.po +++ b/po/de.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-06-03 21:04+0200\n" "Last-Translator: \n" "Language-Team: german \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Alles anzeigen" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Suche" @@ -49,7 +49,7 @@ msgstr "Suche" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Zu kopierter Datenbank wechseln" msgid "BLOB Repository" msgstr "BLOB-Repository" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -470,7 +470,7 @@ msgstr "Verwendete Tabellen" msgid "SQL query on database %s:" msgstr "SQL-Befehl in der Datenbank %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "SQL-Befehl ausführen" @@ -509,7 +509,7 @@ msgstr "%s Treffer in der Tabelle %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -556,13 +556,13 @@ msgstr "Im Feld:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Einfügen" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -575,7 +575,7 @@ msgstr "Struktur" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -585,7 +585,7 @@ msgstr "Löschen" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Leeren" @@ -616,11 +616,11 @@ msgstr "Tracking ist nicht aktiviert." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die %" -"sDokumentation%s." +"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die " +"%sDokumentation%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -809,11 +809,11 @@ msgstr "Dump (Schema) wurde in Datei %s gespeichert." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %" -"sDokumentation%s zur Lösung diese Problems." +"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die " +"%sDokumentation%s zur Lösung diese Problems." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1018,8 +1018,8 @@ msgid "Prev" msgstr "Vorherige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1079,63 +1079,63 @@ msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Januar" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Februar" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "März" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "August" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "November" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dezember" @@ -1168,37 +1168,37 @@ msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sa" @@ -1327,7 +1327,7 @@ msgid "Comment" msgstr "Kommentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1474,8 +1474,8 @@ msgstr "Willkommen bei %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt " "haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine " @@ -1713,130 +1713,130 @@ msgstr "SQL erklären" msgid "Skip Explain SQL" msgstr "SQL-Erklärung umgehen" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "ohne PHP-Code" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-Code erzeugen" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Aktualisieren" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "SQL-Validierung umgehen" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL validieren" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "Inline-Bearbeiten dieses SQL-Befehls" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Messen" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Dauer" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y um %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Anfang" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Vorherige" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Ende" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Zur Datenbank "%s" springen." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Die Funktion \"%s\" wird durch einen bekannten Fehler beeinträchtigt, siehe " "%s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2060,8 +2060,8 @@ msgstr "Tabellen-Name" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Dieser Wert wird mit %1$sstrftime%2$s geparst, Sie können also Platzhalter " "für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen " @@ -4477,8 +4477,8 @@ msgstr "" "Wenn die Host-Tabelle aktiv ist, wird dieses Feld ignoriert und stattdessen " "die Werte aus der Host-Tabelle verwendet." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Unbekannte Sprache: \"%1$s\"." @@ -4743,8 +4743,8 @@ msgid "" "author what %s does." msgstr "" "Für diese Umwandlung ist keine Beschreibung verfügbar.
Für weitere " -"Informationen wenden Sie sich bitte an den Autoren der Funktion "%" -"s"." +"Informationen wenden Sie sich bitte an den Autoren der Funktion "" +"%s"." #: libraries/tbl_properties.inc.php:726 server_engines.php:58 #: tbl_operations.php:355 @@ -5579,8 +5579,8 @@ msgstr "Die gleichnamigen Datenbanken löschen." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-" "Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, " diff --git a/po/el.po b/po/el.po index 2afbccb15..bafcbd0be 100644 --- a/po/el.po +++ b/po/el.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-30 23:16+0200\n" "Last-Translator: Michal \n" "Language-Team: greek \n" +"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Εμφάνιση όλων" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Αναζήτηση" @@ -49,7 +49,7 @@ msgstr "Αναζήτηση" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομέν msgid "BLOB Repository" msgstr "Αποθήκη BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -476,7 +476,7 @@ msgstr "Χρήση Πινάκων" msgid "SQL query on database %s:" msgstr "Εντολή SQL στη βάση %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Υποβολή ερωτήματος" @@ -515,7 +515,7 @@ msgstr "%s αποτελέσματα στον πίνακα %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -562,13 +562,13 @@ msgstr "Εσωτερικό πεδίο:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Προσθήκη" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -581,7 +581,7 @@ msgstr "Δομή" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -591,7 +591,7 @@ msgstr "Διαγραφή" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Άδειασμα" @@ -622,11 +622,11 @@ msgstr "Η παρακολούθηση δεν έιναι ενεργοποιημέ #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %" -"sτεκμηρίωση%s." +"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην " +"%sτεκμηρίωση%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -816,11 +816,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %" -"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." +"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " +"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1029,8 +1029,8 @@ msgid "Prev" msgstr "Προηγούμενο" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1098,64 +1098,64 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Ιανουαρίου" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Φεβρουαρίου" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Μαρτίου" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Απριλίου" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy msgctxt "Short month name" msgid "May" msgstr "Μαΐου" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Ιουνίου" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Ιουλίου" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Αυγούστου" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Σεπτεμβρίου" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Οκτωβρίου" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Νοεμβρίου" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Δεκεμβρίου" @@ -1192,37 +1192,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Κυριακή" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Δευτέρα" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Τρίτη" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Τετάρτη" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Πέμπτη" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Παρασκευή" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Σάββατο" @@ -1361,7 +1361,7 @@ msgid "Comment" msgstr "Σχόλιο" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1507,8 +1507,8 @@ msgstr "Καλωσήρθατε στο %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε " "να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα." @@ -1745,129 +1745,129 @@ msgstr "Ανάλυση SQL" msgid "Skip Explain SQL" msgstr "Χωρίς ανάλυση SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "χωρίς κώδικα PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Ανανέωση" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Παράβλεψη επικύρωσης SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Επικύρωση SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy msgid "Inline" msgstr "Μηχανές" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Δημιουργία προφίλ" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Χρόνος" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y στις %H:%M:%S" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Κορυφή" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Προηγούμενο" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Τέλος" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Μεταπήδηση στην βάση «%s»." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα. Δείτε %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "Κώδικας SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2086,8 +2086,8 @@ msgstr "όνομα πίνακα" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι " "μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν " @@ -4519,8 +4519,8 @@ msgstr "" "Όταν χρησιμοποιείται ο Οικείος πίνακας, παραβλέπεται αυτό το πεδίο και " "χρησιμοποιούνται τιμές που είναι αποθηκευμένες στον Οικείο πίνακα." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Άγνωστη γλώσσα: %1$s." @@ -4693,8 +4693,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Ο επικυρωτής SQL δεν μπόρεσε να ενεργοποιηθεί. Παρακαλώ ελέγξτε ότι έχετε " -"εγκαταστήσει της απαραίτητες επεκτάσεις της php όπως περιγράφεται στην %" -"sτεκμηρίωση%s." +"εγκαταστήσει της απαραίτητες επεκτάσεις της php όπως περιγράφεται στην " +"%sτεκμηρίωση%s." #: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140 #: libraries/tbl_links.inc.php:141 @@ -5618,8 +5618,8 @@ msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδ msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από " "τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί " @@ -7330,8 +7330,8 @@ msgstr "" "Ορίζετε τον τύπο επικύρωσης [kbd]ρύθμισης[/kbd] και περιλαμβάνει όνομα " "χρήστη και κωδικό πρόσβασης για αυτόματη σύνδεση, αν και δεν προτείνεται. " "Όποιος γνωρίζει ή υποθέτει τη διεύθυνση URL του phpMyAdmin μπορεί να έχει " -"άμεση πρόσβαση. Ορίστε τον [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]τύπο επικύρωσης[/a] σε [kbd]cookie[/kbd] ή [kbd]http[/kbd]." +"άμεση πρόσβαση. Ορίστε τον [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server]τύπο επικύρωσης[/a] σε [kbd]cookie[/kbd] ή [kbd]http[/kbd]." #: setup/lib/messages.inc.php:239 msgid "You should use mysqli for performance reasons" @@ -7497,8 +7497,8 @@ msgid "" "to." msgstr "" "Αν νομίζετε ότι είναι απαραίτητο, χρησιμοποιήστε πρόσθετες ρυθμίσεις " -"προστασίας - ρυθμίσεις [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server_config]επικύρωση διακομιστή[/a] και [a@?page=form&" +"προστασίας - ρυθμίσεις [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server_config]επικύρωση διακομιστή[/a] και [a@?page=form&" "formset=features#tab_Security]λίστα αξιόπιστων διακομιστών[/a]. Ωστόσο, η " "βασισμένη στις ΙΡ προστασία δεν είναι αξιόπιστη αν ο πάροχός έχει χιλιάδες " "χρήστες που συνδέονται." @@ -8825,8 +8825,9 @@ msgstr "Μετονομασία πίνακα σε" #~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. " #~ "Please check your PHP configuration." #~ msgstr "" -#~ "δεν ήταν δυνατή η φόρτωση της επέκτασης [a@http://php.net/%1" -#~ "$s@Documentation][em]%1$s[/em][/a], παρακαλώ ελέγξτε τις ρυθμίσεις της PHP" +#~ "δεν ήταν δυνατή η φόρτωση της επέκτασης [a@http://php.net/" +#~ "%1$s@Documentation][em]%1$s[/em][/a], παρακαλώ ελέγξτε τις ρυθμίσεις της " +#~ "PHP" #~ msgid "" #~ "This server is not configured as master in a replication process. Would " @@ -8892,8 +8893,8 @@ msgstr "Μετονομασία πίνακα σε" #~ "The "deleted" users will still be able to access the server as " #~ "usual until the privileges are reloaded." #~ msgstr "" -#~ "Οι «διεγραφθέντες» χρήστες θα συνεχίσουν να έχουν πρόσβαση στον διακομιστή " -#~ "μέχρις ότου να επαναφορτωθούν οι πίνακες δικαιωμάτων." +#~ "Οι «διεγραφθέντες» χρήστες θα συνεχίσουν να έχουν πρόσβαση στον " +#~ "διακομιστή μέχρις ότου να επαναφορτωθούν οι πίνακες δικαιωμάτων." #~ msgid "Just delete the users from the privilege tables." #~ msgstr "Απλή διαγραφή των χρηστών από τους πίνακες δικαιωμάτων." diff --git a/po/en_GB.po b/po/en_GB.po index e12821d71..b95a0831d 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-06-04 22:01+0200\n" "Last-Translator: Michal \n" "Language-Team: english-gb \n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Show all" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Search" @@ -49,7 +49,7 @@ msgstr "Search" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -111,7 +111,6 @@ msgstr "Table comments" #: tbl_indexes.php:189 tbl_printview.php:142 tbl_relation.php:402 #: tbl_select.php:135 tbl_structure.php:177 tbl_tracking.php:273 #: tbl_tracking.php:324 -#| msgid "Column names" msgid "Column" msgstr "Column" @@ -279,7 +278,7 @@ msgstr "Switch to copied database" msgid "BLOB Repository" msgstr "BLOB Repository" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -447,12 +446,10 @@ msgid "Modify" msgstr "Modify" #: db_qbe.php:584 -#| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Add/Delete criteria rows" #: db_qbe.php:596 -#| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Add/Delete columns" @@ -469,7 +466,7 @@ msgstr "Use Tables" msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Submit Query" @@ -508,7 +505,7 @@ msgstr "%s match(es) inside table %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -548,19 +545,18 @@ msgid "Inside table(s):" msgstr "Inside table(s):" #: db_search.php:355 -#| msgid "Inside field:" msgid "Inside column:" msgstr "Inside column:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Insert" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -573,7 +569,7 @@ msgstr "Structure" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -583,7 +579,7 @@ msgstr "Drop" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Empty" @@ -614,11 +610,11 @@ msgstr "Tracking is not active." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -806,11 +802,11 @@ msgstr "Dump has been saved to file %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -996,7 +992,6 @@ msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" #: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548 -#| msgid "Choose field to display" msgid "Choose column to display" msgstr "Choose column to display" @@ -1011,8 +1006,8 @@ msgid "Prev" msgstr "Prev" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1072,63 +1067,63 @@ msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" @@ -1161,37 +1156,37 @@ msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sat" @@ -1321,7 +1316,7 @@ msgid "Comment" msgstr "Comment" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1466,11 +1461,11 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:116 msgid "" @@ -1694,128 +1689,128 @@ msgstr "Explain SQL" msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Without PHP Code" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Create PHP Code" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Refresh" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "Inline edit of this query" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Time" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Previous" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "End" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1972,7 +1967,6 @@ msgid "No Privileges" msgstr "No Privileges" #: libraries/display_create_table.lib.php:41 -#| msgid "Table must have at least one field." msgid "Table must have at least one column." msgstr "Table must have at least one column." @@ -1982,7 +1976,6 @@ msgid "Create table on database %s" msgstr "Create table on database %s" #: libraries/display_create_table.lib.php:57 -#| msgid "Number of fields" msgid "Number of columns" msgstr "Number of columns" @@ -1992,7 +1985,6 @@ msgstr "Could not load export plug-ins, please check your installation!" #: libraries/display_export.lib.php:107 #, php-format -#| msgid "Dump %s row(s) starting at record # %s" msgid "Dump %s row(s) starting at row # %s" msgstr "Dump %s row(s) starting at row # %s" @@ -2033,12 +2025,12 @@ msgstr "table name" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:202 msgid "remember template" @@ -2148,7 +2140,6 @@ msgstr "" "however it can break transactions." #: libraries/display_import.lib.php:239 setup/lib/messages.inc.php:161 -#| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Number of queries to skip from start" @@ -2207,7 +2198,6 @@ msgid "%d is not valid row number." msgstr "%d is not valid row number." #: libraries/display_tbl.lib.php:310 -#| msgid "row(s) starting from record #" msgid "row(s) starting from row #" msgstr "row(s) starting from row #" @@ -2266,7 +2256,6 @@ msgid "Relational key" msgstr "Relational key" #: libraries/display_tbl.lib.php:588 -#| msgid "Relational display field" msgid "Relational display column" msgstr "Relational display column" @@ -2690,19 +2679,16 @@ msgstr "CSV" #: libraries/export/csv.php:21 libraries/import/csv.php:27 #: libraries/import/csv.php:59 libraries/import/ldi.php:40 -#| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Columns terminated by" #: libraries/export/csv.php:22 libraries/import/csv.php:28 #: libraries/import/csv.php:71 libraries/import/ldi.php:41 -#| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Columns enclosed by" #: libraries/export/csv.php:23 libraries/import/csv.php:29 #: libraries/import/csv.php:75 libraries/import/ldi.php:42 -#| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Columns escaped by" @@ -2720,7 +2706,6 @@ msgid "Replace NULL by" msgstr "Replace NULL by" #: libraries/export/csv.php:26 libraries/export/excel.php:23 -#| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Remove CRLF characters within columns" @@ -2729,7 +2714,6 @@ msgstr "Remove CRLF characters within columns" #: libraries/export/ods.php:24 libraries/export/odt.php:50 #: libraries/export/texytext.php:34 libraries/export/xls.php:24 #: libraries/export/xlsx.php:24 -#| msgid "Put fields names in the first row" msgid "Put columns names in the first row" msgstr "Put columns names in the first row" @@ -2866,7 +2850,6 @@ msgid "Database export options" msgstr "Database export options" #: libraries/export/sql.php:80 -#| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Enclose table and column names with backquotes" @@ -3088,7 +3071,6 @@ msgstr "Invalid format of CSV input on line %d." #: libraries/import/csv.php:312 #, php-format -#| msgid "Invalid field count in CSV input on line %d." msgid "Invalid column count in CSV input on line %d." msgstr "Invalid column count in CSV input on line %d." @@ -4394,8 +4376,8 @@ msgstr "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Unknown language: %1$s." @@ -4465,7 +4447,6 @@ msgid "Run SQL query/queries on database %s" msgstr "Run SQL query/queries on database %s" #: libraries/sql_query_form.lib.php:317 -#| msgid "Column names" msgid "Columns" msgstr "Columns" @@ -4583,11 +4564,6 @@ msgid "Length/Values" msgstr "Length/Values" #: libraries/tbl_properties.inc.php:105 -#| msgid "" -#| "If field type is \"enum\" or \"set\", please enter the values using this " -#| "format: 'a','b','c'...
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')." msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -4595,9 +4571,9 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" "If column type is \"enum\" or \"set\", please enter the values using this " -"format: 'a','b','c'...
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')." +"format: 'a','b','c'...
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')." #: libraries/tbl_properties.inc.php:106 msgid "" @@ -4673,12 +4649,10 @@ msgstr "Save" #: libraries/tbl_properties.inc.php:780 tbl_structure.php:542 #, php-format -#| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Add %s column(s)" #: libraries/tbl_properties.inc.php:784 tbl_structure.php:536 -#| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "You have to add at least one column." @@ -4687,11 +4661,6 @@ msgid "Event" msgstr "Event" #: libraries/transformations/application_octetstream__download.inc.php:10 -#| msgid "" -#| "Displays a link to download the binary data of the field. You can use the " -#| "first option to specify the filename, or use the second option as the " -#| "name of a field which contains the filename. If you use the second " -#| "option, you need to set the first option to the empty string." msgid "" "Displays a link to download the binary data of the column. You can use the " "first option to specify the filename, or use the second option as the name " @@ -4725,15 +4694,6 @@ msgid "Displays a link to download this image." msgstr "Displays a link to download this image." #: libraries/transformations/text_plain__dateformat.inc.php:10 -#| msgid "" -#| "Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as " -#| "formatted date. The first option is the offset (in hours) which will be " -#| "added to the timestamp (Default: 0). Use second option to specify a " -#| "different date/time format string. Third option determines whether you " -#| "want to see local date or UTC one (use \"local\" or \"utc\" strings) for " -#| "that. According to that, date format has different value - for \"local\" " -#| "see the documentation for PHP's strftime() function and for \"utc\" it is " -#| "done using gmdate() function." msgid "" "Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp column as " "formatted date. The first option is the offset (in hours) which will be " @@ -4754,17 +4714,6 @@ msgstr "" "gmdate() function." #: libraries/transformations/text_plain__external.inc.php:10 -#| msgid "" -#| "LINUX ONLY: Launches an external application and feeds it the field data " -#| "via standard input. Returns the standard output of the application. The " -#| "default is Tidy, to pretty-print HTML code. For security reasons, you " -#| "have to manually edit the file libraries/transformations/" -#| "text_plain__external.inc.php and list the tools you want to make " -#| "available. The first option is then the number of the program you want to " -#| "use and the second option is the parameters for the program. The third " -#| "option, if set to 1, will convert the output using htmlspecialchars() " -#| "(Default 1). The fourth option, if set to 1, will prevent wrapping and " -#| "ensure that the output appears all on one line (Default 1)." msgid "" "LINUX ONLY: Launches an external application and feeds it the column data " "via standard input. Returns the standard output of the application. The " @@ -4780,18 +4729,15 @@ msgstr "" "LINUX ONLY: Launches an external application and feeds it the column data " "via standard input. Returns the standard output of the application. The " "default is Tidy, to pretty-print HTML code. For security reasons, you have " -"to manually edit the file " -"libraries/transformations/text_plain__external.inc.php and list the tools " -"you want to make available. The first option is then the number of the " -"program you want to use and the second option is the parameters for the " -"program. The third option, if set to 1, will convert the output using " -"htmlspecialchars() (Default 1). The fourth option, if set to 1, will prevent " -"wrapping and ensure that the output appears all on one line (Default 1)." +"to manually edit the file libraries/transformations/text_plain__external.inc." +"php and list the tools you want to make available. The first option is then " +"the number of the program you want to use and the second option is the " +"parameters for the program. The third option, if set to 1, will convert the " +"output using htmlspecialchars() (Default 1). The fourth option, if set to 1, " +"will prevent wrapping and ensure that the output appears all on one line " +"(Default 1)." #: libraries/transformations/text_plain__formatted.inc.php:10 -#| msgid "" -#| "Displays the contents of the field as-is, without running it through " -#| "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." @@ -4800,32 +4746,24 @@ msgstr "" "htmlspecialchars(). That is, the column is assumed to contain valid HTML." #: libraries/transformations/text_plain__imagelink.inc.php:10 -#| msgid "" -#| "Displays an image and a link; the field contains the filename. The first " -#| "option is a URL prefix like \"http://www.example.com/\". The second and " -#| "third options are the width and the height in pixels." msgid "" "Displays an image and a link; the column contains the filename. The first " "option is a URL prefix like \"http://www.example.com/\". The second and " "third options are the width and the height in pixels." msgstr "" "Displays an image and a link; the column contains the filename. The first " -"option is a URL prefix like \"http://www.example.com/\". The second and third " -"options are the width and the height in pixels." +"option is a URL prefix like \"http://www.example.com/\". The second and " +"third options are the width and the height in pixels." #: libraries/transformations/text_plain__link.inc.php:10 -#| msgid "" -#| "Displays a link; the field contains the filename. The first option is a " -#| "URL prefix like \"http://www.example.com/\". The second option is a title " -#| "for the link." msgid "" "Displays a link; the column contains the filename. The first option is a URL " "prefix like \"http://www.example.com/\". The second option is a title for " "the link." msgstr "" "Displays a link; the column contains the filename. The first option is a URL " -"prefix like \"http://www.example.com/\". The second option is a title for the " -"link." +"prefix like \"http://www.example.com/\". The second option is a title for " +"the link." #: libraries/transformations/text_plain__longToIpv4.inc.php:10 msgid "" @@ -5048,12 +4986,10 @@ msgid "Create a page" msgstr "Create a page" #: pdf_pages.php:310 -#| msgid "Page number:" msgid "Page name" msgstr "Page name" #: pdf_pages.php:314 -#| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatic layout based on" @@ -5182,10 +5118,6 @@ msgid "To select relation, click :" msgstr "To select relation, click :" #: pmd_help.php:29 -#| msgid "" -#| "The display field is shown in pink. To set/unset a field as the display " -#| "field, click the \"Choose field to display\" icon, then click on the " -#| "appropriate field name." msgid "" "The display column is shown in pink. To set/unset a column as the display " "column, click the \"Choose column to display\" icon, then click on the " @@ -5466,13 +5398,13 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1645 msgid "The selected user was not found in the privilege table." @@ -6283,21 +6215,16 @@ msgstr "" "documentation[/a]. Otherwise you will be only able to download or display it." #: setup/lib/messages.inc.php:35 -#| msgid "" -#| "Defines which type of editing controls should be used for CHAR and " -#| "VARCHAR fields; [kbd]input[/kbd] - allows limiting of input length, [kbd]" -#| "textarea[/kbd] - allows newlines in fields" msgid "" "Defines which type of editing controls should be used for CHAR and VARCHAR " "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns" msgstr "" "Defines which type of editing controls should be used for CHAR and VARCHAR " -"columns; [kbd]input[/kbd] - allows limiting of input length, " -"[kbd]textarea[/kbd] - allows newlines in columns" +"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" +"kbd] - allows newlines in columns" #: setup/lib/messages.inc.php:36 -#| msgid "CHAR fields editing" msgid "CHAR columns editing" msgstr "CHAR columns editing" @@ -7023,9 +6950,6 @@ msgid "GZip output buffering" msgstr "GZip output buffering" #: setup/lib/messages.inc.php:217 -#| msgid "" -#| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " -#| "DATETIME and TIMESTAMP, ascending order otherwise" msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -7050,12 +6974,10 @@ msgid "Iconic table operations" msgstr "Iconic table operations" #: setup/lib/messages.inc.php:224 -#| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Disallow BLOB and BINARY columns from editing" #: setup/lib/messages.inc.php:225 -#| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Protect binary columns" @@ -7521,9 +7443,6 @@ msgid "PDF schema: table coordinates" msgstr "PDF schema: table coordinates" #: setup/lib/messages.inc.php:320 -#| msgid "" -#| "Table to describe the display fields, leave blank for no support; " -#| "suggested: [kbd]pma_table_info[/kbd]" msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -7532,7 +7451,6 @@ msgstr "" "suggested: [kbd]pma_table_info[/kbd]" #: setup/lib/messages.inc.php:321 -#| msgid "Display fields table" msgid "Display columns table" msgstr "Display columns table" @@ -7565,10 +7483,9 @@ msgid "Verbose name of this server" msgstr "Verbose name of this server" #: setup/lib/messages.inc.php:329 -#| msgid "" -#| "Whether a user should be displayed a "show all (records)" button" msgid "Whether a user should be displayed a "show all (rows)" button" -msgstr "Whether a user should be displayed a "show all (rows)" button" +msgstr "" +"Whether a user should be displayed a "show all (rows)" button" #: setup/lib/messages.inc.php:330 msgid "Allow to display all the rows" @@ -7860,7 +7777,6 @@ msgid "Ignore" msgstr "Ignore" #: tbl_change.php:728 -#| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " msgstr " Because of its length,
this column might not be editable " @@ -8150,7 +8066,6 @@ msgid "Operator" msgstr "Operator" #: tbl_select.php:270 -#| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Select columns (at least one):" @@ -8177,7 +8092,6 @@ msgstr "None" #: tbl_structure.php:374 #, php-format -#| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Column %s has been dropped" diff --git a/po/es.po b/po/es.po index 796849192..21ac26ed6 100644 --- a/po/es.po +++ b/po/es.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 11:23+0200\n" "Last-Translator: Michal \n" "Language-Team: spanish \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Mostrar todo" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Buscar" @@ -49,7 +49,7 @@ msgstr "Buscar" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Seleccionar la base de datos copiada" msgid "BLOB Repository" msgstr "Repositorio BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -479,7 +479,7 @@ msgstr "Usar tablas" msgid "SQL query on database %s:" msgstr "Consulta a la base de datos %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Ejecutar la consulta" @@ -518,7 +518,7 @@ msgstr "%s resultado(s) en la tabla %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "Dentro del campo:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Insertar" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "Estructura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "Eliminar" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Vaciar" @@ -625,11 +625,11 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta vista tiene al menos este número de filas. Por favor, refiérase a la %" -"sdocumentation%s." +"Esta vista tiene al menos este número de filas. Por favor, refiérase a la " +"%sdocumentation%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -827,8 +827,8 @@ msgstr "Su archivo (MySQL dump) ha sido guardado con el nombre %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Usted probablemente intentó cargar un archivo demasiado grande. Por favor, " "refiérase a %sdocumentation%s para hallar modos de superar esta limitante." @@ -1043,8 +1043,8 @@ msgid "Prev" msgstr "Previo" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1120,27 +1120,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1148,37 +1148,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dic" @@ -1219,37 +1219,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sab" @@ -1398,7 +1398,7 @@ msgid "Comment" msgstr "Comentario" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1529,8 +1529,8 @@ msgstr "¡No se halló la plantilla de interfaz (theme) %s!" #, php-format msgid "Theme path not found for theme %s!" msgstr "" -"¡No se halló la ruta de la plantilla de interfaz (theme) para la plantilla %" -"s!" +"¡No se halló la ruta de la plantilla de interfaz (theme) para la plantilla " +"%s!" #: libraries/Theme_Manager.class.php:297 test/theme.php:161 themes.php:21 #: themes.php:41 @@ -1551,8 +1551,8 @@ msgstr "Bienvenido a %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La razón más probable es que usted no creó un archivo de configuración. " "Utilice %1$ssetup script%2$s para crear una." @@ -1788,130 +1788,130 @@ msgstr "Explicar el SQL" msgid "Skip Explain SQL" msgstr "Salir de la explicación del SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Sin código PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Actualizar" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Salir de la validación del SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validar el SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motores" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Perfil/Perfilamiento" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Tiempo" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a las %H:%M:%S" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos y %s segundos" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Empezar" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Previo" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Saltar a la base de datos "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2136,8 +2136,8 @@ msgstr "nombre de la tabla" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Este valor es interpretado usando %1$sstrftime%2$s; así, usted puede usar " "cadenas de caracteres para formatear el tiempo. De manera adicional, " @@ -4567,8 +4567,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Idioma desconocido: %1$s." @@ -5190,8 +5190,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"El servidor está utilizando Suhosin. Por favor, refiérase a %sdocumentation%" -"s para posibles ajustes." +"El servidor está utilizando Suhosin. Por favor, refiérase a %sdocumentation" +"%s para posibles ajustes." #: navigation.php:66 navigation.php:67 navigation.php:70 #, fuzzy @@ -5672,8 +5672,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de " "las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir " diff --git a/po/et.po b/po/et.po index bab1c0b08..1bb913d1a 100644 --- a/po/et.po +++ b/po/et.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Näita kõiki" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Otsi" @@ -48,7 +48,7 @@ msgstr "Otsi" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Mine kopeeritud andmebaasile" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -479,7 +479,7 @@ msgstr "Kasuta tabeleid" msgid "SQL query on database %s:" msgstr "SQL-päring andmebaasist %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Lae päring" @@ -518,7 +518,7 @@ msgstr "%s vaste(t) tabelis %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "Otsi tabeli(te)st:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Lisa" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "Struktuur" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "Kustuta" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tühjenda" @@ -625,8 +625,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -824,8 +824,8 @@ msgstr "Väljavõte salvestati faili %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Te kindlasti proovisite laadida liiga suurt faili. Palun uuri " "dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks." @@ -1034,8 +1034,8 @@ msgid "Prev" msgstr "Eelmine" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1111,27 +1111,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Veb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mär" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1139,37 +1139,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Det" @@ -1210,37 +1210,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Lau" @@ -1385,7 +1385,7 @@ msgid "Comment" msgstr "Kommentaarid" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1529,8 +1529,8 @@ msgstr "Tere tulemast %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid " "kasutada %1$ssetup script%2$s et seadistada." @@ -1760,130 +1760,130 @@ msgstr "Seleta SQL-i" msgid "Skip Explain SQL" msgstr "Jäta SQL-i seletamine vahele" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "ilma PHP koodita" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Loo PHP kood" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Uuenda" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Jäta SQL-i kontroll vahele" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Kontrolli SQL-i" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Mootor" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Aeg" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Baiti" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y kell %H:%M:%S" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Algus" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Eelmine" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Lõpp" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Hüppa andmebaasile "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "See %s funktionaalsus on mõjutatud tuntud viga, vaata %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2103,8 +2103,8 @@ msgstr "tabeli nimi" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada " "sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. " @@ -4443,8 +4443,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Tundmatu keel: %1$s." @@ -5520,8 +5520,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Märkus: phpMyAdmin võtab kasutajate privileegid otse MySQL privileges " "tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda " diff --git a/po/eu.po b/po/eu.po index 01472ae9e..53ea992dc 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-31 10:40+0200\n" "Last-Translator: \n" "Language-Team: basque \n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Dena erakutsi" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Bilatu" @@ -49,7 +49,7 @@ msgstr "Bilatu" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -284,7 +284,7 @@ msgstr "Kopiatutako taulara aldatu" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -484,7 +484,7 @@ msgstr "Taulak erabili" msgid "SQL query on database %s:" msgstr "SQL-kontsulta %s datu-basean:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Kontsulta bidali" @@ -523,7 +523,7 @@ msgstr "%s emaitza(k) %s taulan" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -570,13 +570,13 @@ msgstr "Taul(ar)en barnean:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Txertatu" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -589,7 +589,7 @@ msgstr "Egitura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -599,7 +599,7 @@ msgstr "Ezabatu" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Hutsik" @@ -630,8 +630,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -827,8 +827,8 @@ msgstr "Iraulketa %s fitxategian gorde da." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1030,8 +1030,8 @@ msgid "Prev" msgstr "Aurrekoa" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1107,27 +1107,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1135,37 +1135,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Abe" @@ -1206,37 +1206,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Lar" @@ -1380,7 +1380,7 @@ msgid "Comment" msgstr "Iruzkinak" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1522,8 +1522,8 @@ msgstr "Ongietorriak %s(e)ra" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1748,128 +1748,128 @@ msgstr "SQL-a azaldu" msgid "Skip Explain SQL" msgstr "SQL-ren azalpena saltatu" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP Koderik gabe" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP kodea sortu" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "SQL-ren balidapena saltatu" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL balidatu" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Denbora" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Byte" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d, %H:%M:%S" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s egun, %s ordu, %s minutu eta %s segundu" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Hasi" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Aurrekoa" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Amaiera" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr ""%s" datu-basera joan." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2090,8 +2090,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4322,8 +4322,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5372,8 +5372,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren " "pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz " diff --git a/po/fa.po b/po/fa.po index 800687167..1d217429e 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "نمايش همه" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -35,8 +35,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "جستجو" @@ -46,7 +46,7 @@ msgstr "جستجو" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -281,7 +281,7 @@ msgstr "" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -479,7 +479,7 @@ msgstr "بكارگيري جدولها" msgid "SQL query on database %s:" msgstr "پرس و جوي SQL از پايگاه داده %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Submit Query" @@ -518,7 +518,7 @@ msgstr "" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "در جدول(هاي) :" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "درج" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "ساختار" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "حذف" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "خالي كردن" @@ -625,8 +625,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -819,8 +819,8 @@ msgstr "" #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1019,8 +1019,8 @@ msgid "Prev" msgstr "قبل" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1096,27 +1096,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1124,37 +1124,37 @@ msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "دسامبر" @@ -1195,37 +1195,37 @@ msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "شنبه" @@ -1365,7 +1365,7 @@ msgid "Comment" msgstr "توضيحات" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1507,8 +1507,8 @@ msgstr "به %s خوش‌آمديد" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1618,8 +1618,8 @@ msgid "" "Either configure PHP to enable these extensions or disable charset " "conversion in phpMyAdmin." msgstr "" -"بارگذاري iconv يا recode extension كه براي تبديل مجموعه كاراكترها لازم است " -"، مقدور نمي‌باشد، php را براي اجازه استفاده از آنها تنظيم كرده و يا تبديل " +"بارگذاري iconv يا recode extension كه براي تبديل مجموعه كاراكترها لازم " +"است ، مقدور نمي‌باشد، php را براي اجازه استفاده از آنها تنظيم كرده و يا تبديل " "مجموعه كاراكترها (charset conversion) را در phpMyAdmin غيرفعال نماييد." #: libraries/charset_conversion.lib.php:79 @@ -1726,131 +1726,131 @@ msgstr "شرح دادن SQL" msgid "Skip Explain SQL" msgstr "شرح دادن SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "بدون كد PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "ساخت كد PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 #, fuzzy msgid "Skip Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "موتور" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "بايت" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "كيلوبايت" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "مگا بايت" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "گيگا بايت" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "ترابايت" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "پتا بايت" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "اگزا بايت" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ساعت %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "شروع" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "قبل" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "انتها" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2070,8 +2070,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4274,8 +4274,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "زبانِ ناشناس : %1$s." @@ -4470,9 +4470,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " -"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" -"\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " +"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " +"يا 'a\\'b')" #: libraries/tbl_properties.inc.php:106 msgid "" @@ -4506,9 +4506,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " -"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" -"\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " +"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " +"يا 'a\\'b')" #: libraries/tbl_properties.inc.php:393 #, fuzzy @@ -4727,8 +4727,8 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" "پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با " -"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " -"، و شما بايد اين حفره امنيتي را ذرست كنيد." +"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز " +"مي‌شود ، و شما بايد اين حفره امنيتي را ذرست كنيد." #: main.php:274 msgid "" @@ -5249,8 +5249,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1645 diff --git a/po/fi.po b/po/fi.po index 1a0f14ad2..b45ffa713 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-04-30 18:08+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Näytä kaikki" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Etsi" @@ -49,7 +49,7 @@ msgstr "Etsi" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Siirry kopioituun tietokantaan" msgid "BLOB Repository" msgstr "BLOB-tietokanta" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -479,7 +479,7 @@ msgstr "Käytä tauluja" msgid "SQL query on database %s:" msgstr "Suorita SQL-kysely tietokannassa %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Suorita" @@ -518,7 +518,7 @@ msgstr "%s hakutulosta taulussa %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "Kentän sisältä:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Lisää rivi" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "Rakenne" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "Tuhoa" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tyhjennä" @@ -625,11 +625,11 @@ msgstr "Seuranta ei ole käytössä." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %" -"sohjeista%s." +"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " +"%sohjeista%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -818,8 +818,8 @@ msgstr "Vedos tallennettiin tiedostoon %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso " "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." @@ -1030,8 +1030,8 @@ msgid "Prev" msgstr "Edellinen" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1107,27 +1107,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1135,37 +1135,37 @@ msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Joulu" @@ -1206,37 +1206,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "La" @@ -1385,7 +1385,7 @@ msgid "Comment" msgstr "Kommentti" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1533,11 +1533,11 @@ msgstr "Tervetuloa, toivottaa %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1" -"$sasetusskriptillä%2$s." +"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston " +"%1$sasetusskriptillä%2$s." #: libraries/auth/config.auth.lib.php:116 msgid "" @@ -1766,130 +1766,130 @@ msgstr "Selitä SQL-kysely" msgid "Skip Explain SQL" msgstr "Älä selitä SQL-kyselyä" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Kätke PHP-koodi" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Näytä PHP-koodi" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Päivitä" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Älä tarkista SQL-kyselyä" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Tarkista SQL-lause" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Moottorit" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profilointi" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Aika" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "tavua" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "kt" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "Mt" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "Gt" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "Tt" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "Pt" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "Et" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y klo %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päivää, %s tuntia, %s minuuttia ja %s sekuntia" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Alkuun" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Edellinen" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Loppu" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Siirry tietokantaan "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2110,8 +2110,8 @@ msgstr "taulun nimi" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten " "ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat " @@ -4508,8 +4508,8 @@ msgstr "" "Kun Host-taulua käytetään, tätä kenttää ei huomioida, vaan sen sijaan " "käytetään Host-taulussa olevia tietoja." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Tuntematon kieli: %1$s." @@ -5599,8 +5599,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen " "käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen " diff --git a/po/fr.po b/po/fr.po index e6d08248c..65cf568b7 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-06-01 16:27+0200\n" "Last-Translator: Marc \n" "Language-Team: french \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Tout afficher" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Rechercher" @@ -49,7 +49,7 @@ msgstr "Rechercher" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -278,7 +278,7 @@ msgstr "Aller à la base de données copiée" msgid "BLOB Repository" msgstr "Dépôt BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -466,7 +466,7 @@ msgstr "Utiliser les tables" msgid "SQL query on database %s:" msgstr "Requête SQL sur la base %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Exécuter la requête" @@ -505,7 +505,7 @@ msgstr "%s occurence(s) dans la table %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -550,13 +550,13 @@ msgstr "Dans la colonne:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Insérer" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -569,7 +569,7 @@ msgstr "Structure" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -579,7 +579,7 @@ msgstr "Supprimer" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Vider" @@ -610,11 +610,11 @@ msgstr "Le suivi n'est pas activé." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Cette vue contient au moins ce nombre d'enregistrements. Veuillez référer à %" -"sdocumentation%s." +"Cette vue contient au moins ce nombre d'enregistrements. Veuillez référer à " +"%sdocumentation%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -805,8 +805,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Vous avez probablement tenté de télécharger un fichier trop volumineux. " "Veuillez vous référer à la %sdocumentation%s pour des façons de contourner " @@ -1018,8 +1018,8 @@ msgid "Prev" msgstr "Précédent" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1079,63 +1079,63 @@ msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Décembre" @@ -1168,37 +1168,37 @@ msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sam" @@ -1329,7 +1329,7 @@ msgid "Comment" msgstr "Commentaire" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1475,8 +1475,8 @@ msgstr "Bienvenue sur %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La raison probable est que vous n'avez pas créé de fichier de configuration. " "Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but." @@ -1711,128 +1711,128 @@ msgstr "Expliquer SQL" msgid "Skip Explain SQL" msgstr "Ne pas expliquer SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Sans source PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Créer source PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Actualiser" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Ne pas valider SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Valider SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "Éditer cette requête en ligne" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "En ligne" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profilage" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Durée" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "o" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "Kio" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "Mio" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "Gio" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "Tio" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "Pio" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "Eio" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y à %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s jours, %s heures, %s minutes et %s secondes" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Début" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Précédent" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Aller à la base de données "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2050,8 +2050,8 @@ msgstr "nom de table" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc " "utiliser des chaînes de format d'heure. Ces transformations additionnelles " @@ -4449,8 +4449,8 @@ msgstr "" "Quand la table Host est utilisée, ce champ est ignoré et les valeurs de la " "table Host sont utilisées à la place." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Langue inconnue: %1$s." @@ -5202,8 +5202,8 @@ msgid "" "appropriate column name." msgstr "" "La colonne descriptive est montrée en rose. Pour indiquer qu'une colonne est " -"ou n'est plus la colonne descriptive, cliquer l'icône «Colonne descriptive», " -"puis cliquer sur le nom de colonne approprié." +"ou n'est plus la colonne descriptive, cliquer l'icône «Colonne " +"descriptive», puis cliquer sur le nom de colonne approprié." #: pmd_pdf.php:63 msgid "Page has been created" @@ -5476,8 +5476,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin obtient la liste des privilèges directement à partir des " "tables MySQL. Le contenu de ces tables peut être différent des privilèges " @@ -7140,9 +7140,9 @@ msgstr "" "La méthode d'authentification [kbd]config[/kbd] permet une connexion " "automatique, ce qui n'est pas souhaitable dans un environnement réel. Toute " "personne qui connaît l'URL d'accès peut entrer dans votre phpMyAdmin. Il est " -"suggéré de régler votre [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]type d'authentification[/a] à [kbd]cookie[/kbd] ou [kbd]http[/" -"kbd]." +"suggéré de régler votre [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server]type d'authentification[/a] à [kbd]cookie[/kbd] ou [kbd]http" +"[/kbd]." #: setup/lib/messages.inc.php:239 msgid "You should use mysqli for performance reasons" diff --git a/po/gl.po b/po/gl.po index c1f1995f1..4f9e0a8b7 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: galician \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Ver todos os rexistros" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Procurar" @@ -49,7 +49,7 @@ msgstr "Procurar" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Pasar á base de datos copiada" msgid "BLOB Repository" msgstr "Repositorio de BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -479,7 +479,7 @@ msgstr "Usar as táboas" msgid "SQL query on database %s:" msgstr "Procura tipo SQL na base de datos %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Enviar esta procura" @@ -518,7 +518,7 @@ msgstr "%s ocorrencias(s) dentro da táboa %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "No campo:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Inserir" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "Estrutura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "Eliminar" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Borrar" @@ -625,11 +625,11 @@ msgstr "O seguemento non está activado." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%" -"s." +"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" +"%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -818,11 +818,11 @@ msgstr "Gardouse o volcado no ficheiro %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %" -"sdocumentación%s para averiguar como evitar este límite." +"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " +"%sdocumentación%s para averiguar como evitar este límite." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1031,8 +1031,8 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1108,27 +1108,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1136,37 +1136,37 @@ msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" @@ -1207,37 +1207,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sá" @@ -1386,7 +1386,7 @@ msgid "Comment" msgstr "Comentario" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1535,8 +1535,8 @@ msgstr "Reciba a benvida a %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Isto débese, posibelmente, a que non se creou un ficheiro de configuración. " "Tal vez queira utilizar %1$ssetup script%2$s para crear un." @@ -1772,130 +1772,130 @@ msgstr "Explicar SQL" msgid "Skip Explain SQL" msgstr "Saltar a explicacion de SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "sen código PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Refrescar" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Omitir a validacion de" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validar o SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motores" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Análise do desempeño" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Tempo" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d de %B de %Y ás %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos e %s segundos" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Inicio" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Saltar à base de datos "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A función %s vese afectada por un erro descoñecido; consulte %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2117,8 +2117,8 @@ msgstr "nome da táboa" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode " "utilizar cadeas de formato de hora. Produciranse transformacións en " @@ -4514,8 +4514,8 @@ msgstr "" "Cando se emprega a táboa Host, ignórase este campo e no seu canto empréganse " "os valores almacenados na táboa Host." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Linguaxe descoñecida: %1$s." @@ -5133,8 +5133,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %" -"sdocumentation%s." +"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na " +"%sdocumentation%s." #: navigation.php:66 navigation.php:67 navigation.php:70 #, fuzzy @@ -5610,8 +5610,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas " "de privilexios do MySQL. O contido destas táboas pode diferir dos " diff --git a/po/he.po b/po/he.po index b32c131b6..542d3fd34 100644 --- a/po/he.po +++ b/po/he.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hebrew \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "ראיית הכל" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -34,8 +34,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "חיפוש" @@ -45,7 +45,7 @@ msgstr "חיפוש" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -276,7 +276,7 @@ msgstr "מעבר למאגר נתונים שהועתק" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -475,7 +475,7 @@ msgstr "השתמש בטבלאות" msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "שליחת שאילתה" @@ -514,7 +514,7 @@ msgstr "" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -561,13 +561,13 @@ msgstr "בתוך הטבלה/הטבלאות:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "הכנסה" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -580,7 +580,7 @@ msgstr "מבנה" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -590,7 +590,7 @@ msgstr "הסרה" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "ריקון" @@ -621,8 +621,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -816,8 +816,8 @@ msgstr "הוצאה נשמרה אל קובץ %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1017,8 +1017,8 @@ msgid "Prev" msgstr "הקודם" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1094,27 +1094,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1122,37 +1122,37 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "דצמבר" @@ -1193,37 +1193,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "שבת" @@ -1368,7 +1368,7 @@ msgid "Comment" msgstr "הערות" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1512,8 +1512,8 @@ msgstr "ברוך הבא אל %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1733,131 +1733,131 @@ msgstr "הסברת SQL" msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "ללא קוד PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "ייצור קוד PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "רענון" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 #, fuzzy msgid "Skip Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "מנועים" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "זמן" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "התחלה" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "הקודם" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "סיום" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "קפיצה אל מאגר נתונים "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2077,8 +2077,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4283,8 +4283,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5263,8 +5263,8 @@ msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמ msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של " "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " diff --git a/po/hi.po b/po/hi.po index 2d7261d99..d58709594 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-05-21 05:48+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" +"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "सभी दिखाओ" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "खोजें" @@ -48,7 +48,7 @@ msgstr "खोजें" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "नक़ल किये गए डाटाबेस पर जाय msgid "BLOB Repository" msgstr "BLOB भंडार गृह" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -472,7 +472,7 @@ msgstr "टेबल का उपयोग करो" msgid "SQL query on database %s:" msgstr "डेटाबेस %s पर SQL प्रश्न:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "प्रश्न प्रस्तुत करें" @@ -511,7 +511,7 @@ msgstr "%s तालिका के अंदर %s मैच हैं. #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -558,13 +558,13 @@ msgstr "क्षेत्र के अंदर:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "इनसर्ट" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -577,7 +577,7 @@ msgstr "संरचना" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -587,7 +587,7 @@ msgstr "छोड़ें" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "खाली करें" @@ -618,8 +618,8 @@ msgstr "ट्रैकिंग सक्रिय नहीं है." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "इस द्रश्य में कम से कम इतनी पंक्तियाँ हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -808,8 +808,8 @@ msgstr "डंप को %s फाइल में सेव किया गय #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s " "दोकुमेंताशन%s पढ़ें." @@ -1013,8 +1013,8 @@ msgid "Prev" msgstr "पिछला" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1074,63 +1074,63 @@ msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "दिसमबर" @@ -1163,37 +1163,37 @@ msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "मन्गलवार" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "शनिवार" @@ -1320,7 +1320,7 @@ msgid "Comment" msgstr "टिप्पणी" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1462,11 +1462,11 @@ msgstr " %s मे स्वागत है" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2" -"$s का उपयोग करें." +"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script" +"%2$s का उपयोग करें." #: libraries/auth/config.auth.lib.php:116 msgid "" @@ -1675,128 +1675,128 @@ msgstr "SQL की व्याख्या " msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP Code बनाओ" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "इस कुएरी की इनलाइन एडिट" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "इनलाइन" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr " बैट्स" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y को %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "आखरी" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2013,8 +2013,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4201,8 +4201,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5144,8 +5144,8 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1645 diff --git a/po/hr.po b/po/hr.po index d30a9f781..1d7804982 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: croatian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Traži" @@ -48,7 +48,7 @@ msgstr "Traži" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Prebaci se na kopiranu bazu podataka" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -480,7 +480,7 @@ msgstr "Upotrijebi tablice" msgid "SQL query on database %s:" msgstr "SQL upit nad bazom podataka %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Podnesi upit" @@ -519,7 +519,7 @@ msgstr "%s poklapanja unutar tablice %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -566,13 +566,13 @@ msgstr "Unutar polja:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Umetni" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -585,7 +585,7 @@ msgstr "Strukturu" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -595,7 +595,7 @@ msgstr "Ispusti" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Isprazni" @@ -626,8 +626,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." @@ -826,11 +826,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %" -"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." +"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte " +"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1039,8 +1039,8 @@ msgid "Prev" msgstr "Prethodni" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1116,27 +1116,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1144,37 +1144,37 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Pro" @@ -1215,37 +1215,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sub" @@ -1394,7 +1394,7 @@ msgid "Comment" msgstr "Komentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1540,8 +1540,8 @@ msgstr "Dobro došli u %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete " "upotrijebiti naredbu %1$ssetup script%2$s" @@ -1774,130 +1774,130 @@ msgstr "Objasni SQL" msgid "Skip Explain SQL" msgstr "Preskoči Objasni SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Izradi PHP kod" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Osvježi" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Preskoči provjeru valjanosti SQL-a" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Provjera valjanosti SQL-a" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Pogoni" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Izrada profila" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Vrijeme" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "kB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y u %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekunda" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Na vrh stranice" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Prethodni" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Završetak" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Skoči do baze podataka \"%s\"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2120,8 +2120,8 @@ msgstr "naziv tablice" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti " "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " @@ -4511,8 +4511,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Nepoznati jezik: %1$s." @@ -5601,8 +5601,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL " "tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica " @@ -8606,8 +8606,8 @@ msgstr "Preimenuj tablicu u" #~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. " #~ "Please check your PHP configuration." #~ msgstr "" -#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1" -#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju." +#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]" +#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju." #, fuzzy #~ msgid "(or the local MySQL server" diff --git a/po/hu.po b/po/hu.po index d55599368..20273b666 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hungarian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Mind látható" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Keresés" @@ -48,7 +48,7 @@ msgstr "Keresés" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "A másolt adatbázisra váltás" msgid "BLOB Repository" msgstr "BLOB-ratár" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -478,7 +478,7 @@ msgstr "Felhasználandó táblák" msgid "SQL query on database %s:" msgstr "SQL-lekérdezés a(z) %s adatbázison:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Lekérdezés indítása" @@ -517,7 +517,7 @@ msgstr "%s találat a(z) %s táblában" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -564,13 +564,13 @@ msgstr "Mezőben:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Beszúrás" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -583,7 +583,7 @@ msgstr "Szerkezet" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -593,7 +593,7 @@ msgstr "Eldobás" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Kiürítés" @@ -624,11 +624,11 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %" -"sdokumentációban%s." +"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a " +"%sdokumentációban%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -824,11 +824,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %" -"sdokumentációban%s a korlátozás feloldásának." +"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a " +"%sdokumentációban%s a korlátozás feloldásának." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1038,8 +1038,8 @@ msgid "Prev" msgstr "Előző" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1115,27 +1115,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "jan." #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "febr." #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "márc." #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "ápr." #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1143,37 +1143,37 @@ msgid "May" msgstr "máj." #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "jún." #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "júl." #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "aug." #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "szept." #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "okt." #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "nov." #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "dec." @@ -1214,37 +1214,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "V" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "H" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "K" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Cs" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "P" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Szo" @@ -1393,7 +1393,7 @@ msgid "Comment" msgstr "Megjegyzés" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1541,11 +1541,11 @@ msgstr "Üdvözli a %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1" -"$stelepítőszkripttel%2$s el tudja készíteni." +"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A " +"%1$stelepítőszkripttel%2$s el tudja készíteni." #: libraries/auth/config.auth.lib.php:116 msgid "" @@ -1776,130 +1776,130 @@ msgstr "Az SQL magyarázata" msgid "Skip Explain SQL" msgstr "SQL magyarázat átugrása" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP kód nélkül" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-kód létrehozása" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Frissítés" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "SQL érvényesítés átugrása" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL érvényesítése" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motorok" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Adatgyűjtés" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Idő" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bájt" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y. %B %d. %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s nap, %s óra, %s perc, %s másodperc" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "A tetejére" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Előző" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Vége" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Ugrás a(z) "%s" adatbázishoz." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2125,8 +2125,8 @@ msgstr "tábla neve" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, " "vagyis időformázó karakterláncokat használhat. A következő átalakításokra " @@ -4521,8 +4521,8 @@ msgstr "" "A Host tábla használatakor ez a mező mellőzésre kerül, s a Host táblában " "lévő értékek kerülnek felhaszsnálásra." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Ismeretlen nyelv: %1$s." @@ -4700,8 +4700,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %" -"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" +"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a " +"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" "kiterjesztést." #: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140 @@ -5629,13 +5629,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL " "privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által " -"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %" -"stöltse be újra a jogokat%s a folytatás előtt." +"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " +"%stöltse be újra a jogokat%s a folytatás előtt." #: server_privileges.php:1645 msgid "The selected user was not found in the privilege table." diff --git a/po/id.po b/po/id.po index ef0baf32b..0d5afb89d 100644 --- a/po/id.po +++ b/po/id.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-04-17 21:14+0200\n" "Last-Translator: Azhari Harahap \n" "Language-Team: indonesian \n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Tampilkan semua" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Cari" @@ -49,7 +49,7 @@ msgstr "Cari" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Pindah ke database yang disalin" msgid "BLOB Repository" msgstr "Repositori BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -477,7 +477,7 @@ msgstr "Gunakan tabel" msgid "SQL query on database %s:" msgstr "Pencarian SQL dalam database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Jalankan pencarian SQL" @@ -516,7 +516,7 @@ msgstr "%s catatan dalam tabel %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -563,13 +563,13 @@ msgstr "Cari dalam tabel:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Sisipkan" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -582,7 +582,7 @@ msgstr "Struktur" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -592,7 +592,7 @@ msgstr "Hapus" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Mengosongkan" @@ -623,11 +623,11 @@ msgstr "Pelacakan tidak aktif." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %" -"sdokumentasi%s" +"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat " +"%sdokumentasi%s" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -817,11 +817,11 @@ msgstr "Dump (Skema) disimpan pada file %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %" -"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." +"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat " +"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1024,8 +1024,8 @@ msgid "Prev" msgstr "Sebelumnya" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1101,27 +1101,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Januari" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Februari" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Maret" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1129,37 +1129,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Agustus" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nopember" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Desember" @@ -1200,37 +1200,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Minggu" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Senin" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Selasa" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Rabu" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Kamis" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Jumat" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sabtu" @@ -1378,7 +1378,7 @@ msgid "Comment" msgstr "Komentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1520,8 +1520,8 @@ msgstr "Selamat Datang di %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1746,130 +1746,130 @@ msgstr "Terangkan SQL" msgid "Skip Explain SQL" msgstr "Melewati keterangan SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Kode PHP tidak ditemukan" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Ciptakan kode PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Menyegarkan" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Melewati pengesahan (validation) SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Mengesahkan (validate) SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Mesin" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Jangka Waktu" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y jam %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s menit dan %s detik" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Awal" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Sebelumnya" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Terakhir" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Lompat langsung ke database "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2092,8 +2092,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4333,8 +4333,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5403,8 +5403,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan pengguna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari " "tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil " diff --git a/po/it.po b/po/it.po index c00d8fa0d..20dc8f8d5 100644 --- a/po/it.po +++ b/po/it.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-05-24 21:25+0200\n" "Last-Translator: Fabio \n" "Language-Team: italian \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Mostra tutti" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -39,8 +39,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Cerca" @@ -50,7 +50,7 @@ msgstr "Cerca" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -281,7 +281,7 @@ msgstr "Passare al Database copiato" msgid "BLOB Repository" msgstr "Repository BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -474,7 +474,7 @@ msgstr "Utilizza tabelle" msgid "SQL query on database %s:" msgstr "SQL-query sul database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Invia Query" @@ -513,7 +513,7 @@ msgstr "%s corrisponde/ono nella tabella %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -560,13 +560,13 @@ msgstr "Campi contenuti:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Inserisci" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -579,7 +579,7 @@ msgstr "Struttura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -589,7 +589,7 @@ msgstr "Elimina" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Svuota" @@ -620,8 +620,8 @@ msgstr "Il tracking non è attivo." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Questa visuale ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." @@ -816,8 +816,8 @@ msgstr "Il dump è stato salvato sul file %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Stai probabilmente cercando di caricare sul server un file troppo grosso. " "Fai riferimento alla documentazione %sdocumentation%s Per i modi di aggirare " @@ -1028,8 +1028,8 @@ msgid "Prev" msgstr "Precedente" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1089,63 +1089,63 @@ msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "lug" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "ott" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "dic" @@ -1178,37 +1178,37 @@ msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sab" @@ -1336,7 +1336,7 @@ msgid "Comment" msgstr "Commenti" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1482,8 +1482,8 @@ msgstr "Benvenuto in %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "La ragione di questo è che probabilmente non hai creato alcun file di " "configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno." @@ -1714,130 +1714,130 @@ msgstr "Spiega SQL" msgid "Skip Explain SQL" msgstr "Non Spiegare SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "senza codice PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Crea il codice PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Aggiorna" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Non Validare SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Valida SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "In linea" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Tempo" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y at %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s giorni, %s ore, %s minuti e %s secondi" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Inizio" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Precedente" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fine" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Passa al database \"%s\"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La %s funzionalità è affetta da un bug noto, vedi %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2057,8 +2057,8 @@ msgstr "nome tabella" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi " "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " @@ -4467,8 +4467,8 @@ msgstr "" "Quando la tabella Host è usata, questo campo è ignorato e i valori " "memorizzati nella tabella Host invece utilizzati." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Lingua non conosciuta : %1$s." @@ -5091,8 +5091,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Sul server è in esecuzione Suhosin. Controlla la documentazione: %" -"sdocumentation%s per possibili problemi." +"Sul server è in esecuzione Suhosin. Controlla la documentazione: " +"%sdocumentation%s per possibili problemi." #: navigation.php:66 navigation.php:67 navigation.php:70 #, fuzzy @@ -5569,8 +5569,8 @@ msgstr "Elimina i databases gli stessi nomi degli utenti." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella " "dei privilegi di MySQL. Il contenuto di questa tabella può differire dai " diff --git a/po/ja.po b/po/ja.po index c0ab430f9..38f70a6b7 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 11:22+0200\n" "Last-Translator: Michal \n" "Language-Team: japanese \n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "すべて表示" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "検索" @@ -49,7 +49,7 @@ msgstr "検索" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "コピーしたデータベースに切り替える" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -478,7 +478,7 @@ msgstr "利用するテーブル" msgid "SQL query on database %s:" msgstr "データベース %s のSQL:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "クエリを実行する" @@ -517,7 +517,7 @@ msgstr "%s 件(テーブル %s)" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -564,13 +564,13 @@ msgstr "検索するフィールド:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "挿入" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -583,7 +583,7 @@ msgstr "構造" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -593,7 +593,7 @@ msgstr "削除" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "空にする" @@ -624,8 +624,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -815,8 +815,8 @@ msgstr "ダンプをファイル %s に保存しました" #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ" "メント%s をご覧ください" @@ -1027,8 +1027,8 @@ msgid "Prev" msgstr "前" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1099,27 +1099,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "1 月','2 月','3 月','4 月','5 月','6 月" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1127,38 +1127,38 @@ msgid "May" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 #, fuzzy msgid "Jul" msgstr "日" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "" @@ -1199,37 +1199,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "土" @@ -1379,7 +1379,7 @@ msgid "Comment" msgstr "コメント" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1523,11 +1523,11 @@ msgstr "%s へようこそ" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2" -"$s を利用して設定ファイルを作成してください" +"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ" +"ト%2$s を利用して設定ファイルを作成してください" #: libraries/auth/config.auth.lib.php:116 msgid "" @@ -1750,130 +1750,130 @@ msgstr "EXPLAIN で確認" msgid "Skip Explain SQL" msgstr "SQL の EXPLAIN 解析をスキップ" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP コードを省略" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP コードの作成" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "再描画" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "SQL の検証をスキップ" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL の検証" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "エンジン" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "プロファイリング" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "時間" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "バイト" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %B %d 日 %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日 %s 時間 %s 分 %s 秒" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "先頭" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "前" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "最後" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr ""%s" データベースに移動" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2096,8 +2096,8 @@ msgstr "テーブル名" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "このテンプレートは %1$sstrftime%2$s を使って解釈されます。そのため、時間の書" "式文字列を利用できます。また、次の変換も行われます。%3$s それ以外のテキストは" @@ -4431,8 +4431,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "言語ファイルが登録されていません: %1$s" @@ -5510,8 +5510,8 @@ msgstr "ユーザと同名のデータベースを削除する" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手" "作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの" diff --git a/po/ka.po b/po/ka.po index 92d9f1e9f..c149f8b5b 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "ყველას ჩვენება" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "ძებნა" @@ -48,7 +48,7 @@ msgstr "ძებნა" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Switch to copied database" msgid "BLOB Repository" msgstr "BLOB რეპოზიტორია" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -478,7 +478,7 @@ msgstr "გამოიყენე ცხრილები" msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "მოთხოვნის გაგზავნა" @@ -517,7 +517,7 @@ msgstr "%s match(es) inside table %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -564,13 +564,13 @@ msgstr "ველში:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "ჩასმა" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -583,7 +583,7 @@ msgstr "სტრუქტურა" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -593,7 +593,7 @@ msgstr "Drop" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "ცარიელი" @@ -624,11 +624,11 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -824,11 +824,11 @@ msgstr "Dump has been saved to file %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1034,8 +1034,8 @@ msgid "Prev" msgstr "წინა" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1111,27 +1111,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1139,37 +1139,37 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "დეკ" @@ -1210,37 +1210,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "შაბ" @@ -1390,7 +1390,7 @@ msgid "Comment" msgstr "კომენტარი" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1538,11 +1538,11 @@ msgstr "მოგესალმებათ %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:116 msgid "" @@ -1768,130 +1768,130 @@ msgstr "SQL-ის ახსნა" msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP კოდის გარეშე" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "განახლება" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "ძრავები" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "დრო" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s დღე, %s საათი, %s წუთი და %s წამი" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "დასაწყისი" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "წინა" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "დასასრული" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2113,12 +2113,12 @@ msgstr "ცხრილის სახელი" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:202 msgid "remember template" @@ -4481,8 +4481,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "უცნობი ენა: %1$s." @@ -5577,13 +5577,13 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1645 msgid "The selected user was not found in the privilege table." diff --git a/po/ko.po b/po/ko.po index 6ee0360d5..6cd55909f 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: korean \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "모두 보기" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -34,8 +34,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "검색" @@ -45,7 +45,7 @@ msgstr "검색" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -283,7 +283,7 @@ msgstr "복사한 테이블로 옮겨감" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -484,7 +484,7 @@ msgstr "사용할 테이블" msgid "SQL query on database %s:" msgstr "데이터베이스 %s에 SQL 질의:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "질의 실행" @@ -523,7 +523,7 @@ msgstr "" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -570,13 +570,13 @@ msgstr "찾을 테이블:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "삽입" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -589,7 +589,7 @@ msgstr "구조" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -599,7 +599,7 @@ msgstr "삭제" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "비우기" @@ -630,8 +630,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -824,8 +824,8 @@ msgstr "" #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1023,8 +1023,8 @@ msgid "Prev" msgstr "이전" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1100,27 +1100,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "해오름달" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "시샘달" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "물오름달" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "잎새달" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1128,37 +1128,37 @@ msgid "May" msgstr "푸른달" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "누리달" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "견우직녀달" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "타오름달" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "열매달" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "하늘연달" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "미틈달" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "매듭달" @@ -1199,37 +1199,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "토" @@ -1373,7 +1373,7 @@ msgid "Comment" msgstr "설명(코멘트)" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1515,8 +1515,8 @@ msgstr "%s에 오셨습니다" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1731,129 +1731,129 @@ msgstr "SQL 해석" msgid "Skip Explain SQL" msgstr "해석(EXPLAIN) 생략" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP 코드 없이 보기" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP 코드 보기" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 #, fuzzy msgid "Skip Validate SQL" msgstr "SQL 검사" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL 검사" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "시간" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%y-%m-%d %H:%M " -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "처음" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "이전" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "마지막" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "데이터베이스 "%s" 로 이동." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2071,8 +2071,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4283,8 +4283,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5259,8 +5259,8 @@ msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1645 diff --git a/po/lt.po b/po/lt.po index 2eb613d4d..81f2c97bc 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-04-16 19:52+0200\n" "Last-Translator: Rytis \n" "Language-Team: lithuanian \n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Rodyti viską" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Paieška" @@ -49,7 +49,7 @@ msgstr "Paieška" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Pereiti į nukopijuotą duombazę" msgid "BLOB Repository" msgstr "BLOB saugykla" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -334,8 +334,8 @@ msgid "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." msgstr "" -"Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. %" -"sPaaiškinimas%s." +"Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. " +"%sPaaiškinimas%s." #: db_operations.php:648 msgid "Edit PDF Pages" @@ -480,7 +480,7 @@ msgstr "Naudoti lenteles" msgid "SQL query on database %s:" msgstr "SQL-užklausa duombazėje %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Vykdyti užklausą" @@ -519,7 +519,7 @@ msgstr "%s atitikmuo(enys) lentelėje %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -566,13 +566,13 @@ msgstr "Lentelės(ių) viduje:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Įterpti" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -585,7 +585,7 @@ msgstr "Struktūra" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -595,7 +595,7 @@ msgstr "Šalinti" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Išvalyti" @@ -626,8 +626,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -822,8 +822,8 @@ msgstr "Duombazės atvaizdis išsaugotas faile %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1024,8 +1024,8 @@ msgid "Prev" msgstr "Praėjęs" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1101,27 +1101,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "sausio" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "vasario" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "kovo" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "balandžio" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1129,37 +1129,37 @@ msgid "May" msgstr "gegužės" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "birželio" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "liepos" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "rugpjūčio" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "rugsėjo" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "spalio" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "lapkričio" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "gruodžio" @@ -1200,37 +1200,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Sekmadienis" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pirmadienis" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Antradienis" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Trečiadienis" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Ketvirtadienis" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Penktadienis" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Šeštadienis" @@ -1376,7 +1376,7 @@ msgid "Comment" msgstr "Komentaras" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1522,8 +1522,8 @@ msgstr "Jūs naudojate %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Turbūt dar nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų " "skriptu%2$s, kad sukurtumėte failą." @@ -1752,128 +1752,128 @@ msgstr "Paaiškinti" msgid "Skip Explain SQL" msgstr "Praleisti SQL užklausos aiškinimą" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "be PHP kodo" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP kodas" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Atnaujinti" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Praleisti SQL užklausos tikrinimą" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Patikrinti SQL užklausą" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Laikas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y m. %B %d d. %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s d., %s val., %s min. ir %s s" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Pradžia" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Praėjęs" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Pabaiga" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Pereiti į "%s" duombazę." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2094,8 +2094,8 @@ msgstr "lentelės vardas" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi, galite naudoti " "laiko formatavimo eilutes. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " @@ -4344,8 +4344,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Nežinoma kalba: %1$s." @@ -5401,8 +5401,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų " "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " diff --git a/po/lv.po b/po/lv.po index 6af3dd0f6..f5f07edf8 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Rādīt visu" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Meklēt" @@ -48,7 +48,7 @@ msgstr "Meklēt" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Pārslēgties uz nokopēto datubāzi" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -479,7 +479,7 @@ msgstr "Lietot tabulas" msgid "SQL query on database %s:" msgstr "SQL vaicājums uz datubāzes %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Izpildīt vaicājumu" @@ -518,7 +518,7 @@ msgstr "%s rezultāti tabulā %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "Tabulā(s):" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Pievienot" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "Struktūra" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "Likvidēt" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Iztukšot" @@ -625,8 +625,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -822,8 +822,8 @@ msgstr "Damps tika saglabāts failā %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1024,8 +1024,8 @@ msgid "Prev" msgstr "Iepriekšējie" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1101,27 +1101,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1129,37 +1129,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" @@ -1200,37 +1200,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "S" @@ -1375,7 +1375,7 @@ msgid "Comment" msgstr "Komentāri" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1519,8 +1519,8 @@ msgstr "Laipni lūgti %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1747,128 +1747,128 @@ msgstr "Izskaidrot SQL" msgid "Skip Explain SQL" msgstr "Neizskaidrot SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Izveidot PHP kodu" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Atjaunot" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Nepārbaudīt SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Pārbaudīt SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Laiks" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "baiti" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dienas, %s stundas, %s minūtes un %s sekundes" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Sākums" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Iepriekšējie" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Beigas" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "pāriet pie datubāzes "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2090,8 +2090,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4310,8 +4310,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5358,13 +5358,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL " "privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko " -"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %" -"spārlādēt privilēģijas%s pirms Jūs turpināt." +"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " +"%spārlādēt privilēģijas%s pirms Jūs turpināt." #: server_privileges.php:1645 msgid "The selected user was not found in the privilege table." diff --git a/po/mk.po b/po/mk.po index 92525e284..f48f22097 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: macedonian_cyrillic \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "прикажи ги сите" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Пребарување" @@ -48,7 +48,7 @@ msgstr "Пребарување" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Префрли се на копираната база на подато msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -479,7 +479,7 @@ msgstr "Користи табели" msgid "SQL query on database %s:" msgstr "SQL упит на базата на податоци %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Изврши SQL" @@ -518,7 +518,7 @@ msgstr "%s погодоци во табелата %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "во табела(и):" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Нов запис" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "Структура" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "Бриши" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Испразни" @@ -625,8 +625,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -822,8 +822,8 @@ msgstr "Содржината на базата на податоци е сочу #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1023,8 +1023,8 @@ msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1100,27 +1100,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1128,37 +1128,37 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "дек" @@ -1199,37 +1199,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Саб" @@ -1376,7 +1376,7 @@ msgid "Comment" msgstr "Коментари" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1520,8 +1520,8 @@ msgstr "%s Добредојдовте" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1750,130 +1750,130 @@ msgstr "Објасни SQL" msgid "Skip Explain SQL" msgstr "Прескокни ги објаснувањата на SQL-от" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Освежи" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Прескокни ја проверката на SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Провери SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Складишта" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Време" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "бајти" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. во %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s денови, %s часови, %s минути и %s секунди" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Почеток" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Претходна" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Крај" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Премин на базата "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2097,8 +2097,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4338,8 +4338,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5413,8 +5413,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL " "табелата на привилегии. Содржината на оваа табела табела може да се " diff --git a/po/mn.po b/po/mn.po index 4b03e2c32..d243fd362 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Бүгдийг харах" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -36,8 +36,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Хайх" @@ -47,7 +47,7 @@ msgstr "Хайх" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -278,7 +278,7 @@ msgstr "Хуулагдсан ӨС руу шилжих" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -477,7 +477,7 @@ msgstr "Хүснэгт хэрэглэх" msgid "SQL query on database %s:" msgstr "ӨС %s дахь SQL-асуулт:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Асуултыг илгээх" @@ -516,7 +516,7 @@ msgstr "%s олдоц(ууд) хүснэгт %s-д" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -563,13 +563,13 @@ msgstr "Хүснэгт(үүд) дотор:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Оруулах" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -582,7 +582,7 @@ msgstr "Бүтэц" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -592,7 +592,7 @@ msgstr "Устгах" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Хоосон" @@ -623,8 +623,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -813,8 +813,8 @@ msgstr "Асгалт %s файлд хадгалагдсан." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1012,8 +1012,8 @@ msgid "Prev" msgstr "Өмнөх" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1089,27 +1089,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1117,37 +1117,37 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "12р" @@ -1188,37 +1188,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Бя" @@ -1361,7 +1361,7 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1505,11 +1505,11 @@ msgstr "%s-д тавтай морилно уу" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" -"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1" -"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." +"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та " +"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." #: libraries/auth/config.auth.lib.php:116 msgid "" @@ -1730,130 +1730,130 @@ msgstr "SQL тайлбар" msgid "Skip Explain SQL" msgstr "SQL тайлбарлахыг орхих" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP-кодгүй" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-код үүсгэх" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Да.дуудах" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "SQL шалгалтыг алгасах" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL-ийг батлах" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Хөдөлгүүрүүд" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Цаг" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Байт" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "кБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y оны %B сарын %d., %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s өдөр, %s цаг, %s минут, %s секунд" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Эхлэл" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Өмнөх" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Төгс" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr ""%s" өгөгдлийн сан руу үсрэх." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2071,12 +2071,12 @@ msgstr "хүснэгтийн нэр" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны " -"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %" -"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." +"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " +"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." #: libraries/display_export.lib.php:202 msgid "remember template" @@ -4337,8 +4337,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Үл мэдэгдэх хэл: %1$s." @@ -5382,8 +5382,8 @@ msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн сан msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " "онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " diff --git a/po/ms.po b/po/ms.po index fc159d492..8b76b55cd 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Papar semua" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -34,8 +34,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Cari" @@ -45,7 +45,7 @@ msgstr "Cari" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -281,7 +281,7 @@ msgstr "" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -482,7 +482,7 @@ msgstr "Guna Jadual" msgid "SQL query on database %s:" msgstr "SQL- kueri pada pangkalan data %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Hantar Kueri" @@ -521,7 +521,7 @@ msgstr "%s padanan di dalam jadual %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -568,13 +568,13 @@ msgstr "Di dalam jadual:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Selit" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -587,7 +587,7 @@ msgstr "Struktur" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -597,7 +597,7 @@ msgstr "Gugur" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Kosong" @@ -628,8 +628,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -822,8 +822,8 @@ msgstr "" #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1025,8 +1025,8 @@ msgid "Prev" msgstr "Terdahulu" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1102,27 +1102,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1130,37 +1130,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dis" @@ -1201,37 +1201,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sab" @@ -1375,7 +1375,7 @@ msgid "Comment" msgstr "Komen" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1517,8 +1517,8 @@ msgstr "Selamat Datang ke %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1739,128 +1739,128 @@ msgstr "Terangkan Kod SQL" msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Tanpa Kod PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Cipta Kod PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Melangkau Pengesahan SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Mengesahkan SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Masa" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s minit dan %s saat" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Mula" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Terdahulu" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Tamat" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2079,8 +2079,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4288,8 +4288,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5278,8 +5278,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1645 diff --git a/po/nb.po b/po/nb.po index bca94d559..2aa1ea147 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-06-07 10:58+0200\n" "Last-Translator: \n" "Language-Team: norwegian \n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Vis alle" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Søk" @@ -48,7 +48,7 @@ msgstr "Søk" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -277,7 +277,7 @@ msgstr "Bytt til kopiert database" msgid "BLOB Repository" msgstr "BLOB lager" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -465,7 +465,7 @@ msgstr "Bruk tabeller" msgid "SQL query on database %s:" msgstr "SQL-spørring i database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Kjør spørring" @@ -504,7 +504,7 @@ msgstr "%s treff i tabell %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -549,13 +549,13 @@ msgstr "I kolonne:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Sett inn" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -568,7 +568,7 @@ msgstr "Struktur" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -578,7 +578,7 @@ msgstr "Slett" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tøm" @@ -609,8 +609,8 @@ msgstr "Overvåkning er ikke aktiv." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -800,8 +800,8 @@ msgstr "Dump har blitt lagret til fila %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen" "%s for måter å omgå denne begrensningen." @@ -1007,8 +1007,8 @@ msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1068,63 +1068,63 @@ msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Des" @@ -1157,37 +1157,37 @@ msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Lør" @@ -1317,7 +1317,7 @@ msgid "Comment" msgstr "Kommentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1462,8 +1462,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør " "kanskje bruke %1$ssetup script%2$s for å opprette en." @@ -1689,128 +1689,128 @@ msgstr "Forklar SQL" msgid "Skip Explain SQL" msgstr "Ikke forklar SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "uten PHP kode" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Lag PHP kode" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Oppdater" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Ikke teste SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Test SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "Inline redigering av denne spørringa" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profilering" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Tid" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B, %Y %H:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dager, %s timer, %s minutter og %s sekunder" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Start" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Forrige" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Slutt" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Hopp til databasen "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2023,8 +2023,8 @@ msgstr "tabellnavn" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke " "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " @@ -4387,8 +4387,8 @@ msgstr "" "Når vertstabellen er brukt så ignoreres dette feltet og verdier lagret i " "vertstabellen blir brukt istedet." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Ukjent språk: %1$s." @@ -4607,8 +4607,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"For en liste over tilgjengelige transformasjonsvalg, klikk på %" -"stransformasjonsbeskrivelser%s" +"For en liste over tilgjengelige transformasjonsvalg, klikk på " +"%stransformasjonsbeskrivelser%s" #: libraries/tbl_properties.inc.php:145 msgid "Transformation options" @@ -5408,8 +5408,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL " "privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de " @@ -7221,8 +7221,8 @@ msgid "" "to." msgstr "" "Hvis du føler at dette er nødvending, så bruk ekstra " -"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" +"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" "page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. " "Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en " "Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet." @@ -8132,7 +8132,6 @@ msgid "Propose table structure" msgstr "Foreslå tabellstruktur" #: tbl_structure.php:540 -#| msgid "Add column(s)" msgid "Add column" msgstr "Legg til kolonne(r)" diff --git a/po/nl.po b/po/nl.po index 116e24836..36b003c2e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-05-31 01:06+0200\n" "Last-Translator: Bjorn \n" "Language-Team: dutch \n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Toon alles" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Zoeken" @@ -48,7 +48,7 @@ msgstr "Zoeken" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Schakel naar de gekopieerde database" msgid "BLOB Repository" msgstr "BLOB Bewaarplaats" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -476,7 +476,7 @@ msgstr "Gebruik tabellen" msgid "SQL query on database %s:" msgstr "SQL-query op database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Query uitvoeren" @@ -515,7 +515,7 @@ msgstr "%s overeenkomst(en) in de tabel %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -562,13 +562,13 @@ msgstr "In het veld:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Invoegen" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -581,7 +581,7 @@ msgstr "Structuur" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -591,7 +591,7 @@ msgstr "Verwijderen" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Legen" @@ -622,8 +622,8 @@ msgstr "Tracking is niet actief." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." @@ -815,11 +815,11 @@ msgstr "Dump is bewaard als %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %" -"sdocumentatie%s voor mogelijkheden om dit te omzeilen." +"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de " +"%sdocumentatie%s voor mogelijkheden om dit te omzeilen." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1032,8 +1032,8 @@ msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1093,27 +1093,27 @@ msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1121,37 +1121,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" @@ -1184,37 +1184,37 @@ msgid "Saturday" msgstr "Zaterdag" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Zo" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Vr" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Za" @@ -1355,7 +1355,7 @@ msgid "Comment" msgstr "Opmerking" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1504,8 +1504,8 @@ msgstr "Welkom op %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u " "%1$ssetup script%2$s gebruiken om een te maken." @@ -1737,129 +1737,129 @@ msgstr "Verklaar SQL" msgid "Skip Explain SQL" msgstr "Uitleg SQL overslaan" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "zonder PHP-Code" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Genereer PHP-Code" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Vernieuw" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "SQL-validatie overslaan" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Valideer SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "Rechtstreekse bewerking van deze query" # "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen iets anders. -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "Rechtstreeks" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Tijd" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y om %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagen, %s uren, %s minuten en %s seconden" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Vorige" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Einde" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Ga naar database "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2084,8 +2084,8 @@ msgstr "tabelnaam" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het " "gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende " @@ -4505,8 +4505,8 @@ msgstr "" "Indien er gebruik wordt gemaakt van de Host tabel is dit veld niet van " "toepassing." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Onbekende taal: %1$s." @@ -5602,8 +5602,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL " "privileges tabel. De content van deze tabel kan verschillen met de rechten " diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index f721a2ec2..15a363201 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,10 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,7 +23,7 @@ msgstr "" msgid "Show all" msgstr "" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +39,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "" @@ -49,7 +50,7 @@ msgstr "" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -278,7 +279,7 @@ msgstr "" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -464,7 +465,7 @@ msgstr "" msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "" @@ -503,7 +504,7 @@ msgstr "" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -548,13 +549,13 @@ msgstr "" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -567,7 +568,7 @@ msgstr "" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -577,7 +578,7 @@ msgstr "" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "" @@ -608,8 +609,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, possible-php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -797,8 +798,8 @@ msgstr "" #: import.php:60 #, possible-php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -990,8 +991,8 @@ msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1051,63 +1052,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "" @@ -1140,37 +1141,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "" @@ -1295,7 +1296,7 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1437,8 +1438,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:107 #, possible-php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1645,128 +1646,128 @@ msgstr "" msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "" #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, possible-php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, possible-php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, possible-php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1977,8 +1978,8 @@ msgstr "" #, possible-php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4149,8 +4150,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, possible-php-format msgid "Unknown language: %1$s." msgstr "" @@ -5070,8 +5071,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1645 diff --git a/po/pl.po b/po/pl.po index b005fabcb..0f7474019 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: polish \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Pokaż wszystko" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Szukaj" @@ -48,7 +48,7 @@ msgstr "Szukaj" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Przełącz do skopiowanej bazy danych" msgid "BLOB Repository" msgstr "Repozytorium BLOBów" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -478,7 +478,7 @@ msgstr "Użyj tabel" msgid "SQL query on database %s:" msgstr "Zapytanie SQL dla bazy danych %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Wykonaj zapytania" @@ -517,7 +517,7 @@ msgstr "%s trafień wewnątrz tabeli %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -564,13 +564,13 @@ msgstr "Wewnątrz pola:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Dodaj" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -583,7 +583,7 @@ msgstr "Struktura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -593,7 +593,7 @@ msgstr "Usuń" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Wyczyść" @@ -624,11 +624,11 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %" -"sdocumentation%s." +"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w " +"%sdocumentation%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -825,8 +825,8 @@ msgstr "Zrzut został zapisany do pliku %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego " "limitu, proszę zapoznać się z %sdokumenacją%s." @@ -1038,8 +1038,8 @@ msgid "Prev" msgstr "Poprzednie" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1115,27 +1115,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1143,37 +1143,37 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Gru" @@ -1214,37 +1214,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sob" @@ -1393,7 +1393,7 @@ msgid "Comment" msgstr "Komentarz" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1541,8 +1541,8 @@ msgstr "Witamy w %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego " "stworzenia można użyć %1$sskryptu instalacyjnego%2$s." @@ -1774,130 +1774,130 @@ msgstr "Wyjaśnij SQL" msgid "Skip Explain SQL" msgstr "Pomiń wyjaśnienie SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "bez kodu PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Utwórz kod PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Odśwież" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Pomiń sprawdzanie poprawności SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Sprawdź poprawność SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Mechanizmy" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profilowanie" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Czas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "bajtów" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s godzin, %s minut i %s sekund" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Początek" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Poprzednie" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Koniec" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Skok do bazy danych "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2119,8 +2119,8 @@ msgstr "nazwa tabeli" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć " "jej napisów formatujących. Dodatkowo zostaną zastosowane następujące " @@ -4503,8 +4503,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Nieznany język: %1$s." @@ -4681,8 +4681,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy " -"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %" -"sdokumentacji%s." +"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w " +"%sdokumentacji%s." #: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140 #: libraries/tbl_links.inc.php:141 @@ -4736,8 +4736,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %" -"sopisy transformacji%s" +"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij " +"%sopisy transformacji%s" #: libraries/tbl_properties.inc.php:145 msgid "Transformation options" @@ -5116,8 +5116,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%" -"s." +"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja" +"%s." #: navigation.php:66 navigation.php:67 navigation.php:70 #, fuzzy @@ -5586,8 +5586,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień " "MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, " @@ -7384,8 +7384,8 @@ msgid "" "to." msgstr "" "Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień " -"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" +"bezpieczeństwa — [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" "page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/" "a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli " "używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników." diff --git a/po/pt.po b/po/pt.po index 9b1d72a9c..ea7135304 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: portuguese \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Mostrar tudo" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -34,8 +34,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Pesquisar" @@ -45,7 +45,7 @@ msgstr "Pesquisar" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Mudar para a tabela copiada" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -481,7 +481,7 @@ msgstr "Usar Tabelas" msgid "SQL query on database %s:" msgstr "Comando SQL na base de dados %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Executa Comando SQL" @@ -520,7 +520,7 @@ msgstr "%s resultado(s) na tabela %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -567,13 +567,13 @@ msgstr "Dentro de Tabela(s):" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Insere" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -586,7 +586,7 @@ msgstr "Estrutura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -596,7 +596,7 @@ msgstr "Elimina" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Limpa" @@ -627,8 +627,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -827,8 +827,8 @@ msgstr "O Dump foi gravado para o ficheiro %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1030,8 +1030,8 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1107,27 +1107,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1135,37 +1135,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dez" @@ -1206,37 +1206,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sab" @@ -1380,7 +1380,7 @@ msgid "Comment" msgstr "Comentários" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1522,8 +1522,8 @@ msgstr "Bemvindo ao %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1751,128 +1751,128 @@ msgstr "Explicar SQL" msgid "Skip Explain SQL" msgstr "Saltar Explicar SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Saltar a validação SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Tempo" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%B-%Y às %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Inicio" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fim" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Saltar para a Base de Dados "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2095,8 +2095,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4321,8 +4321,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5322,8 +5322,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da " "tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos " diff --git a/po/pt_BR.po b/po/pt_BR.po index 549d1003d..3df3eceb3 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-21 05:17+0200\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: brazilian_portuguese \n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Mostrar todos" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Procurar" @@ -49,7 +49,7 @@ msgstr "Procurar" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Mudar para o Banco de Dados copiado" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -479,7 +479,7 @@ msgstr "Usar tabelas" msgid "SQL query on database %s:" msgstr "Consulta no Banco de Dados %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Enviar consulta SQL" @@ -518,7 +518,7 @@ msgstr "%s resultado(s) dentro da tabela %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "Dentro do campo:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Inserir" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "Estrutura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "Eliminar" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Limpar" @@ -625,8 +625,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -824,8 +824,8 @@ msgstr "Dump foi salvo no arquivo %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentation%s para burlar esses limites." @@ -1036,8 +1036,8 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1113,27 +1113,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1141,37 +1141,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dez" @@ -1212,37 +1212,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sab" @@ -1389,7 +1389,7 @@ msgid "Comment" msgstr "Cometário" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1538,8 +1538,8 @@ msgstr "Bem vindo ao %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "A provável razão para isso é que você não criou o arquivo de configuração. " "Você deve usar o %1$ssetup script%2$s para criar um." @@ -1768,130 +1768,130 @@ msgstr "Explicar SQL" msgid "Skip Explain SQL" msgstr "Pular Explicação SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Atualizar" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Pular validação SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Engines" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Perfil" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Tempo" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d/%m/%Y às %Hh%Mmin" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Início" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fim" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Ir para o Banco de Dados "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2111,8 +2111,8 @@ msgstr "nome da tabela" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as " "strings de formatação de tempo. Adicionalmente a seguinte transformação " @@ -4476,8 +4476,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Linguagem desconhecida: %1$s." @@ -5560,8 +5560,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela " "de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos " diff --git a/po/ro.po b/po/ro.po index 0da022d2e..31b9f7e00 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-05-16 01:40+0200\n" "Last-Translator: \n" "Language-Team: romanian \n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.1\n" @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Arată toate" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -39,8 +39,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Caută" @@ -50,7 +50,7 @@ msgstr "Caută" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -281,7 +281,7 @@ msgstr "Schimbă la tabela copiată" msgid "BLOB Repository" msgstr "BLOB Repository" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -477,7 +477,7 @@ msgstr "Utilizare tabele" msgid "SQL query on database %s:" msgstr "Comandă SQL pe baza de date %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Trimite comanda" @@ -516,7 +516,7 @@ msgstr "%s rezultat(e) în interiorul tabelului %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -563,13 +563,13 @@ msgstr "În cîmpul:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Inserare" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -582,7 +582,7 @@ msgstr "Structură" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -592,7 +592,7 @@ msgstr "Aruncă" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Golește" @@ -623,8 +623,8 @@ msgstr "Monitorizarea nu este activată" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." @@ -823,11 +823,11 @@ msgstr "Copia a fost salvată în fișierul %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %" -"sdocumentație%s pentru căi de ocolire a acestei limite." +"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la " +"%sdocumentație%s pentru căi de ocolire a acestei limite." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1037,8 +1037,8 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1114,27 +1114,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1142,37 +1142,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" @@ -1213,37 +1213,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sâm" @@ -1390,7 +1390,7 @@ msgid "Comment" msgstr "Comentariu" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1540,8 +1540,8 @@ msgstr "Bine ați venit la %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Motivul probabil pentru aceasta este că nu ați creat un fișier de " "configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un " @@ -1775,130 +1775,130 @@ msgstr "Explică SQL" msgid "Skip Explain SQL" msgstr "Sari peste explicarea SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "fără cod PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Creează cod PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Reîncarcă" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Sari peste validarea SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validează SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motoare" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Creare profil" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Timp" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "octeți" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiO" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiO" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiO" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiO" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiO" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiO" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y la %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s zile, %s ore, %s minute și %s secunde" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Începe" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Sfîrșit" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Sari la baza de date "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2120,12 +2120,12 @@ msgstr "nume tabel" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:202 msgid "remember template" @@ -4499,8 +4499,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Limbă necunoscută: %1$s." @@ -5590,8 +5590,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de " "privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. " diff --git a/po/ru.po b/po/ru.po index aa323f72c..5f2afa82b 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-30 23:23+0200\n" "Last-Translator: Michal \n" "Language-Team: russian \n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Показать все" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -39,8 +39,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Поиск" @@ -50,7 +50,7 @@ msgstr "Поиск" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -281,7 +281,7 @@ msgstr "Переключиться на скопированную базу да msgid "BLOB Repository" msgstr "Хранилище данных типа BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -482,7 +482,7 @@ msgstr "Использовать таблицы" msgid "SQL query on database %s:" msgstr "SQL-запрос к базе данных %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Выполнить запрос" @@ -521,7 +521,7 @@ msgstr "%s вхождения(ий) в таблице %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -568,13 +568,13 @@ msgstr "Внутри поля:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Вставить" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -587,7 +587,7 @@ msgstr "Структура" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -597,7 +597,7 @@ msgstr "Удалить" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Очистить" @@ -628,8 +628,8 @@ msgstr "Слежение выключено." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." @@ -821,8 +821,8 @@ msgstr "Дамп был сохранен в файл %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." @@ -1038,8 +1038,8 @@ msgid "Prev" msgstr "Назад" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1115,27 +1115,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1143,37 +1143,37 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Дек" @@ -1214,37 +1214,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Сб" @@ -1393,7 +1393,7 @@ msgid "Comment" msgstr "Комментарий" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1539,8 +1539,8 @@ msgstr "Добро пожаловать в %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Возможная причина - отсутствие файла конфигурации. Для его создания вы " "можете воспользоваться %1$sсценарием установки%2$s." @@ -1772,131 +1772,131 @@ msgstr "Анализ запроса" msgid "Skip Explain SQL" msgstr "Убрать анализ" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Убрать PHP-код" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Обновить" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Убрать проверку синтаксиса SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Проверка синтаксиса" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Типы таблиц" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Профилирование" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Время" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Байт" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "КБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "ТБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "ПБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "ЭБ" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y г., %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дней, %s часов, %s минут и %s секунд" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Начало" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Назад" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Конец" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Перейти к базе данных "%s"" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Работа параметра "%s" подвержена ошибке, описание смотрите на %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2121,8 +2121,8 @@ msgstr "имя таблицы" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна " "вставка текущей даты и времени. Дополнительно могут быть использованы " @@ -4535,8 +4535,8 @@ msgstr "" "При использовании таблицы хостов, данное поле игнорируется и значения " "берутся из прописанных при конфигурации." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Неизвестный язык: %1$s." @@ -5633,8 +5633,8 @@ msgstr "Удалить базы данных, имена которых совп msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Примечание: phpMyAdmin получает информацию о пользовательских привилегиях " "непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может " @@ -6101,8 +6101,8 @@ msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "" -"Статистика запросов: со времени запуска, на сервер было отослано запросов - %" -"s." +"Статистика запросов: со времени запуска, на сервер было отослано запросов - " +"%s." #: server_status.php:498 msgid "per minute" @@ -7349,8 +7349,9 @@ msgstr "" "Вы установили [kbd]config[/kbd] идентификацию и ввели имя полльзователя с " "паролем для автоматического входа, что крайне не рекомендуется для рабочего " "хоста. Любой, кто сможет узнать ссылку к phpMyAdmin сможет напрямую попасть " -"в панель управления. Установите [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]тип идентификации[/a] в [kbd]cookie[/kbd] или [kbd]http[/kbd]." +"в панель управления. Установите [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server]тип идентификации[/a] в [kbd]cookie[/kbd] или [kbd]http[/" +"kbd]." #: setup/lib/messages.inc.php:239 msgid "You should use mysqli for performance reasons" @@ -8641,8 +8642,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %" -"s." +"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге " +"%s." #: themes.php:42 msgid "Get more themes!" @@ -8889,8 +8890,8 @@ msgstr "Переименовать таблицу в" #~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. " #~ "Please check your PHP configuration." #~ msgstr "" -#~ "Невозможно загрузить расширение [a@http://php.net/%1$s@Documentation][em]%" -#~ "1$s[/em][/a]! Проверьте настройки PHP." +#~ "Невозможно загрузить расширение [a@http://php.net/%1$s@Documentation]" +#~ "[em]%1$s[/em][/a]! Проверьте настройки PHP." #, fuzzy #~| msgid "" diff --git a/po/si.po b/po/si.po index a7414ea87..816ed7b2e 100644 --- a/po/si.po +++ b/po/si.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: sinhala \n" +"Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: si\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "සියල්ල පෙන්වන්න" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "සෙවීම" @@ -48,7 +48,7 @@ msgstr "සෙවීම" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Switch to copied database" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -479,7 +479,7 @@ msgstr "Use Tables" msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "විමසුම ඉදිරිපත් කරන්න" @@ -518,7 +518,7 @@ msgstr "%s match(es) inside table %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "වගු(ව) තුල:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "ඇතුල් කරන්න" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "සැකිල්ල" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "හලන්න" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "හිස්" @@ -625,8 +625,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -823,11 +823,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සේව් #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1034,8 +1034,8 @@ msgid "Prev" msgstr "පෙර" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1111,27 +1111,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1139,37 +1139,37 @@ msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "ජූනි" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "දෙසැම්බර්" @@ -1210,37 +1210,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "සදුදා" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "අගහරු‍වදා" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "බ්‍රහස්පතින්දා" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "සිකුරාදා:" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "සෙනසුරාදා" @@ -1385,7 +1385,7 @@ msgid "Comment" msgstr "විස්තරය" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1530,8 +1530,8 @@ msgstr "%s වෙත ආයුබෝවන්" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Probably reason of this is that you did not create configuration file. You " "might want to use %1$ssetup script%2$s to create one." @@ -1759,130 +1759,130 @@ msgstr "SQL ය පහදන්න " msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP කේත නොමැතිව" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "අලුත් කරන්න" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "යන්ත්‍රයන්" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "වේලාව" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "පෙර" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "අවසානය‍" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr ""%s" දත්තගබඩාව වෙත යන්න ." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2103,12 +2103,12 @@ msgstr "වගුවේ නම" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." #: libraries/display_export.lib.php:202 msgid "remember template" @@ -4453,8 +4453,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "%1$s නොදන්නා භාෂාවකි." @@ -5518,13 +5518,13 @@ msgstr "භාවිතා කරන්නන් හා සමාන නම් msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." #: server_privileges.php:1645 msgid "The selected user was not found in the privilege table." diff --git a/po/sk.po b/po/sk.po index fdee0fcd2..1862b1c84 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal \n" "Language-Team: slovak \n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Zobraziť všetko" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Hľadať" @@ -49,7 +49,7 @@ msgstr "Hľadať" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Prepnúť na skopírovanú databázu" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -482,7 +482,7 @@ msgstr "Použiť tabuľky" msgid "SQL query on database %s:" msgstr " SQL dopyt v databáze %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Odošli dopyt" @@ -521,7 +521,7 @@ msgstr "%s výskyt(ov)v tabuľke %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -569,13 +569,13 @@ msgstr "V tabuľke(ách):" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Vložiť" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -588,7 +588,7 @@ msgstr "Štruktúra" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -598,7 +598,7 @@ msgstr "Odstrániť" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Vyprázdniť" @@ -629,8 +629,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -825,8 +825,8 @@ msgstr "Dump (schéma) bol uložený do súboru %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si " "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." @@ -1039,8 +1039,8 @@ msgid "Prev" msgstr "Predchádzajúci" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1116,27 +1116,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1144,37 +1144,37 @@ msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" @@ -1215,37 +1215,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ne" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "So" @@ -1390,7 +1390,7 @@ msgid "Comment" msgstr "Komentár" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1536,8 +1536,8 @@ msgstr "Vitajte v %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho " "vytvorenie môžete použiť %1$skonfiguračný skript%2$s." @@ -1765,130 +1765,130 @@ msgstr "Vysvetliť SQL" msgid "Skip Explain SQL" msgstr "Preskočiť vysvetlenie SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "bez PHP kódu" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Obnoviť" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Preskočiť potvrdenie platnosti SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Potvrdiť platnosť SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Systémy" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Čas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bajtov" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%B, %Y - %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dní, %s hodín, %s minút a %s sekúnd" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Začiatok" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Predchádzajúci" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Koniec" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Na databázu "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2107,8 +2107,8 @@ msgstr "meno tabuľky" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť " "reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto " @@ -4466,8 +4466,8 @@ msgstr "" "Ak sa použije Host tabuľka, toto políčko je ignorovné a namiesto toho sa " "použijú hodnoty z tabuľky Host." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Neznámy jazyk: %1$s." @@ -4639,8 +4639,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú " -"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %" -"sdocumentation%s." +"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v " +"%sdocumentation%s." #: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140 #: libraries/tbl_links.inc.php:141 @@ -5527,13 +5527,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. " "Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli " -"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %" -"sznovunačítanie práv%s predtým ako budete pokračovať." +"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " +"%sznovunačítanie práv%s predtým ako budete pokračovať." #: server_privileges.php:1645 msgid "The selected user was not found in the privilege table." diff --git a/po/sl.po b/po/sl.po index 8725e3533..5e31e73fc 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-06-06 22:21+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" @@ -11,8 +11,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Pokaži vse" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Iskanje" @@ -49,7 +49,7 @@ msgstr "Iskanje" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -278,7 +278,7 @@ msgstr "Preklopi na kopirano podatkovno zbirko" msgid "BLOB Repository" msgstr "Shramba BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -468,7 +468,7 @@ msgstr "Uporabi tabele" msgid "SQL query on database %s:" msgstr "Poizvedba SQL na zbirki podatkov %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Izvedi poizvedbo" @@ -507,7 +507,7 @@ msgstr "%s zadetek(ov) v tabeli %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -552,13 +552,13 @@ msgstr "V stolpcu:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Vstavi" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -571,7 +571,7 @@ msgstr "Struktura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -581,7 +581,7 @@ msgstr "Zavrzi" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Izprazni" @@ -612,8 +612,8 @@ msgstr "Sledenje ni aktivno." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -803,8 +803,8 @@ msgstr "Dump je shranjen v datoteko %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si " "%sdokumentacijo%s za načine, kako obiti to omejitev." @@ -1011,8 +1011,8 @@ msgid "Prev" msgstr "Prejšnji" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1072,63 +1072,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "dec" @@ -1161,37 +1161,37 @@ msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "sob" @@ -1320,7 +1320,7 @@ msgid "Comment" msgstr "Komentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1471,8 +1471,8 @@ msgstr "Dobrodošli v %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite " "uporabiti %1$snastavitveni skript%2$s, da jo ustvarite." @@ -1700,128 +1700,128 @@ msgstr "Razloži stavek SQL" msgid "Skip Explain SQL" msgstr "Preskoči razlago stavka SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Brez kode PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Ustvari kodo PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Osveži" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Preskoči preverjanje pravilnosti SQL stavka" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Preveri pravilnost stavka SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "Urejanje te poizvedbe v vrstici" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "V vrstici" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profiliranje" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Čas" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ob %H.%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s ur, %s minut in %s sekund" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Začetek" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Prejšnji" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Konec" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Preskoči na podatkovno zbirko "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2039,8 +2039,8 @@ msgstr "ime tabele" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate " "nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. " @@ -4351,8 +4351,8 @@ msgstr "" "Ko je uporabljena tabela Host, je to polje prezrto in so namesto njega " "uporabljene vrednosti shranjene v tabeli Host." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Neznani jezik: %1$s." @@ -5370,8 +5370,8 @@ msgstr "Izbriši podatkovne zbirke, ki imajo enako ime kot uporabniki." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel " "privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki " @@ -8106,7 +8106,6 @@ msgid "Propose table structure" msgstr "Predlagaj strukturo tabele" #: tbl_structure.php:540 -#| msgid "Add column(s)" msgid "Add column" msgstr "Dodaj stolpec" diff --git a/po/sq.po b/po/sq.po index 0e761cc58..4f2d6e201 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-05-19 13:02+0200\n" "Last-Translator: Laurent \n" "Language-Team: albanian \n" +"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Shfaqi të gjithë" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Kërko" @@ -49,7 +49,7 @@ msgstr "Kërko" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Kalo tek databaza e kopjuar" msgid "BLOB Repository" msgstr "Repository BLOB" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -473,7 +473,7 @@ msgstr "Përdor tabelat" msgid "SQL query on database %s:" msgstr "Kërkesë SQL tek databaza %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Dërgo Query" @@ -512,7 +512,7 @@ msgstr "%s korrispondon(jnë) tek tabela %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -559,13 +559,13 @@ msgstr "Tek fusha:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Shto" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -578,7 +578,7 @@ msgstr "Struktura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -588,7 +588,7 @@ msgstr "Elemino" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Zbraz" @@ -619,8 +619,8 @@ msgstr "Gjurmimi nuk është aktiv." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -817,8 +817,8 @@ msgstr "Dump u ruajt tek file %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1018,8 +1018,8 @@ msgid "Prev" msgstr "Paraardhësi" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1095,27 +1095,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1123,37 +1123,37 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Qer" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Gsh" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dhj" @@ -1194,37 +1194,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Djl" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sht" @@ -1368,7 +1368,7 @@ msgid "Comment" msgstr "Komente" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1512,8 +1512,8 @@ msgstr "Mirësevini tek %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1737,128 +1737,128 @@ msgstr "Shpjego SQL" msgid "Skip Explain SQL" msgstr "Mos shpjego SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "pa kod PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Krijo kodin PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Rifresko" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Mos vleftëso SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Vleftëso SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Koha" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "." #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y at %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ditë, %s orë, %s minuta dhe %s sekonda" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Fillim" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Paraardhësi" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Fund" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Kalo tek databaza "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2078,8 +2078,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4303,8 +4303,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5362,8 +5362,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e " "privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të " diff --git a/po/sr.po b/po/sr.po index 54e160dbc..94c8ddb7a 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal \n" "Language-Team: serbian_cyrillic \n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Прикажи све" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -39,8 +39,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Претраживање" @@ -50,7 +50,7 @@ msgstr "Претраживање" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -281,7 +281,7 @@ msgstr "Пребаци се на копирану базу" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -482,7 +482,7 @@ msgstr "Користи табеле" msgid "SQL query on database %s:" msgstr "SQL упит на бази %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Изврши SQL упит" @@ -521,7 +521,7 @@ msgstr "%s погодака унутар табеле %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -568,13 +568,13 @@ msgstr "Унутар табела:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Нови запис" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -587,7 +587,7 @@ msgstr "Структура" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -597,7 +597,7 @@ msgstr "Одбаци" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Испразни" @@ -628,8 +628,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -827,11 +827,11 @@ msgstr "Садржај базе је сачуван у датотеку %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %" -"sдокументацију%s за начине превазилажења овог ограничења." +"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " +"%sдокументацију%s за начине превазилажења овог ограничења." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1037,8 +1037,8 @@ msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1114,27 +1114,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1142,37 +1142,37 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "дец" @@ -1213,37 +1213,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Суб" @@ -1391,7 +1391,7 @@ msgid "Comment" msgstr "Коментари" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1535,8 +1535,8 @@ msgstr "Добродошли на %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Вероватан разлог за ово је да нисте направили конфигурациону датотеку. " "Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили." @@ -1764,130 +1764,130 @@ msgstr "Објасни SQL" msgid "Skip Explain SQL" msgstr "Прескочи објашњавање SQL-a" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "без PHP кода" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Освежи" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Прескочи проверу SQL-a" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Провери SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Складиштења" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Профилисање" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Време" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "бајтова" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "КБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "ТБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "ПБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "ЕБ" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. у %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дана, %s сати, %s минута и %s секунди" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Почетак" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Претходна" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Крај" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Пређи на базу "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2110,8 +2110,8 @@ msgstr "назив табеле" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да " "користите стрингове за форматирање времена. Такође ће се десити и следеће " @@ -4460,8 +4460,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Непознат језик: %1$s." @@ -5539,8 +5539,8 @@ msgstr "Одбаци базе које се зову исто као корис msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела " "привилегија. Садржај ове табеле може се разликовати од привилегија које " diff --git a/po/sr@latin.po b/po/sr@latin.po index 876b984be..2f96a0609 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal \n" "Language-Team: serbian_latin \n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -20,7 +20,7 @@ msgstr "" msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -39,8 +39,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Pretraživanje" @@ -50,7 +50,7 @@ msgstr "Pretraživanje" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -281,7 +281,7 @@ msgstr "Prebaci se na kopiranu bazu" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -482,7 +482,7 @@ msgstr "Koristi tabele" msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Izvrši SQL upit" @@ -521,7 +521,7 @@ msgstr "%s pogodaka unutar tabele %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -568,13 +568,13 @@ msgstr "Unutar tabela:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Novi zapis" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -587,7 +587,7 @@ msgstr "Struktura" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -597,7 +597,7 @@ msgstr "Odbaci" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Isprazni" @@ -628,8 +628,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -827,11 +827,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %" -"sdokumentaciju%s za načine prevazilaženja ovog ograničenja." +"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte " +"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1037,8 +1037,8 @@ msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1114,27 +1114,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1142,37 +1142,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "dec" @@ -1213,37 +1213,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sub" @@ -1391,7 +1391,7 @@ msgid "Comment" msgstr "Komentari" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1535,8 +1535,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. " "Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili." @@ -1764,130 +1764,130 @@ msgstr "Objasni SQL" msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Osveži" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Preskoči proveru SQL-a" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Proveri SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Skladištenja" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profilisanje" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Vreme" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "bajtova" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Početak" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Prethodna" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Kraj" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2110,8 +2110,8 @@ msgstr "naziv tabele" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da " "koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće " @@ -4462,8 +4462,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Nepoznat jezik: %1$s." @@ -5543,8 +5543,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " diff --git a/po/sv.po b/po/sv.po index fbbce4484..6f1ed001f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: swedish \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Visa alla" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Sök" @@ -48,7 +48,7 @@ msgstr "Sök" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Byt till kopierad databas" msgid "BLOB Repository" msgstr "BLOB-förvaringsplats" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -478,7 +478,7 @@ msgstr "Använd tabeller" msgid "SQL query on database %s:" msgstr "SQL-fråga i databas %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Kör fråga" @@ -517,7 +517,7 @@ msgstr "%s träff(ar) i tabell %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -564,13 +564,13 @@ msgstr "I fält:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Lägg till" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -583,7 +583,7 @@ msgstr "Struktur" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -593,7 +593,7 @@ msgstr "Radera" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Töm" @@ -624,8 +624,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentation%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -823,8 +823,8 @@ msgstr "SQL-satserna har sparats till filen %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s " "för metoder att gå runt denna begränsning." @@ -1034,8 +1034,8 @@ msgid "Prev" msgstr "Föregående" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1111,27 +1111,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "januari" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "februari" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "april" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1139,37 +1139,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "juni" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "juli" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "augusti" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "september" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "oktober" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "november" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "december" @@ -1210,37 +1210,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Lör" @@ -1388,7 +1388,7 @@ msgid "Comment" msgstr "Kommentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1537,8 +1537,8 @@ msgstr "Välkommen till %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Trolig orsak till detta är att du inte skapade en konfigurationsfil. Du vill " "kanske använda %1$suppsättningsskript%2$s för att skapa en." @@ -1770,130 +1770,130 @@ msgstr "Förklara SQL-kod" msgid "Skip Explain SQL" msgstr "Utan SQL-förklaring" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "Utan PHP-kod" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Skapa PHP-kod" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Uppdatera" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Utan SQL-validering" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validera SQL-kod" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motorer" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Under produktion" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Tid" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y kl %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagar, %s timmar, %s minuter och %s sekunder" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Början" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Föregående" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Slutet" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Hoppa till databas "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2112,8 +2112,8 @@ msgstr "tabellnamn" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Detta värde tolkas mha %1$sstrftime%2$s, så du kan använda strängar med " "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " @@ -4494,8 +4494,8 @@ msgstr "" "När värdtabellen används ignoreras detta fält och värden lagrade i " "värdtabllen används istället." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Okänt språk: %1$s." @@ -5104,8 +5104,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL serverversion %" -"s. Detta kan orsaka oförutsägbara beteenden." +"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL serverversion " +"%s. Detta kan orsaka oförutsägbara beteenden." #: main.php:358 #, php-format @@ -5588,8 +5588,8 @@ msgstr "Ta bort databaserna med samma namn som användarna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Anm: phpMyAdmin hämtar användarnas privilegier direkt från MySQL:s " "privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från " @@ -7422,8 +7422,8 @@ msgid "" "to." msgstr "" "Om du känner att detta är nödvändigt, använd ytterligare " -"säkerhetsinställningar - [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server_config]värdautentisering[/a] och [a@?page=form&" +"säkerhetsinställningar - [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server_config]värdautentisering[/a] och [a@?page=form&" "formset=features#tab_Security]betrodd proxyserverlista[/a]. Dock är kanske " "IP-baserat skydd inte pålitligt om din IP-adress hör till en ISP som " "tusentals användare, inklusive du, är ansluten till." diff --git a/po/ta.po b/po/ta.po index 4bd427a38..ffe3d023c 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" +"Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -22,7 +22,7 @@ msgstr "" msgid "Show all" msgstr "" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "" @@ -49,7 +49,7 @@ msgstr "" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -278,7 +278,7 @@ msgstr "" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -468,7 +468,7 @@ msgstr "" msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "" @@ -507,7 +507,7 @@ msgstr "" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -552,13 +552,13 @@ msgstr "" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -571,7 +571,7 @@ msgstr "" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -581,7 +581,7 @@ msgstr "" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "" @@ -612,8 +612,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -801,8 +801,8 @@ msgstr "" #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -994,8 +994,8 @@ msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1069,27 +1069,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1097,37 +1097,37 @@ msgid "May" msgstr "வைகாசி" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "மார்கழி" @@ -1168,37 +1168,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "திங்கள்" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "செவ்வாய்" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "புதன்" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "வியாழன்" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "வெள்ளி" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "சனி" @@ -1337,7 +1337,7 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1479,8 +1479,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s " "பயன்படுத்தலாம்" @@ -1692,128 +1692,128 @@ msgstr "" msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "உள்வரிசை" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s செக்கன்கள்" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2024,8 +2024,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4196,8 +4196,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5120,8 +5120,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1645 diff --git a/po/te.po b/po/te.po index c2630eb79..0094b87c9 100644 --- a/po/te.po +++ b/po/te.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-05-26 14:20+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" +"Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -22,7 +22,7 @@ msgstr "" msgid "Show all" msgstr "అన్నీ చూపించు" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -39,8 +39,8 @@ msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "శోధించు" @@ -50,7 +50,7 @@ msgstr "శోధించు" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -285,7 +285,7 @@ msgstr "" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -477,7 +477,7 @@ msgstr "" msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "" @@ -516,7 +516,7 @@ msgstr "" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -562,13 +562,13 @@ msgstr "" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -581,7 +581,7 @@ msgstr "" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -592,7 +592,7 @@ msgstr "" # మొదటి అనువాదము #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "ఖాళీ" @@ -623,8 +623,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" # మొదటి అనువాదము @@ -815,8 +815,8 @@ msgstr "" #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1013,8 +1013,8 @@ msgstr "క్రితము" # మొదటి అనువాదము #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1090,27 +1090,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1118,37 +1118,37 @@ msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "డిసెం" @@ -1189,37 +1189,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "శని" @@ -1365,7 +1365,7 @@ msgid "Comment" msgstr "వ్యాఖ్య" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1508,8 +1508,8 @@ msgstr "%sకి స్వాగతం" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1719,130 +1719,130 @@ msgstr "" msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "సమయం" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "" #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు" # మొదటి అనువాదము -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "మొదలు" # మొదటి అనువాదము -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "క్రితము" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "ముగింపు" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2054,8 +2054,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4249,8 +4249,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5196,8 +5196,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1645 diff --git a/po/th.po b/po/th.po index c10238637..ed971c88b 100644 --- a/po/th.po +++ b/po/th.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "แสดงทั้งหมด" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -34,8 +34,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "ค้นหา" @@ -45,7 +45,7 @@ msgstr "ค้นหา" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "สลับไปที่ตารางที่ถูกทำสำ msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -478,7 +478,7 @@ msgstr "ใช้ตาราง" msgid "SQL query on database %s:" msgstr "คำค้นบนฐานข้อมูล %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "ประมวลผลคำค้น" @@ -517,7 +517,7 @@ msgstr "พบ %s ผลลัพธ์ที่ตรงในตาราง < #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -564,13 +564,13 @@ msgstr "ในตาราง:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "แทรก" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -583,7 +583,7 @@ msgstr "โครงสร้าง" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -593,7 +593,7 @@ msgstr "โยนทิ้ง" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "ลบข้อมูล" @@ -624,8 +624,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -819,8 +819,8 @@ msgstr "" #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1020,8 +1020,8 @@ msgid "Prev" msgstr "ก่อนหน้า" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1097,27 +1097,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1125,37 +1125,37 @@ msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "ธ.ค." @@ -1196,37 +1196,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "อา." #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "ส." @@ -1370,7 +1370,7 @@ msgid "Comment" msgstr "หมายเหตุ" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1514,8 +1514,8 @@ msgstr "%s ยินดีต้อนรับ" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1733,128 +1733,128 @@ msgstr "อธิบาย SQL" msgid "Skip Explain SQL" msgstr "ไม่ต้องอธิบาย SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "เรียกใหม่" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "ไม่ต้องตรวจสอบ SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "ตรวจสอบ SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "เวลา" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "ไบต์" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "กิโลไบต์" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "เมกกะไบต์" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "กิกะไบต์" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "เทอราไบต์" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "เพตตะไบต์" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "เอกซะไบต์" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y %Rน." -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "จุดเริ่มต้น" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "ก่อนหน้า" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "ท้ายสุด" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "กระโดดไปที่ฐานข้อมูล "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2073,8 +2073,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4286,8 +4286,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5276,8 +5276,8 @@ msgstr "โยนฐานข้อมูลที่มีชื่อเดี msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1645 diff --git a/po/tr.po b/po/tr.po index bd1ea9767..f24f3ab23 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-04-03 11:44+0200\n" "Last-Translator: \n" "Language-Team: turkish \n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Tümünü göster" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Ara" @@ -49,7 +49,7 @@ msgstr "Ara" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Kopyalanmış veritabanına geç." msgid "BLOB Repository" msgstr "BLOB Havuzu" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -478,7 +478,7 @@ msgstr "Tabloları kullan" msgid "SQL query on database %s:" msgstr "%s veritabanındaki SQL sorgusu:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Sorguyu Gönder" @@ -517,7 +517,7 @@ msgstr "%s eşleşme, %s tablosu içinde" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -564,13 +564,13 @@ msgstr "İç alan:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Ekle" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -583,7 +583,7 @@ msgstr "Yapı" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -593,7 +593,7 @@ msgstr "Kaldır" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Boşalt" @@ -624,8 +624,8 @@ msgstr "İzleme aktif değil." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sdocumentation%s " "belgesinden yararlanın." @@ -817,8 +817,8 @@ msgstr "Döküm dosyası %s dosyasına kaydedildi" #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu " "bulmak için %sbelgelere%s başvurun." @@ -1032,8 +1032,8 @@ msgid "Prev" msgstr "Önceki" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1109,27 +1109,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Ocak" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Şubat" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mart" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1137,37 +1137,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Eylül" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Ekim" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Ara" @@ -1208,37 +1208,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Salı" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Cu" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Ctesi" @@ -1386,7 +1386,7 @@ msgid "Comment" msgstr "Yorum" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1527,8 +1527,8 @@ msgstr "%s sürümüne Hoş Geldiniz" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir " "tane oluşturmak için %1$skurulum programcığı%2$s kullanmak isteyebilirsiniz." @@ -1762,130 +1762,130 @@ msgstr "SQL'i açıkla" msgid "Skip Explain SQL" msgstr "SQL Açıklamasını atla" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP Kodsuz" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP Kodu oluştur" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Yenile" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "SQL Onaylamayı atla" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL'i onayla" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Motorlar" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profil çıkart" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Süre" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "B" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PiB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EiB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M:%S" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s dakika ve %s saniye" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Yukarı" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Önceki" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Son" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr ""%s" veritabanına git." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2110,8 +2110,8 @@ msgstr "tablo adı" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman " "biçimlendirme dizgisi kullanabilirsiniz. İlave olarak yandaki dönüşümler " @@ -4506,8 +4506,8 @@ msgstr "" "Anamakine tablosu kullanıldığında bu alan yoksayılır ve yerine Anamakine " "tablosunda depolanan değerler kullanılır." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Bilinmeyen dil: %1$s." @@ -5602,8 +5602,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki " "tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse " @@ -7956,8 +7956,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %" -"s, %s tarihinde yayınlandı." +"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm " +"%s, %s tarihinde yayınlandı." #: setup/lib/messages.inc.php:372 #, fuzzy, php-format diff --git a/po/tt.po b/po/tt.po index f9238f5ec..3c3eb03ab 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-30 23:14+0200\n" "Last-Translator: Michal \n" "Language-Team: tatarish \n" +"Language: tt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: tt\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "Barısın kürsät" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -38,8 +38,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Ezläw" @@ -49,7 +49,7 @@ msgstr "Ezläw" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -280,7 +280,7 @@ msgstr "Kübäytelgän biremlekkä küçäse" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -479,7 +479,7 @@ msgstr "Tüşämä qullanıp" msgid "SQL query on database %s:" msgstr "%s biremlegenä SQL-soraw:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Sorawnı Yulla" @@ -518,7 +518,7 @@ msgstr "%s kileşü bar, %s atlı tüşämädä" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "Kiläse tüşämä eçendä:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Östäw" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "Tözeleş" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "Beter" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Buşat" @@ -625,8 +625,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -825,8 +825,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1025,8 +1025,8 @@ msgid "Prev" msgstr "Uzğan" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1102,27 +1102,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1130,37 +1130,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dek" @@ -1201,37 +1201,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Şmb" @@ -1376,7 +1376,7 @@ msgid "Comment" msgstr "Açıqlama" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1520,8 +1520,8 @@ msgstr "%s siña İsäñme di" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1747,130 +1747,130 @@ msgstr "SQL Centekläw" msgid "Skip Explain SQL" msgstr "SQL Centeklämäskä" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP Kodısız" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-Kod yasa" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Yañart" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "SQL Tikşermäskä" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL'nı Tikşer" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Engine" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Waqıt" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bayt" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y.%m.%d, %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s kön, %s säğät, %s minut ta %s sekund" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Başlawğa" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Uzğan" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Azaq" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr ""%s" biremlegenä küç." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2090,8 +2090,8 @@ msgstr "tüşämä adı" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4335,8 +4335,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Belgesez tel: %1$s." @@ -4509,8 +4509,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %" -"squllanmada%s uqıp bula." +"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında " +"%squllanmada%s uqıp bula." #: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140 #: libraries/tbl_links.inc.php:141 @@ -5391,8 +5391,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server " "qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege " diff --git a/po/uk.po b/po/uk.po index 1943b5d1d..d719a515f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: ukrainian \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Показати все" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -34,8 +34,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Шукати" @@ -45,7 +45,7 @@ msgstr "Шукати" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -276,7 +276,7 @@ msgstr "" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -475,7 +475,7 @@ msgstr "Використовувати таблиці" msgid "SQL query on database %s:" msgstr "SQL-запит до БД %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Виконати запит" @@ -514,7 +514,7 @@ msgstr "%s співпадіння у таблиці %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -561,13 +561,13 @@ msgstr "Всередині таблиць:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Вставити" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -580,7 +580,7 @@ msgstr "Структура" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -590,7 +590,7 @@ msgstr "Знищити" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Очистити" @@ -621,8 +621,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -812,8 +812,8 @@ msgstr "Dump збережено у файл %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1011,8 +1011,8 @@ msgid "Prev" msgstr "Назад" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1088,27 +1088,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1116,37 +1116,37 @@ msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Гру" @@ -1187,37 +1187,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Нд" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Сб" @@ -1360,7 +1360,7 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1502,8 +1502,8 @@ msgstr "Ласкаво просимо до %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1729,128 +1729,128 @@ msgstr "Тлумачити SQL" msgid "Skip Explain SQL" msgstr "Не тлумачити SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "без PHP коду" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Створити PHP код" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "Не перевіряти SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Перевірити SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Час" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Байт" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "кБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y р., %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s днів, %s годин, %s хвилин і %s секунд" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Початок" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Назад" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Кінець" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "Перейти до бази даних "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2066,8 +2066,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4266,8 +4266,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -4494,8 +4494,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %" -"sописи перетворень%s" +"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть " +"%sописи перетворень%s" #: libraries/tbl_properties.inc.php:145 msgid "Transformation options" @@ -5297,8 +5297,8 @@ msgstr "Усунути бази даних, які мають такі ж наз msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав " "MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються " diff --git a/po/ur.po b/po/ur.po index ff3a006b7..caa810c7b 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-05-14 12:35+0200\n" "Last-Translator: \n" "Language-Team: Urdu \n" +"Language: ur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -22,7 +22,7 @@ msgstr "" msgid "Show all" msgstr "سبھی دکھاو" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -41,8 +41,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "تلاش" @@ -52,7 +52,7 @@ msgstr "تلاش" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -283,7 +283,7 @@ msgstr "Switch to copied database" msgid "BLOB Repository" msgstr "BLOB Repository" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -476,7 +476,7 @@ msgstr "ٹیبلز استعمال کریں" msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "Submit Query" @@ -515,7 +515,7 @@ msgstr "%s match(es) inside table %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -562,13 +562,13 @@ msgstr "فیلڈ کے اندر:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "داخل کریں" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -581,7 +581,7 @@ msgstr "ساخت" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -591,7 +591,7 @@ msgstr "نکلالنا" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "خالی" @@ -622,11 +622,11 @@ msgstr "ٹریکنگ ایکٹو نہیں ہے" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 #: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74 @@ -814,11 +814,11 @@ msgstr "Dump has been saved to file %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1018,8 +1018,8 @@ msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1079,63 +1079,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "" @@ -1168,37 +1168,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "" @@ -1323,7 +1323,7 @@ msgid "Comment" msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1465,8 +1465,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:116 @@ -1673,128 +1673,128 @@ msgstr "" msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "" #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2007,8 +2007,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4179,8 +4179,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -5106,8 +5106,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1645 diff --git a/po/uz.po b/po/uz.po index f854a487a..1ee6e7f24 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: uzbek_cyrillic \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Барчасини кўрсатиш" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -36,8 +36,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Қидириш" @@ -47,7 +47,7 @@ msgstr "Қидириш" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -278,7 +278,7 @@ msgstr "Нусха олинган маълумотлар базасига ўти msgid "BLOB Repository" msgstr "BLOB омбори" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -477,7 +477,7 @@ msgstr "Жадвалларни ишлатиш" msgid "SQL query on database %s:" msgstr "\"%s\" маълумотлар базасига SQL-сўров: " -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "сўровни бажариш" @@ -516,7 +516,7 @@ msgstr "\"%s\" жадвалида ўхшашликлар сони \"%s\" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -563,13 +563,13 @@ msgstr "Қуйидаги майдон(лар)да қидириш: " #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Қўйиш" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -582,7 +582,7 @@ msgstr "Тузилиши" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -592,7 +592,7 @@ msgstr "Ўчириш" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Тозалаш" @@ -623,8 +623,8 @@ msgstr "Кузатиш фаол эмас." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." @@ -816,11 +816,11 @@ msgstr "Дамп \"%s\" файлида сақланди." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" -"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %" -"sдокументацияда%s келтирилган." +"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " +"%sдокументацияда%s келтирилган." #: import.php:279 import.php:332 libraries/File.class.php:849 #: libraries/File.class.php:961 @@ -1035,8 +1035,8 @@ msgid "Prev" msgstr "Орқага" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1112,27 +1112,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1140,37 +1140,37 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Дек" @@ -1211,37 +1211,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Шан" @@ -1392,7 +1392,7 @@ msgid "Comment" msgstr "Изоҳ" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1537,8 +1537,8 @@ msgstr "\"%s\" дастурига хуш келибсиз" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш " "сценарийсидан%2$s фойдаланишингиз мумкин." @@ -1775,132 +1775,132 @@ msgstr "Сўров таҳлили" msgid "Skip Explain SQL" msgstr "Таҳлил керак эмас" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP-код олиб ташлаш" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Янгилаш" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "SQL синтаксиси текширувини олиб ташлаш" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL тўғрилигини текшириш" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Жадвал турлари" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Профиллаштириш" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Вақт" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Байт" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "КБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "МБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "ГБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "ТБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "ПБ" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "ЭБ" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y й., %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Боши" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Орқага" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Охири" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr " \"%s\" маълумотлар базасига ўтиш" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" " \"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил " "маълумот учун қаранг \"%s\"" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2126,12 +2126,12 @@ msgstr "жадвал номи" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги " -"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %" -"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." +"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " +"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." #: libraries/display_export.lib.php:202 msgid "remember template" @@ -3935,8 +3935,8 @@ msgstr "Очиқ файллар сони." #: libraries/messages.inc.php:137 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" -"\" функцияси ёрдамида очилган файлга айтилади." +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" +"()\" функцияси ёрдамида очилган файлга айтилади." #: libraries/messages.inc.php:138 msgid "The number of tables that are open." @@ -4543,8 +4543,8 @@ msgstr "" "Агар Хостлар жадвалидан фойдаланилса, ушбу майдонга эътибор берилмайди ва " "унинг ўрнига Хостлар жадвалидаги қийматлар ишлатилади." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Номаълум тил: %1$s." @@ -5644,8 +5644,8 @@ msgstr "Фойдаланувчилар номлари билан аталган msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни " "тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги " @@ -7626,8 +7626,8 @@ msgstr "\"config\" аутентификация усули пароли" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]" -"\"pma_pdf_pages\"[/kbd]" +"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: " +"[kbd]\"pma_pdf_pages\"[/kbd]" #: setup/lib/messages.inc.php:291 msgid "PDF schema: pages table" @@ -7767,8 +7767,8 @@ msgstr "SSL уланишдан фойдаланиш" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]" -"\"pma_table_coords\"[/kbd]" +"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: " +"[kbd]\"pma_table_coords\"[/kbd]" #: setup/lib/messages.inc.php:319 msgid "PDF schema: table coordinates" diff --git a/po/uz@latin.po b/po/uz@latin.po index c778a3a93..fc971bc08 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: uzbek_latin \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "Barchasini ko‘rsatish" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Qidirish" @@ -48,7 +48,7 @@ msgstr "Qidirish" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -279,7 +279,7 @@ msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" msgid "BLOB Repository" msgstr "BLOB ombori" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -478,7 +478,7 @@ msgstr "Jadvallarni ishlatish" msgid "SQL query on database %s:" msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov: " -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "so‘rovni bajarish" @@ -517,7 +517,7 @@ msgstr "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -565,13 +565,13 @@ msgstr "Quyidagi maydon(lar)da qidirish: " #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "Qo‘yish" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -584,7 +584,7 @@ msgstr "Tuzilishi" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -594,7 +594,7 @@ msgstr "O‘chirish" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tozalash" @@ -625,8 +625,8 @@ msgstr "Kuzatish faol emas." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." @@ -818,8 +818,8 @@ msgstr "Damp \"%s\" faylida saqlandi." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." @@ -1040,8 +1040,8 @@ msgid "Prev" msgstr "Orqaga" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1117,27 +1117,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1145,37 +1145,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dek" @@ -1216,37 +1216,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Shan" @@ -1397,7 +1397,7 @@ msgid "Comment" msgstr "Izoh" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1542,8 +1542,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish " "ssenariysidan%2$s foydalanishingiz mumkin." @@ -1782,132 +1782,132 @@ msgstr "So‘rov tahlili" msgid "Skip Explain SQL" msgstr "Tahlil kerak emas" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "PHP-kod olib tashlash" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-kod" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Yangilash" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "SQL sintaksisi tekshiruvini olib tashlash" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "Jadval turlari" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "Profillashtirish" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "Vaqt" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bayt" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr " " #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "," #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y y., %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" kun, \"%s\" soat, \"%s\" minut va \"%s\" sekund" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "Boshi" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "Orqaga" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "Oxiri" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr " \"%s\" ma`lumotlar bazasiga o‘tish" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" " \"%s\" parametrining ishi ma`lum xatolikka olib kelishi mumkin, batafsil " "ma`lumot uchun qarang \"%s\"" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1981,8 +1981,8 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" -"\"FAQ 3.11\"[/a]ga qarang" +"Taxminiy bo‘lishi mumkin. [a@./Documentation." +"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" #: libraries/db_structure.lib.php:69 server_databases.php:142 #: tbl_printview.php:336 tbl_structure.php:682 @@ -2133,8 +2133,8 @@ msgstr "jadval nomi" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun " "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " @@ -4571,8 +4571,8 @@ msgstr "" "Agar Xostlar jadvalidan foydalanilsa, ushbu maydonga e`tibor berilmaydi va " "uning o‘rniga Xostlar jadvalidagi qiymatlar ishlatiladi." -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "Noma`lum til: %1$s." @@ -5681,8 +5681,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni " "to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi " @@ -7411,9 +7411,9 @@ msgstr "" "real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog " "adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, " "serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga " -"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/" -"kbd] deb belgilash tavsiya etiladi." +"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=" +"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http" +"[/kbd] deb belgilash tavsiya etiladi." #: setup/lib/messages.inc.php:239 msgid "You should use mysqli for performance reasons" @@ -7561,9 +7561,9 @@ msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]" -"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" -"larga qarang" +"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?" +"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql." +"com/19588]\"MySQL Bugs\"[/a]larga qarang" #: setup/lib/messages.inc.php:270 msgid "Disable use of INFORMATION_SCHEMA" @@ -7682,8 +7682,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]" -"\"pma_pdf_pages\"[/kbd]" +"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: " +"[kbd]\"pma_pdf_pages\"[/kbd]" #: setup/lib/messages.inc.php:291 msgid "PDF schema: pages table" @@ -7697,8 +7697,8 @@ msgid "" msgstr "" "Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. " "Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]" -"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]" -"\"phpmyadmin\"[/kbd]" +"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: " +"[kbd]\"phpmyadmin\"[/kbd]" #: setup/lib/messages.inc.php:294 msgid "Port on which MySQL server is listening, leave empty for default" @@ -7823,8 +7823,8 @@ msgstr "SSL ulanishdan foydalanish" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" -"\"pma_table_coords\"[/kbd]" +"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: " +"[kbd]\"pma_table_coords\"[/kbd]" #: setup/lib/messages.inc.php:319 msgid "PDF schema: table coordinates" diff --git a/po/zh_CN.po b/po/zh_CN.po index 3adc8f8d7..b0dea5ce5 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-06-04 14:09+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -19,7 +19,7 @@ msgstr "" msgid "Show all" msgstr "全部显示" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -37,8 +37,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "搜索" @@ -48,7 +48,7 @@ msgstr "搜索" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -277,7 +277,7 @@ msgstr "切换到复制的数据库" msgid "BLOB Repository" msgstr "BLOB 容器" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -464,7 +464,7 @@ msgstr "使用表" msgid "SQL query on database %s:" msgstr "在数据库 %s 执行 SQL 语句:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "提交查询" @@ -503,7 +503,7 @@ msgstr "%s 个匹配 - 于表 %s 中" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -550,13 +550,13 @@ msgstr "包含字段:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "插入" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -569,7 +569,7 @@ msgstr "结构" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -579,7 +579,7 @@ msgstr "删除" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "清空" @@ -610,8 +610,8 @@ msgstr "追踪已禁用。" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "该视图最少包含的行数,参见%s文档%s。" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -799,8 +799,8 @@ msgstr "转存已经保存到文件 %s 中。" #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -997,8 +997,8 @@ msgid "Prev" msgstr "上个月" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1058,63 +1058,63 @@ msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "十二月" @@ -1147,37 +1147,37 @@ msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "周六" @@ -1304,7 +1304,7 @@ msgid "Comment" msgstr "注释" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1443,8 +1443,8 @@ msgstr "欢迎使用 %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "" "你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。" @@ -1662,128 +1662,128 @@ msgstr "解释 SQL" msgid "Skip Explain SQL" msgstr "略过解释 SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "无 PHP 代码" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "创建 PHP 代码" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "刷新" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "略过校验 SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "校验 SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "在本页面编辑此查询" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 msgid "Inline" msgstr "内联" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "概要" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "时间" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "字节" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小时,%s 分 %s 秒" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "开始" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "上一个" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "结束" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "跳转到数据库“%s”。" -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -1997,8 +1997,8 @@ msgstr "数据表名" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" "这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。" @@ -4256,8 +4256,8 @@ msgid "" "table are used instead." msgstr "使用主机表时,此处的数据会被主机表中的数据所替换。" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "未知的语言:%1$s." @@ -5247,12 +5247,12 @@ msgstr "删除与用户同名的数据库。" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容" -"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%" -"s。" +"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" +"限%s。" #: server_privileges.php:1645 msgid "The selected user was not found in the privilege table." @@ -6830,9 +6830,9 @@ msgid "" msgstr "" "您设置了 [kbd]config[/kbd] 认证方式,且为了能够自动登录而保存了用户名和密码," "但在常用主机上不建议这样设置。如果有人知道 phpMyAdmin 的地址,他们就能够进入 " -"phpMyAdmin 的管理界面。建议将[a@?page=servers&mode=edit&id=%1" -"$d#tab_Server]登录认证方式[/a]设置为 [kbd]cookie 认证[/kbd]或 [kbd]HTTP 认证" -"[/kbd]。" +"phpMyAdmin 的管理界面。建议将[a@?page=servers&mode=edit&id=" +"%1$d#tab_Server]登录认证方式[/a]设置为 [kbd]cookie 认证[/kbd]或 [kbd]HTTP 认" +"证[/kbd]。" #: setup/lib/messages.inc.php:239 msgid "You should use mysqli for performance reasons" diff --git a/po/zh_TW.po b/po/zh_TW.po index 70ba34fec..5a28193df 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-06-04 16:07-0400\n" +"POT-Creation-Date: 2010-06-07 22:09+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: chinese_traditional \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 @@ -18,7 +18,7 @@ msgstr "" msgid "Show all" msgstr "顯示全部" -#: browse_foreigners.php:82 libraries/common.lib.php:2304 +#: browse_foreigners.php:82 libraries/common.lib.php:2313 #: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394 #: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123 #: pdf_schema.php:1139 @@ -36,8 +36,8 @@ msgstr "" #: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80 #: db_structure.php:91 db_structure.php:93 db_structure.php:104 -#: db_structure.php:106 libraries/common.lib.php:2822 -#: libraries/common.lib.php:2829 libraries/db_links.inc.php:75 +#: db_structure.php:106 libraries/common.lib.php:2831 +#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75 #: libraries/tbl_links.inc.php:63 msgid "Search" msgstr "搜索" @@ -47,7 +47,7 @@ msgstr "搜索" #: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046 #: libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 +#: libraries/common.lib.php:1335 libraries/common.lib.php:2288 #: libraries/display_change_password.lib.php:82 #: libraries/display_create_table.lib.php:63 #: libraries/display_export.lib.php:275 libraries/display_import.lib.php:276 @@ -278,7 +278,7 @@ msgstr "轉移到複製之資料庫" msgid "BLOB Repository" msgstr "" -#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1350 +#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352 #: libraries/server_links.inc.php:49 server_processlist.php:59 #: tbl_tracking.php:596 test/theme.php:101 msgid "Status" @@ -476,7 +476,7 @@ msgstr "使用資料表" msgid "SQL query on database %s:" msgstr "在資料庫 %s 執行 SQL 語法:" -#: db_qbe.php:934 libraries/common.lib.php:1223 +#: db_qbe.php:934 libraries/common.lib.php:1225 msgid "Submit Query" msgstr "執行語法" @@ -515,7 +515,7 @@ msgstr "%s 項資料符合 - 於資料表 %s" #: db_search.php:267 db_structure.php:77 db_structure.php:78 #: db_structure.php:90 db_structure.php:92 db_structure.php:103 -#: db_structure.php:105 libraries/common.lib.php:2824 +#: db_structure.php:105 libraries/common.lib.php:2833 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467 msgid "Browse" @@ -562,13 +562,13 @@ msgstr "於以下資料表:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/common.lib.php:2823 libraries/sql_query_form.lib.php:334 +#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334 #: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76 msgid "Insert" msgstr "新增" #: db_structure.php:83 db_structure.php:96 db_structure.php:109 -#: libraries/common.lib.php:2820 libraries/common.lib.php:2827 +#: libraries/common.lib.php:2829 libraries/common.lib.php:2836 #: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23 #: libraries/export/latex.php:33 libraries/export/latex.php:337 #: libraries/export/odt.php:32 libraries/export/sql.php:60 @@ -581,7 +581,7 @@ msgstr "結構" #: db_structure.php:84 db_structure.php:85 db_structure.php:97 #: db_structure.php:98 db_structure.php:110 db_structure.php:111 #: db_structure.php:545 db_structure.php:546 db_tracking.php:91 -#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/Index.class.php:483 libraries/common.lib.php:1656 #: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36 #: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127 #: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151 @@ -591,7 +591,7 @@ msgstr "刪除" #: db_structure.php:86 db_structure.php:87 db_structure.php:99 #: db_structure.php:100 db_structure.php:112 db_structure.php:113 -#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655 #: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "清空" @@ -622,8 +622,8 @@ msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation%" -"s." +"This view has at least this number of rows. Please refer to %sdocumentation" +"%s." msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 @@ -816,8 +816,8 @@ msgstr "備份已儲到檔案 %s." #: import.php:60 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation%" -"s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation" +"%s for ways to workaround this limit." msgstr "你正嘗試上載大容量檔案,請查看此 %s文件%s 如何略過此限制." #: import.php:279 import.php:332 libraries/File.class.php:849 @@ -1017,8 +1017,8 @@ msgid "Prev" msgstr "前一頁" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2344 -#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: js/messages.php:77 libraries/common.lib.php:2353 +#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338 #: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:424 #: tbl_structure.php:801 msgid "Next" @@ -1094,27 +1094,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1555 +#: js/messages.php:97 libraries/common.lib.php:1557 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1557 +#: js/messages.php:99 libraries/common.lib.php:1559 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1559 +#: js/messages.php:101 libraries/common.lib.php:1561 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1561 +#: js/messages.php:103 libraries/common.lib.php:1563 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1563 +#: js/messages.php:105 libraries/common.lib.php:1565 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1122,37 +1122,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1565 +#: js/messages.php:107 libraries/common.lib.php:1567 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1567 +#: js/messages.php:109 libraries/common.lib.php:1569 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1569 +#: js/messages.php:111 libraries/common.lib.php:1571 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1571 +#: js/messages.php:113 libraries/common.lib.php:1573 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1573 +#: js/messages.php:115 libraries/common.lib.php:1575 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1575 +#: js/messages.php:117 libraries/common.lib.php:1577 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1577 +#: js/messages.php:119 libraries/common.lib.php:1579 msgid "Dec" msgstr "Dec" @@ -1193,37 +1193,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1580 +#: js/messages.php:132 libraries/common.lib.php:1582 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1582 +#: js/messages.php:134 libraries/common.lib.php:1584 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1584 +#: js/messages.php:136 libraries/common.lib.php:1586 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1586 +#: js/messages.php:138 libraries/common.lib.php:1588 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1588 +#: js/messages.php:140 libraries/common.lib.php:1590 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1590 +#: js/messages.php:142 libraries/common.lib.php:1592 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1592 +#: js/messages.php:144 libraries/common.lib.php:1594 msgid "Sat" msgstr "Sat" @@ -1368,7 +1368,7 @@ msgid "Comment" msgstr "註解" #: libraries/Index.class.php:466 libraries/common.lib.php:616 -#: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 +#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 #: pdf_pages.php:285 setup/frames/index.inc.php:124 #: setup/lib/messages.inc.php:352 tbl_row_action.php:69 @@ -1512,8 +1512,8 @@ msgstr "歡迎使用 %s" #: libraries/auth/config.auth.lib.php:107 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the %" -"1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the " +"%1$ssetup script%2$s to create one." msgstr "有可能你未建立設定檔. 你可利用此 %1$s安裝程序%2$s 建立設定檔." #: libraries/auth/config.auth.lib.php:116 @@ -1735,130 +1735,130 @@ msgstr "說明 SQL" msgid "Skip Explain SQL" msgstr "略過說明 SQL" -#: libraries/common.lib.php:1212 +#: libraries/common.lib.php:1214 msgid "Without PHP Code" msgstr "移除 PHP 程式碼" -#: libraries/common.lib.php:1215 setup/lib/messages.inc.php:355 +#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "建立 PHP 程式碼" -#: libraries/common.lib.php:1233 server_status.php:341 +#: libraries/common.lib.php:1235 server_status.php:341 #: setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "更新" -#: libraries/common.lib.php:1242 +#: libraries/common.lib.php:1244 msgid "Skip Validate SQL" msgstr "略過檢查 SQL" -#: libraries/common.lib.php:1245 setup/lib/messages.inc.php:356 sql.php:518 +#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "檢查 SQL" -#: libraries/common.lib.php:1276 +#: libraries/common.lib.php:1278 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1278 +#: libraries/common.lib.php:1280 #, fuzzy #| msgid "Engines" msgid "Inline" msgstr "引擎" -#: libraries/common.lib.php:1332 libraries/common.lib.php:1347 +#: libraries/common.lib.php:1334 libraries/common.lib.php:1349 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/tbl_triggers.lib.php:28 +#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28 #: server_processlist.php:58 msgid "Time" msgstr "時間" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "B" msgstr "Bytes" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "KiB" msgstr "KB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "MiB" msgstr "MB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "GiB" msgstr "GB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "TiB" msgstr "TB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "PiB" msgstr "PB" -#: libraries/common.lib.php:1379 +#: libraries/common.lib.php:1381 msgid "EiB" msgstr "EB" #. l10n: Thousands separator -#: libraries/common.lib.php:1417 +#: libraries/common.lib.php:1419 msgid "," msgstr "," #. l10n: Decimal separator -#: libraries/common.lib.php:1419 +#: libraries/common.lib.php:1421 msgid "." msgstr "." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1596 +#: libraries/common.lib.php:1598 #: libraries/transformations/text_plain__dateformat.inc.php:34 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/common.lib.php:1898 +#: libraries/common.lib.php:1907 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日, %s 小時, %s 分鐘 %s 秒" -#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/common.lib.php:2322 libraries/common.lib.php:2325 #: libraries/display_tbl.lib.php:290 server_status.php:608 msgid "Begin" msgstr "第一頁" -#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/common.lib.php:2323 libraries/common.lib.php:2326 #: libraries/display_tbl.lib.php:291 server_binlog.php:168 #: server_binlog.php:170 msgid "Previous" msgstr "前一頁" -#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/common.lib.php:2354 libraries/common.lib.php:2357 #: libraries/display_tbl.lib.php:353 msgid "End" msgstr "最後一頁" -#: libraries/common.lib.php:2421 +#: libraries/common.lib.php:2430 #, php-format msgid "Jump to database "%s"." msgstr "跳到資料庫 "%s"." -#: libraries/common.lib.php:2441 +#: libraries/common.lib.php:2450 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2821 libraries/common.lib.php:2828 +#: libraries/common.lib.php:2830 libraries/common.lib.php:2837 #: libraries/db_links.inc.php:68 libraries/export/sql.php:25 #: libraries/import/sql.php:18 libraries/server_links.inc.php:45 #: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2830 libraries/db_links.inc.php:104 +#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" @@ -2077,8 +2077,8 @@ msgstr "資料表名稱" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: %" -"3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: " +"%3$s. Other text will be kept as is." msgstr "" #: libraries/display_export.lib.php:202 @@ -4295,8 +4295,8 @@ msgid "" "table are used instead." msgstr "" -#: libraries/select_lang.lib.php:480 libraries/select_lang.lib.php:486 -#: libraries/select_lang.lib.php:492 +#: libraries/select_lang.lib.php:482 libraries/select_lang.lib.php:488 +#: libraries/select_lang.lib.php:494 #, php-format msgid "Unknown language: %1$s." msgstr "不知名語言: %1$s." @@ -5319,8 +5319,8 @@ msgstr "刪除與使用者相同名稱之資料庫." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should %" -"sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should " +"%sreload the privileges%s before you continue." msgstr "" "註: phpMyAdmin 直接由 MySQL 權限資料表取得使用者權限. 如果使用者自行更改資料" "表, 資料表內容將可能與實際使用者情況有異. 在這情況下, 您應在繼續前 %s重新載" From 47a0bfb11172568c20fe9bd2c9644d7eda96c3cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 7 Jun 2010 22:13:31 +0200 Subject: [PATCH 73/75] Czech translation update. --- po/cs.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/cs.po b/po/cs.po index 6440a466c..75c864990 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-06-07 22:09+0200\n" -"PO-Revision-Date: 2010-06-01 08:05+0200\n" +"PO-Revision-Date: 2010-06-07 22:13+0200\n" "Last-Translator: Michal \n" "Language-Team: czech \n" "Language: cs\n" @@ -8121,10 +8121,9 @@ msgid "Propose table structure" msgstr "Navrhnout strukturu tabulky" #: tbl_structure.php:540 -#, fuzzy #| msgid "Add column(s)" msgid "Add column" -msgstr "Přidat pole" +msgstr "Přidat sloupec" #: tbl_structure.php:554 msgid "At End of Table" From 1e042e0a7c8edecd926c4c6eccebf422aed57769 Mon Sep 17 00:00:00 2001 From: ardavies Date: Mon, 7 Jun 2010 22:19:47 +0200 Subject: [PATCH 74/75] Translation update done using Pootle. --- po/cy.po | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/po/cy.po b/po/cy.po index 996f7feaa..da5396f51 100644 --- a/po/cy.po +++ b/po/cy.po @@ -875,72 +875,74 @@ msgstr "" #: server_synchronize.php:739 server_synchronize.php:767 #: server_synchronize.php:795 server_synchronize.php:807 msgid "Click to select" -msgstr "" +msgstr "Pwyso i ddewis" #: js/messages.php:26 msgid "Click to unselect" -msgstr "" +msgstr "Pwyso i dad-ddewis" #: js/messages.php:27 libraries/import.lib.php:103 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." -msgstr "" +msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." #: js/messages.php:30 libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " -msgstr "" +msgstr "A ydych chi wir am" #: js/messages.php:31 libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" -msgstr "" +msgstr "Rydych am DINISTRIO cronfa ddata gyfan!" #: js/messages.php:34 msgid "You are about to DISABLE a BLOB Repository!" -msgstr "" +msgstr "Rydych yn mynd i ANALLUOGI Ystorfa BLOB!" #: js/messages.php:35 #, php-format +#, possible-php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" +"A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata %s?" #: js/messages.php:38 msgid "Missing value in the form!" -msgstr "" +msgstr "Gwerth ar goll yn y ffurflen!" #: js/messages.php:39 msgid "This is not a number!" -msgstr "" +msgstr "Nid yw hwn yn rhif!" #: js/messages.php:42 msgid "The host name is empty!" -msgstr "" +msgstr "Mae enw'r gwesteiwr yn wag!" #: js/messages.php:43 msgid "The user name is empty!" -msgstr "" +msgstr "Mae enw'r defnyddiwr yn wag!" #: js/messages.php:44 server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" -msgstr "" +msgstr "Mae'r cyfrinair yn wag!" #: js/messages.php:45 server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" -msgstr "" +msgstr "Nid yw'r cyfrineiriau'n debyg!" #: js/messages.php:49 pmd_general.php:342 pmd_general.php:379 msgid "Cancel" -msgstr "" +msgstr "Diddymu" #: js/messages.php:52 pmd_save_pos.php:54 msgid "Modifications have been saved" -msgstr "" +msgstr "Cafodd yr addasiadau eu cadw" #: js/messages.php:53 pmd_relation_upd.php:49 msgid "Relation deleted" -msgstr "" +msgstr "Perthynas wedi'i ddileu" #: js/messages.php:54 pmd_relation_new.php:64 msgid "FOREIGN KEY relation added" -msgstr "" +msgstr "Perthynas FOREIGN KEY wedi'i ychwanegu" #: js/messages.php:55 pmd_relation_new.php:86 msgid "Internal relation added" @@ -7774,8 +7776,8 @@ msgstr "" #: view_create.php:142 msgid "VIEW name" -msgstr "" +msgstr "Enw VIEW" #: view_operations.php:93 msgid "Rename view to" -msgstr "" +msgstr "Ailenwch golwg i" From b5b75a4bf19214431b528dbc52ec7510db901cf6 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 7 Jun 2010 22:50:34 +0200 Subject: [PATCH 75/75] Translation update done using Pootle. --- po/fr.po | 128 +------------------------------------------------------ 1 file changed, 2 insertions(+), 126 deletions(-) diff --git a/po/fr.po b/po/fr.po index 65cf568b7..6fedc2f43 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2010-06-07 22:09+0200\n" -"PO-Revision-Date: 2010-06-01 16:27+0200\n" +"PO-Revision-Date: 2010-06-07 22:50+0200\n" "Last-Translator: Marc \n" "Language-Team: french \n" "Language: fr\n" @@ -8219,10 +8219,9 @@ msgid "Propose table structure" msgstr "Suggérer des optimisations quant à la structure de la table" #: tbl_structure.php:540 -#, fuzzy #| msgid "Add column(s)" msgid "Add column" -msgstr "Ajouter des colonnes" +msgstr "Ajouter une colonne" #: tbl_structure.php:554 msgid "At End of Table" @@ -8433,126 +8432,3 @@ msgstr "Nom de la vue" #: view_operations.php:93 msgid "Rename view to" msgstr "Changer le nom de la vue pour" - -#~| msgid "Add new field" -#~ msgid "Add field" -#~ msgstr "Ajouter une colonne" - -#~ msgid "Field" -#~ msgstr "Champ" - -#~ msgid "Records" -#~ msgstr "Enregistrements" - -#~ msgid "Fields terminated by" -#~ msgstr "Champs terminés par" - -#~ msgid "Fields" -#~ msgstr "Champs" - -#~ msgid "Add %s field(s)" -#~ msgstr "Ajouter %s champ(s)" - -#~ msgid "Field %s has been dropped" -#~ msgstr "Le champ %s a été effacé" - -#~ msgid "See image/jpeg: inline" -#~ msgstr "Voir image/jpeg: inline" - -#~ msgid "zipped" -#~ msgstr "zippé" - -#~ msgid "gzipped" -#~ msgstr "gzippé" - -#~ msgid "bzipped" -#~ msgstr "bzippé" - -#~ msgid "" -#~ "Add custom comment into header (\n" -#~ " splits lines)" -#~ msgstr "" -#~ "Ajouter des commentaires au début (\n" -#~ " sépare les lignes)" - -#~ msgid "and" -#~ msgstr "et" - -#~ msgctxt "$strBLOBRepositoryDisabled" -#~ msgid "Disabled" -#~ msgstr "Désactivé" - -#~ msgctxt "$strBLOBRepositoryEnabled" -#~ msgid "Enabled" -#~ msgstr "Activé" - -#~ msgctxt "$strBLOBRepositoryRepair" -#~ msgid "Repair" -#~ msgstr "Réparer" - -#~ msgid "Calendar" -#~ msgstr "Calendrier" - -#~ msgid "MySQL 4.0 compatible" -#~ msgstr "compatible MySQL 4.0" - -#~ msgid "Could not load default configuration from: \"%1$s\"" -#~ msgstr "Chargement de la configuration par défaut impossible depuis «%1$s»" - -#~ msgid "Create an index on %s columns" -#~ msgstr "Créer un index sur %s colonnes" - -#~ msgctxt "$strCreateTableShort" -#~ msgid "Create table" -#~ msgstr "Créer une table" - -#~ msgctxt "$strCreateUserDatabaseNone" -#~ msgid "None" -#~ msgstr "aucune" - -#~ msgid "Flush the table (\"FLUSH\")" -#~ msgstr "Recharger la table ( «FLUSH »)" - -#~ msgid "Invalid server index: \"%s\"" -#~ msgstr "Indice de serveur invalide: «%s »" - -#~ msgctxt "$strMIME_description" -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgctxt "$strNoneDefault" -#~ msgid "None" -#~ msgstr "Aucun" - -#~ msgid "Schema of the \"%s\" database - Page %s" -#~ msgstr "Schéma de la base «%s» - Page %s" - -#~ msgid "The \"%s\" table doesn't exist!" -#~ msgstr "La table «%s» n'existe pas !" - -#~ msgid "" -#~ "This MySQL server works as %s in replication process. For further " -#~ "information about replication status on the server, please visit the replication section." -#~ msgstr "" -#~ "Ce serveur MySQL agit en tant que %s dans le processus de réplication. Pour plus d'information sur l'état de la réplication sur ce serveur, " -#~ "consultez la section de réplication." - -#~ msgid "running on %s" -#~ msgstr "sur le serveur %s" - -#~ msgid "The scale factor is too small to fit the schema on one page" -#~ msgstr "Veuillez augmenter l'échelle car le schéma déborde la page" - -#~ msgid "" -#~ "Cannot start session without errors, please check errors given in your " -#~ "PHP and/or webserver log file and configure your PHP installation " -#~ "properly." -#~ msgstr "" -#~ "Erreur lors du démarrage de la session, veuillez vérifier les erreurs " -#~ "indiquées par PHP ou dans le fichier témoin du serveur web, et configurer " -#~ "PHP correctement." - -#~ msgid "Import currencies (.00 to 5.00)" -#~ msgstr "Importer les valeurs de monnaie (de .00 à 5.00)"