From 9024d173d86ac2a185227e0059db6ac2641ea39e Mon Sep 17 00:00:00 2001 From: Jim Evins Date: Wed, 5 Dec 2018 10:47:11 -0500 Subject: [PATCH] Revert accidental reset of translations. (#41) - Modified build system to not re-generate strings in every translation file in every build. --- translations/CMakeLists.txt | 29 +- translations/TRANSLATION_FILES.txt | 2 - translations/glabels_C.ts | 152 ++-- translations/glabels_ar.ts | 1089 +++++++++++----------- translations/glabels_bs.ts | 961 +++++++++----------- translations/glabels_ca.ts | 961 +++++++++----------- translations/glabels_cs.ts | 961 +++++++++----------- translations/glabels_da.ts | 961 +++++++++----------- translations/glabels_de.ts | 1363 +++++++++++++--------------- translations/glabels_el.ts | 961 +++++++++----------- translations/glabels_en_GB.ts | 961 +++++++++----------- translations/glabels_eo.ts | 1006 ++++++++++---------- translations/glabels_es.ts | 961 +++++++++----------- translations/glabels_fi.ts | 1015 ++++++++++----------- translations/glabels_fr.ts | 961 +++++++++----------- translations/glabels_gl.ts | 1025 ++++++++++----------- translations/glabels_hu.ts | 961 +++++++++----------- translations/glabels_id.ts | 982 ++++++++++---------- translations/glabels_it.ts | 718 ++++++++------- translations/glabels_ja.ts | 961 +++++++++----------- translations/glabels_ko.ts | 703 +++++++------- translations/glabels_lv.ts | 961 +++++++++----------- translations/glabels_nb.ts | 1073 +++++++++++----------- translations/glabels_nl.ts | 961 +++++++++----------- translations/glabels_oc.ts | 961 +++++++++----------- translations/glabels_pt.ts | 961 +++++++++----------- translations/glabels_pt_BR.ts | 961 +++++++++----------- translations/glabels_ro.ts | 965 +++++++++----------- translations/glabels_ru.ts | 961 +++++++++----------- translations/glabels_sk.ts | 963 +++++++++----------- translations/glabels_sl.ts | 961 +++++++++----------- translations/glabels_sr.ts | 961 +++++++++----------- translations/glabels_sr@latin.ts | 961 +++++++++----------- translations/glabels_sv.ts | 961 +++++++++----------- translations/glabels_tr.ts | 961 +++++++++----------- translations/glabels_uk.ts | 199 ++-- translations/glabels_zh_CN.ts | 997 ++++++++++---------- translations/glabels_zh_HK.ts | 1008 ++++++++++---------- translations/glabels_zh_TW.ts | 1008 ++++++++++---------- translations/templates_C.ts | 180 ++-- translations/templates_ar.ts | 84 +- translations/templates_bs.ts | 74 +- translations/templates_ca.ts | 110 ++- translations/templates_cs.ts | 110 ++- translations/templates_da.ts | 110 ++- translations/templates_de.ts | 358 ++++---- translations/templates_el.ts | 74 +- translations/templates_en_GB.ts | 74 +- translations/templates_eo.ts | 124 +-- translations/templates_es.ts | 110 ++- translations/templates_fi.ts | 131 +-- translations/templates_fr.ts | 110 ++- translations/templates_gl.ts | 74 +- translations/templates_hu.ts | 110 ++- translations/templates_id.ts | 87 +- translations/templates_it.ts | 61 +- translations/templates_ja.ts | 74 +- translations/templates_ko.ts | 56 +- translations/templates_lv.ts | 110 ++- translations/templates_nb.ts | 83 +- translations/templates_nl.ts | 70 +- translations/templates_oc.ts | 111 ++- translations/templates_pt.ts | 110 ++- translations/templates_pt_BR.ts | 110 ++- translations/templates_ro.ts | 74 +- translations/templates_ru.ts | 74 +- translations/templates_sk.ts | 129 +-- translations/templates_sl.ts | 74 +- translations/templates_sr.ts | 110 ++- translations/templates_sr@latin.ts | 110 ++- translations/templates_sv.ts | 110 ++- translations/templates_tr.ts | 74 +- translations/templates_uk.ts | 186 ++-- translations/templates_zh_CN.ts | 73 +- translations/templates_zh_HK.ts | 74 +- translations/templates_zh_TW.ts | 74 +- 76 files changed, 17940 insertions(+), 20405 deletions(-) diff --git a/translations/CMakeLists.txt b/translations/CMakeLists.txt index 0890ef7..a046d8b 100644 --- a/translations/CMakeLists.txt +++ b/translations/CMakeLists.txt @@ -6,21 +6,33 @@ set_directory_properties (PROPERTIES CLEAN_NO_CUSTOM 1) include (TRANSLATION_FILES.txt) -qt5_create_translation (glabels_qm_files +# +# Update strings in C-locale translation files (lupdate+lrelease) +# +qt5_create_translation (glabels_C_qm_file ${CMAKE_SOURCE_DIR}/glabels ${CMAKE_SOURCE_DIR}/model ${CMAKE_SOURCE_DIR}/backends - ${GLABELS_TS_FILES} + glabels_C.ts OPTIONS -no-obsolete -locations none ) - -qt5_create_translation (templates_qm_files +qt5_create_translation (templates_C_qm_file ${CMAKE_CURRENT_BINARY_DIR}/template-strings.h - ${TEMPLATES_TS_FILES} + templates_C.ts OPTIONS -no-obsolete -locations none ) -add_custom_target (update_translations DEPENDS ${glabels_qm_files} ${templates_qm_files}) +# +# Generate QM files from all other language translation files (lrelease only) +# +qt5_add_translation (language_qm_files + ${GLABELS_TS_FILES} + ${TEMPLATES_TS_FILES} +) + +add_custom_target (update_translations + DEPENDS ${glabels_C_qm_file} ${templates_C_qm_file} ${language_qm_files} +) # Add updating translations as a dependency for glabels-qt add_dependencies (glabels-qt update_translations) @@ -72,5 +84,6 @@ add_custom_target (template-strings DEPENDS template-strings.h) #======================================= # Install #======================================= -install (FILES ${glabels_qm_files} DESTINATION share/glabels-qt/translations) -install (FILES ${templates_qm_files} DESTINATION share/glabels-qt/translations) +install (FILES ${glabels_C_qm_file} DESTINATION share/glabels-qt/translations) +install (FILES ${templates_C_qm_file} DESTINATION share/glabels-qt/translations) +install (FILES ${language_qm_files} DESTINATION share/glabels-qt/translations) diff --git a/translations/TRANSLATION_FILES.txt b/translations/TRANSLATION_FILES.txt index 769cb80..5d5ca47 100644 --- a/translations/TRANSLATION_FILES.txt +++ b/translations/TRANSLATION_FILES.txt @@ -4,7 +4,6 @@ # ############################################################ set (GLABELS_TS_FILES - glabels_C.ts glabels_ar.ts glabels_bs.ts glabels_ca.ts @@ -49,7 +48,6 @@ set (GLABELS_TS_FILES # ############################################################ set (TEMPLATES_TS_FILES - templates_C.ts templates_ar.ts templates_bs.ts templates_ca.ts diff --git a/translations/glabels_C.ts b/translations/glabels_C.ts index d9237ad..c3f29d2 100644 --- a/translations/glabels_C.ts +++ b/translations/glabels_C.ts @@ -290,10 +290,6 @@ Form - - Object properties - - Text @@ -318,14 +314,6 @@ Word - - Anywhere - - - - None - - Allow printing to shrink text to fit object @@ -386,6 +374,14 @@ File + + None + + + + Anywhere + + Select File... @@ -474,6 +470,10 @@ Opacity: + + Object properties + + PreferencesDialog @@ -520,6 +520,18 @@ Form + + Page + + + + of + + + + nn + + Copies @@ -556,18 +568,6 @@ Print - - Page - - - - of - - - - nn - - PropertiesView @@ -615,14 +615,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -643,6 +635,14 @@ Similar Products + + Adjustable Parameters + + + + Label length: + + SelectProductDialog @@ -751,14 +751,6 @@ Form - - 6. Margin: - - - - 1. Outer radius: - - 4. Clipping height: @@ -768,13 +760,21 @@ - 3. Clipping width: + 1. Outer radius: 5. Waste: + + 3. Clipping width: + + + + 6. Margin: + + TemplateDesignerContinuousPage @@ -793,6 +793,10 @@ Form + + 3. Waste: + + 2. Height: @@ -801,10 +805,6 @@ 1. Width: - - 3. Waste: - - 4. Margin: @@ -875,27 +875,27 @@ - (e.g. "Mailing Labels," "Business Cards," ...) + Brand: - Brand: + (e.g. Avery, Acme, ...) Part #: - - Description: - - (e.g. 8163A) - (e.g. Avery, Acme, ...) + Description: + + + + (e.g. "Mailing Labels," "Business Cards," ...) @@ -941,11 +941,7 @@ - Roll width: - - - - Height: + Page size: @@ -953,7 +949,11 @@ - Page size: + Height: + + + + Roll width: @@ -975,7 +975,11 @@ - 4. Horizontal waste: + 1. Width: + + + + 2. Height: @@ -983,17 +987,13 @@ - 1. Width: + 4. Horizontal waste: 5. Vertical waste: - - 2. Height: - - 6. Margin (X): @@ -1014,7 +1014,7 @@ - 3. Margin + 2. Waste: @@ -1022,7 +1022,7 @@ - 2. Waste: + 3. Margin @@ -1197,10 +1197,6 @@ Welcome - - Edit - - Properties @@ -1213,6 +1209,10 @@ Print + + Edit + + &New... @@ -1920,11 +1920,11 @@ - Roll + Copy - Copy + Roll @@ -2240,10 +2240,6 @@ IEC18004 (QRCode) - - Australia Post Standard - - Australia Post Reply Paid @@ -2296,6 +2292,10 @@ Code 49 + + Australia Post Standard + + Code 128 (Mode C suppression) diff --git a/translations/glabels_ar.ts b/translations/glabels_ar.ts index 84230ba..d852e85 100644 --- a/translations/glabels_ar.ts +++ b/translations/glabels_ar.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + برتقالي Butter @@ -132,7 +132,7 @@ Black - + اسود Very Dark Gray @@ -164,29 +164,27 @@ White - + ابيض Db Other - - - - Roll - + + Factory None - + لا شئ Text: Comma Separated Values (CSV) - + + Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +192,8 @@ Text: Tab Separated Values (TSV) - + + Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +231,16 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + + FrameRound diameter - + + @@ -257,7 +251,7 @@ Source - + المصدر Location @@ -265,11 +259,12 @@ Format: - + + Location: - + الموقع: Records @@ -277,11 +272,11 @@ Select all - + تحديد الكل Unselect all - + إلغاء تحديد الكل @@ -292,11 +287,11 @@ Object properties - + الخصائص Text - + نص Layout @@ -304,7 +299,7 @@ Alignment: - + المحاذاة: Line spacing: @@ -324,7 +319,7 @@ None - + لا شئ Allow printing to shrink text to fit object @@ -336,19 +331,19 @@ Family: - + العائلة: Size: - + الحجم: Style: - + التنسيق: Color: - + اللون: Editor @@ -356,11 +351,11 @@ Barcode - + باركود Style - + التنسيق Type: @@ -372,15 +367,16 @@ Checksum - + + Barcode data - + بيانات الباركود Image - + صورة File @@ -404,15 +400,15 @@ Line - + خط Width: - + العرض: Fill - + التعبئة Position/Size @@ -420,27 +416,31 @@ Position - + الموقع X: - + + Y: - + + Size - + الحجم Length: - + + Angle: - + + Original size: @@ -456,11 +456,11 @@ Height: - + الارتفاع: Shadow - + ظل X offset: @@ -472,7 +472,7 @@ Opacity: - + الشفافية: @@ -483,19 +483,21 @@ Locale - + + Select locale specific behavior. - + + Units - + الوحدات Points - + نقطة Centimeters @@ -503,11 +505,11 @@ Millimeters - + مليمتر Inches - + انش Picas @@ -521,13 +523,27 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + + + + + Copies: + + + Start on position: @@ -546,28 +562,18 @@ print crop marks - + + print in reverse (i.e. a mirror image) - + + Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +587,7 @@ Vendor: - + البائع: TextLabel @@ -589,23 +595,23 @@ Part #: - + التقسيم #: Description: - + الوصف: Page size: - + حجم الصفحة: Label size: - + حجم الملصق: Layout: - + التصميم: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +621,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +650,7 @@ Search all - + الكل Search @@ -672,7 +670,8 @@ Other - + + Filter by category @@ -692,7 +691,7 @@ Recent - + الأخيرة Select from recently used products. @@ -757,36 +756,29 @@ 1. Outer radius: - + + 4. Clipping height: - + + 2. Inner radius: - + + 3. Clipping width: - + + 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +787,11 @@ 2. Height: - + 2. الارتفاع: 1. Width: - + 1. العرض: 3. Waste: @@ -880,15 +872,15 @@ Brand: - + العلامة التجارية: Part #: - + التقسيم #: Description: - + الوصف: (e.g. 8163A) @@ -907,30 +899,30 @@ Number across (nx): - + عدد الملصقات في الصف: Number down (ny): - + عدد الملصقات في العمود: Distance from left edge (x0): - - - - Distance from top edge (y0): - + هامش الورقة الأيسر: Horizontal pitch (dx): - + المسافة بين الأعمدة: Vertical pitch (dy): - + المسافة بين الصفوف: Print test sheet + طباعة ورقة اختبار + + + Distance from top edge (y0): @@ -941,31 +933,16 @@ - Roll width: - - - - Height: - + Page size: + حجم الصفحة: Width: - + العرض: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + الارتفاع: @@ -974,6 +951,14 @@ Form + + 2. Height: + 2. الارتفاع: + + + 1. Width: + 1. العرض: + 4. Horizontal waste: @@ -983,29 +968,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +984,13 @@ 3. Margin - + + 1. Radius: - + + 2. Waste: @@ -1034,19 +1005,20 @@ Rectangular or square (can have rounded corners) - + مستطيل أو مربع (يمكن جعل الأركان مستديرة) Round - + دائري Elliptical - + بيضاوي CD/DVD (including credit card CDs) - + + @@ -1057,30 +1029,30 @@ Distance from left edge (x0): - + هامش الورقة الأيسر: Number down (ny): - - - - Distance from top edge (y0): - + عدد الملصقات في العمود: Number across (nx): - + عدد الملصقات في الصف: Horizontal pitch (dx): - + المسافة بين الأعمدة: Vertical pitch (dy): - + المسافة بين الصفوف: Print test sheet + طباعة ورقة اختبار + + + Distance from top edge (y0): @@ -1088,23 +1060,24 @@ Units points - + نقطة inches - + انش mm - + مليمتر cm - + سنتمتر picas - + + @@ -1138,7 +1111,7 @@ Custom Color - + لون مخصص Custom color #%1 @@ -1184,18 +1157,18 @@ glabels::LabelEditor Move - + نقل Delete - + حذف glabels::MainWindow Welcome - + مرحبا Edit @@ -1303,19 +1276,19 @@ Undo - + إعادة Redo - + تكرار Cut - + قص Cut the selection - + قص المحدد &Copy @@ -1323,7 +1296,7 @@ Copy the selection - + نسخ المحدد &Paste @@ -1331,7 +1304,7 @@ Paste the clipboard - + لصق &Delete @@ -1339,7 +1312,7 @@ Delete the selected objects - + حذف الكائنات المحددة Select &All @@ -1347,23 +1320,24 @@ Select all objects - + تحديد كل الكائنات Un-select All - + إلغاء تحديد الكل Remove all selections - + إزالة كل المحدد Preferences - + التفضيلات Configure the application - + + File @@ -1383,7 +1357,7 @@ Grid - + الشبكة Change visibility of the grid in current window @@ -1391,7 +1365,7 @@ Markup - + العلامات Change visibility of markup lines in current window @@ -1403,7 +1377,8 @@ Increase magnification - + + Zoom &Out @@ -1411,7 +1386,8 @@ Decrease magnification - + + Zoom &1 to 1 @@ -1419,7 +1395,8 @@ Restore scale to 100% - + + Zoom to &Fit @@ -1427,63 +1404,65 @@ Set scale to fit window - + + Select Mode - + + Select, move and modify objects - + اختيار,نقل وتعديل الكائن Text - + نص Create text object - + إنشاء نص Box - + مربع Create box object - + إنشاء مربع Line - + خط Create line object - + إدراج خط Ellipse - + بيضاوي Create ellipse/circle object - + إنشاء شكل بيضاوي/دائرة Image - + صورة Create image object - + إدراج صورة Barcode - + باركود Create barcode object - + إنشاء باركود Bring To Front @@ -1539,7 +1518,8 @@ Align objects to left edges - + + Align Center @@ -1547,7 +1527,8 @@ Align objects to horizontal centers - + + Align Right @@ -1555,7 +1536,8 @@ Align objects to right edges - + + Align Top @@ -1563,7 +1545,8 @@ Align objects to top edges - + + Align Middle @@ -1571,7 +1554,8 @@ Align objects to vertical centers - + + Align Bottom @@ -1579,7 +1563,8 @@ Align objects to bottom edges - + + Center Horizontally @@ -1659,7 +1644,8 @@ (modified) - + + Save changes to project "%1" before closing? @@ -1667,7 +1653,8 @@ Your changes will be lost if you don't save them. - + + Save project? @@ -1675,11 +1662,11 @@ Paste - + لصق Delete - + حذف Create Text @@ -1733,7 +1720,7 @@ Default - + افتراضي Insert Field @@ -1749,7 +1736,7 @@ Box object properties - + خصائص المربع line/fill @@ -1765,11 +1752,11 @@ Ellipse object properties - + خصائص البيضاوي Image object properties - + خصائص الصورة image @@ -1777,11 +1764,11 @@ Line object properties - + خصائص الخط Text object properties - + خصائص النص text @@ -1789,7 +1776,7 @@ Barcode object properties - + خصائص الباركود barcode @@ -1797,15 +1784,15 @@ Object properties - + الخصائص Line - + خط Fill - + التعبئة Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1848,24 @@ Set image - + + Move - + نقل Size - + الحجم Text - + نص Shadow - + ظل @@ -1910,7 +1898,8 @@ glabels::SimplePreview Up - + + @@ -1919,13 +1908,9 @@ Product Template Designer - - Roll - - Copy - + نسخ @@ -1958,17 +1943,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1958,7 @@ glabels::TemplateDesignerIntroPage Welcome - + مرحبا Welcome to the gLabels Product Template Designer. @@ -1995,7 +1969,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + عدد التصاميم Please select the number of layouts required. @@ -2006,7 +1980,7 @@ glabels::TemplateDesignerNamePage Name and Description - + الاسم والوصف Please enter the following identifying information about the product. @@ -2032,7 +2006,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + حجم الصفحة Please select the product page size. @@ -2040,22 +2014,8 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + + @@ -2106,39 +2066,48 @@ glabels::barcode::Backends Code 39 - + + Code 39 Extended - + + UPC-A - + + EAN-13 - + + POSTNET (any) - + + POSTNET-5 (ZIP only) - + + POSTNET-9 (ZIP+4) - + + POSTNET-11 (DPBC) - + + CEPNET - + + USPS Intelligent Mail @@ -2146,15 +2115,18 @@ IEC16022 (DataMatrix) - + + EAN (any) - + + EAN-8 - + + EAN-8+2 @@ -2174,302 +2146,374 @@ UPC (UPC-A or UPC-E) - + + UPC-A +2 - + + UPC-A +5 - + + UPC-E - + + UPC-E +2 - + + UPC-E +5 - + + ISBN - + + ISBN +5 - + + Code 128 - + + Code 128C - + + Code 128B - + + Interleaved 2 of 5 - + + Codabar - + + MSI - + + Plessey - + + Code 93 - + + IEC18004 (QRCode) - + + + + + Australia Post Reply Paid + + + + + Australia Post Route Code + + + + + Australia Post Redirect + + + + + Aztec Code + + + + + Aztec Rune + + + + + Code One + + + + + Code 11 + + + + + Code 16K + + + + + Code 2 of 5 Matrix + + + + + Code 2 of 5 IATA + + + + + Code 2 of 5 Data Logic + + + + + Code 32 (Italian Pharmacode) + + + + + Code 49 + + + + + DAFT Code + + + + + Data Matrix + + + + + Deutsche Post Leitcode + + + + + Deutsche Post Identcode + + + + + Dutch Post KIX Code + + + + + EAN + + + + + Grid Matrix + + + + + GS1-128 + + + + + GS1 DataBar-14 + + + + + GS1 DataBar-14 Stacked + + + + + GS1 DataBar-14 Stacked Omni. + + + + + GS1 DataBar Extended Stacked + + + + + HIBC Code 128 + + + + + HIBC Code 39 + + + + + HIBC Data Matrix + + + + + HIBC QR Code + + + + + HIBC PDF417 + + + + + HIBC Micro PDF417 + + + + + HIBC Aztec Code + + + + + ITF-14 + + + + + Japanese Postal + + + + + Korean Postal + + + + + LOGMARS + + + + + Maxicode + + + + + Micro PDF417 + + + + + Micro QR Code + + + + + MSI Plessey + + + + + NVE-18 + + + + + PDF417 + + + + + PDF417 Truncated + + + + + PLANET + + + + + PostNet + + + + + Pharmacode + + + + + Pharmacode 2-track + + + + + Pharmazentral Nummer (PZN) + + + + + QR Code + + + + + Royal Mail 4-State + + + + + Telepen + + + + + Telepen Numeric + + + + + USPS One Code + + + + + UK Plessey + + Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + + @@ -2480,14 +2524,15 @@ Invalid barcode data - + + glabels::model::ModelTextObject Text - + نص diff --git a/translations/glabels_bs.ts b/translations/glabels_bs.ts index f954942..84ad576 100644 --- a/translations/glabels_bs.ts +++ b/translations/glabels_bs.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Narandžasta Butter @@ -132,7 +132,7 @@ Black - + Crna Very Dark Gray @@ -164,29 +164,25 @@ White - + Bijela Db Other - - - - Roll - + Drugi Factory None - + Nijedan Text: Comma Separated Values (CSV) - + Tekst: Vrijednosti razdvojene zarezom (VRZ) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Tekst: Tabom razdvojene vrijednosti (TRV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + prečnik FrameRound diameter - + prečnik @@ -257,7 +246,7 @@ Source - + Izvor Location @@ -265,11 +254,11 @@ Format: - + Format: Location: - + Lokacija: Records @@ -277,11 +266,11 @@ Select all - + Odaberi sve Unselect all - + Poništi sve @@ -292,11 +281,11 @@ Object properties - + Osobine objekta Text - + Tekst Layout @@ -304,7 +293,7 @@ Alignment: - + Poravnanje: Line spacing: @@ -324,7 +313,7 @@ None - + Nijedan Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Porodica: Size: - + Veličina: Style: - + Stil: Color: - + Boja: Editor @@ -356,11 +345,11 @@ Barcode - + Bar kod Style - + Stil Type: @@ -372,15 +361,15 @@ Checksum - + Kontrolna suma Barcode data - + Barkod podaci Image - + Slika File @@ -404,15 +393,15 @@ Line - + Linija Width: - + Dužina: Fill - + Popuni Position/Size @@ -420,27 +409,27 @@ Position - + Pozicija X: - + X: Y: - + Y: Size - + Veličina Length: - + Dužina: Angle: - + Ugao: Original size: @@ -456,11 +445,11 @@ Height: - + Visina: Shadow - + Sjenka X offset: @@ -472,7 +461,7 @@ Opacity: - + Neprovidnost: @@ -483,19 +472,19 @@ Locale - + Lokalno Select locale specific behavior. - + Izaberite specifično lokalno ponašanje. Units - + Jedinica mjere Points - + Tački Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milimetara Inches - + Inča Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Kopije + + + Copies: + Kopije: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + štampaj linije za izrezivanje print in reverse (i.e. a mirror image) - + štampaj unazad (t.j. slika u ogledalu) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Proizvođač: TextLabel @@ -589,23 +578,23 @@ Part #: - + Dio #: Description: - + Opis: Page size: - + Veličina stranice: Label size: - + Veličina oznake: Layout: - + Raspored: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Traži sve Search @@ -672,7 +653,7 @@ Other - + Drugi Filter by category @@ -692,7 +673,7 @@ Recent - + Nedavno Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Vanjski poluprečnik: 4. Clipping height: - + 4. Odsijecanje visine: 2. Inner radius: - + 2. Unutrašnji poluprečnik: 3. Clipping width: - + 3. Odsijecanje širine: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Visina: 1. Width: - + 1. Širina: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Brend: Part #: - + Dio #: Description: - + Opis: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Broj preko (nx): Number down (ny): - + Broj dole (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Udaljenost od lijeve ivice (x0): Horizontal pitch (dx): - + Horizontalni nagib (dx): Vertical pitch (dy): - + Vertikalni nagib (dy): Print test sheet + Štampaj probni list + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Veličina stranice: Width: - + Dužina: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Visina: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Visina: + + + 1. Width: + 1. Širina: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Ivica 1. Radius: - + 1. Poluprečnik: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Pravougaonik ili kvadrat (može imati zaobljenje ivice) Round - + Zaobljeno Elliptical - + Eliptično CD/DVD (including credit card CDs) - + CD/DVD (uključujući kreditne kartice CD-ove) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Udaljenost od lijeve ivice (x0): Number down (ny): - - - - Distance from top edge (y0): - + Broj dole (ny): Number across (nx): - + Broj preko (nx): Horizontal pitch (dx): - + Horizontalni nagib (dx): Vertical pitch (dy): - + Vertikalni nagib (dy): Print test sheet + Štampaj probni list + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + tačke inches - + inči mm - + mm cm - + cm picas - + pike @@ -1138,7 +1085,7 @@ Custom Color - + Boja po izboru Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Premjesti Delete - + Obriši glabels::MainWindow Welcome - + Dobrodošli Edit @@ -1303,19 +1250,19 @@ Undo - + Poništi Redo - + Obnovi Cut - + Isjeci Cut the selection - + Isijeci izabrano &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Kopiraj označeno &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Zalijepi iz međuspremnika &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Obriši izabrane objekte Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Izaberi sve objekte Un-select All - + Deselektiraj sve Remove all selections - + Ukloni izabrano Preferences - + Svojstva Configure the application - + Podesite aplikaciju File @@ -1383,7 +1330,7 @@ Grid - + Mreža Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Obilježivački Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Povećaj uvećanje Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Smanji uvećanje Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Vrati omjer na 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Postavi omjer da odgovara prozoru Select Mode - + Izaberite režim Select, move and modify objects - + Izaberi, pomjeri and izmjeni objekte Text - + Tekst Create text object - + Stvori tekstualni objekat Box - + Okvir Create box object - + Stvori box objekat Line - + Linija Create line object - + Stvori Ellipse - + Elipsa Create ellipse/circle object - + Napravi elipsu/krug objekat Image - + Slika Create image object - + Stvori slikovni objekat Barcode - + Bar kod Create barcode object - + Napravi barkod objekat Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Poravnaj objekte do lijeve ivice Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Poravnaj objekte po horizontalnim centrima Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Poravnaj objekte do desne ivice Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Poravnaj objekte prema vrhu Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Poravnaj objekte po vertiklanom centru Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Poravnaj objekte prema donjoj ivici Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (izmijenjen) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Izmjene će biti izgubljene ako ih ne sačuvate. Save project? @@ -1675,11 +1622,11 @@ Paste - + Zalijepi Delete - + Obriši Create Text @@ -1733,7 +1680,7 @@ Default - + Podrazumijevano Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Box osobine objekta line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Elipsa osobine objekta Image object properties - + Slika osobine objekta image @@ -1777,11 +1724,11 @@ Line object properties - + Linija osobine objekta Text object properties - + Tekst osobine objekta text @@ -1789,7 +1736,7 @@ Barcode object properties - + Barkod osobine objekta barcode @@ -1797,15 +1744,15 @@ Object properties - + Osobine objekta Line - + Linija Fill - + Popuni Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Postavi sliku Move - + Premjesti Size - + Veličina Text - + Tekst Shadow - + Sjenka @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Gore @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Kopiraj @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Dobrodošli Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Broj Rasporeda Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Ime i opis Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Veličina stranice Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Drugi @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Kod 39 Code 39 Extended - + Kod 39 prosiren UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (any) POSTNET-5 (ZIP only) - + POSTNET-5 (ZIP only) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (any) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A or UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Kod 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Umetnuto 2 od 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRKod) + + + Australia Post Reply Paid + Australia Post Reply Paid + + + Australia Post Route Code + Australia Post Route Code + + + Australia Post Redirect + Australia Post Redirect + + + Aztec Code + Aztec Code + + + Aztec Rune + Aztec Rune + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + Code 2 of 5 Matrix + + + Code 2 of 5 IATA + Code 2 of 5 IATA + + + Code 2 of 5 Data Logic + Code 2 of 5 Data Logic + + + Code 32 (Italian Pharmacode) + Code 32 (Italian Pharmacode) + + + Code 49 + Code 49 + + + DAFT Code + DAFT Code + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + Dutch Post KIX Code + + + EAN + EAN + + + Grid Matrix + Grid Matrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Stacked + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Stacked Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar Extended Stacked + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + HIBC Data Matrix + + + HIBC QR Code + HIBC QR Code + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + Poštanski Japan + + + Korean Postal + Poštanski Koreja + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 Truncated + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR Code + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen Numeric + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Neimenovano @@ -2480,14 +2397,14 @@ Invalid barcode data - + Nevažeći barkod podaci glabels::model::ModelTextObject Text - + Tekst diff --git a/translations/glabels_ca.ts b/translations/glabels_ca.ts index 9315fe8..e29df9f 100644 --- a/translations/glabels_ca.ts +++ b/translations/glabels_ca.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Taronja Butter @@ -132,7 +132,7 @@ Black - + Negre Very Dark Gray @@ -164,29 +164,25 @@ White - + Blanc Db Other - - - - Roll - + Una altra Factory None - + Cap Text: Comma Separated Values (CSV) - + Text: Valors separats per comes (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Text: Valors separats per tabuladors (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diàmetre FrameRound diameter - + diàmetre @@ -257,7 +246,7 @@ Source - + Font Location @@ -265,11 +254,11 @@ Format: - + Format: Location: - + Ubicació: Records @@ -277,11 +266,11 @@ Select all - + Selecciona-ho tot Unselect all - + No seleccionis res @@ -292,11 +281,11 @@ Object properties - + Propietats de l'objecte Text - + Text Layout @@ -304,7 +293,7 @@ Alignment: - + Alineació: Line spacing: @@ -324,7 +313,7 @@ None - + Cap Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Família: Size: - + Mida: Style: - + Estil: Color: - + Color: Editor @@ -356,11 +345,11 @@ Barcode - + Codi de barres Style - + Estil Type: @@ -372,15 +361,15 @@ Checksum - + Suma de verificació Barcode data - + Dades del codi de barres Image - + Imatge File @@ -404,15 +393,15 @@ Line - + Línia Width: - + Amplada: Fill - + Emplenat Position/Size @@ -420,27 +409,27 @@ Position - + Posició X: - + X: Y: - + Y: Size - + Mida Length: - + Llargada: Angle: - + Angle: Original size: @@ -456,11 +445,11 @@ Height: - + Alçada: Shadow - + Ombra X offset: @@ -472,7 +461,7 @@ Opacity: - + Opacitat: @@ -483,19 +472,19 @@ Locale - + Localització Select locale specific behavior. - + Seleccioneu el comportament específic de la localització. Units - + Unitats Points - + Punts Centimeters @@ -503,11 +492,11 @@ Millimeters - + Mil·límetres Inches - + Polzades Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Còpies + + + Copies: + Còpies: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + imprimeix les marques de tall print in reverse (i.e. a mirror image) - + imprimeix invertit (és a dir, com una imatge reflectida en un mirall) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Fabricant: TextLabel @@ -589,23 +578,23 @@ Part #: - + Núm. de model: Description: - + Descripció: Page size: - + Mida de la pàgina: Label size: - + Mida de l'etiqueta: Layout: - + Disposició: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Cerca-ho tot Search @@ -672,7 +653,7 @@ Other - + Una altra Filter by category @@ -692,7 +673,7 @@ Recent - + Recent Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Radi exterior: 4. Clipping height: - + 4. Alçada de retallada: 2. Inner radius: - + 2. Radi interior: 3. Clipping width: - + 3. Amplada de retallada: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Alçada: 1. Width: - + 1. Amplada: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Marca: Part #: - + Núm. de model: Description: - + Descripció: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Nombre per amplada (nx): Number down (ny): - + Nombre per alçada (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Distància des de la vora esquerra (x0): Horizontal pitch (dx): - + Separació horitzontal (dx): Vertical pitch (dy): - + Separació vertical (dy): Print test sheet + Imprimeix un full de mostra + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Mida de la pàgina: Width: - + Amplada: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Alçada: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Alçada: + + + 1. Width: + 1. Amplada: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Marge 1. Radius: - + 1. Radi: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Rectangular o quadrada (pot tenir cantonades arrodonides) Round - + Circular Elliptical - + El·líptic CD/DVD (including credit card CDs) - + CD/DVD (també s'hi inclouen els CD de mida de targeta de crèdit) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Distància des de la vora esquerra (x0): Number down (ny): - - - - Distance from top edge (y0): - + Nombre per alçada (ny): Number across (nx): - + Nombre per amplada (nx): Horizontal pitch (dx): - + Separació horitzontal (dx): Vertical pitch (dy): - + Separació vertical (dy): Print test sheet + Imprimeix un full de mostra + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + punts inches - + polzades mm - + mm cm - + cm picas - + piques @@ -1138,7 +1085,7 @@ Custom Color - + Color personalitzat Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Mou Delete - + Suprimeix glabels::MainWindow Welcome - + Us donem la benvinguda Edit @@ -1303,19 +1250,19 @@ Undo - + Desfés Redo - + Refés Cut - + Retalla Cut the selection - + Retalla la selecció &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Copia la selecció &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Enganxa el contingut del porta-retalls &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Suprimeix els objectes seleccionats Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Selecciona tots els objectes Un-select All - + No seleccionis res Remove all selections - + Desfés totes les seleccions Preferences - + Preferències Configure the application - + Configura l'aplicació File @@ -1383,7 +1330,7 @@ Grid - + Graella Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Marques Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Incrementa l'ampliació Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Redueix l'ampliació Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Refés l'escala a 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Estableix l'escala per a encabir-ho a la finestra Select Mode - + Mode de selecció Select, move and modify objects - + Seleccioneu, moveu i modifiqueu objectes Text - + Text Create text object - + Crea un objecte de text Box - + Quadre Create box object - + Crea un objecte caixa Line - + Línia Create line object - + Crea un objecte línia Ellipse - + El·lipse Create ellipse/circle object - + Crea un objecte el·lipse/cercle Image - + Imatge Create image object - + Crea un objecte d'imatge Barcode - + Codi de barres Create barcode object - + Crea un objecte de codi de barres Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Alinea els objectes a les vores esquerres Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Alinea els objectes als centres horitzontals Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Alinea els objectes a les vores dretes Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Alinea els objectes a les vores superiors Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Alinea els objectes als centres verticals Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Alinea els objectes a les vores inferiors Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (modificat) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Es perdran els vostres canvis si no els deseu. Save project? @@ -1675,11 +1622,11 @@ Paste - + Enganxa Delete - + Suprimeix Create Text @@ -1733,7 +1680,7 @@ Default - + Predeterminat Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Propietats de l'objecte quadre line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Propietats de l'objecte el·lipse Image object properties - + Propietats de l'objecte imatge image @@ -1777,11 +1724,11 @@ Line object properties - + Propietats de l'objecte línia Text object properties - + Propietats de l'objecte text text @@ -1789,7 +1736,7 @@ Barcode object properties - + Propietats de l'objecte codi de barres barcode @@ -1797,15 +1744,15 @@ Object properties - + Propietats de l'objecte Line - + Línia Fill - + Emplenat Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Estableix la imatge Move - + Mou Size - + Mida Text - + Text Shadow - + Ombra @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Amunt @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Copia @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Us donem la benvinguda Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Nombre de disposicions Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nom i descripció Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Mida de la pàgina Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Una altra @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Codi 39 Code 39 Extended - + Codi 39 (estès) UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (qualsevol) POSTNET-5 (ZIP only) - + POSTNET-5 (només codi postal ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (codi postal ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (qualsevol) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A o UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Codi 128 Code 128C - + Codi 128C Code 128B - + Codi 128B Interleaved 2 of 5 - + Interfoliat 2 de 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Codi 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Australia Post (franqueig pagat) + + + Australia Post Route Code + Australia Post (codi de ruta) + + + Australia Post Redirect + Australia Post (redirecció) + + + Aztec Code + Aztec Code + + + Aztec Rune + Aztec Rune + + + Code One + Codi 1 + + + Code 11 + Codi 11 + + + Code 16K + Codi 16K + + + Code 2 of 5 Matrix + Codi 2 de 5 Matrix + + + Code 2 of 5 IATA + Codi 2 de 5 IATA + + + Code 2 of 5 Data Logic + Codi 2 de 5 Data Logic + + + Code 32 (Italian Pharmacode) + Codi 32 (Italian Pharmacode) + + + Code 49 + Codi 49 + + + DAFT Code + Codi DAFT + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + Dutch Post codi KIX + + + EAN + EAN + + + Grid Matrix + Grid Matrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 (apilat) + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 (apilat omni.) + + + GS1 DataBar Extended Stacked + GS1 DataBar (estès apilat) + + + HIBC Code 128 + HIBC Codi 128 + + + HIBC Code 39 + HIBC Codi 39 + + + HIBC Data Matrix + HIBC Data Matrix + + + HIBC QR Code + HIBC Codi QR + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + Servei postal de Japó + + + Korean Postal + Servei postal de Korea + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Codi Micro QR + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 (truncat) + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode (2-pistes) + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + Codi QR + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen numèric + + + USPS One Code + USPS Codi 1 + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Sense títol @@ -2480,14 +2397,14 @@ Invalid barcode data - + Les dades del codi de barres no són vàlides glabels::model::ModelTextObject Text - + Text diff --git a/translations/glabels_cs.ts b/translations/glabels_cs.ts index 06be04a..8074acb 100644 --- a/translations/glabels_cs.ts +++ b/translations/glabels_cs.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Oranžová Butter @@ -132,7 +132,7 @@ Black - + Černá Very Dark Gray @@ -164,29 +164,25 @@ White - + Bílá Db Other - - - - Roll - + Jiný Factory None - + Žádný Text: Comma Separated Values (CSV) - + Text: Čárkou oddělené hodnoty (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Text: Tabulátorem oddělené hodnoty (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + průměr FrameRound diameter - + průměr @@ -257,7 +246,7 @@ Source - + Zdroj Location @@ -265,11 +254,11 @@ Format: - + Formát: Location: - + Umístění: Records @@ -277,11 +266,11 @@ Select all - + Vybrat vše Unselect all - + Zrušit výběr @@ -292,11 +281,11 @@ Object properties - + Vlastnosti objektu Text - + Text Layout @@ -304,7 +293,7 @@ Alignment: - + Zarovnání: Line spacing: @@ -324,7 +313,7 @@ None - + Žádný Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Rodina: Size: - + Velikost: Style: - + Styl: Color: - + Barva: Editor @@ -356,11 +345,11 @@ Barcode - + Čárový kód Style - + Styl Type: @@ -372,15 +361,15 @@ Checksum - + Kontrolní součet Barcode data - + Data pro čárový kód Image - + Obrázek File @@ -404,15 +393,15 @@ Line - + Čára Width: - + Šířka: Fill - + Výplň Position/Size @@ -420,27 +409,27 @@ Position - + Pozice X: - + X: Y: - + Y: Size - + Velikost Length: - + Délka: Angle: - + Úhel: Original size: @@ -456,11 +445,11 @@ Height: - + Výška: Shadow - + Stín X offset: @@ -472,7 +461,7 @@ Opacity: - + Krytí: @@ -483,19 +472,19 @@ Locale - + Národní prostředí Select locale specific behavior. - + Vyberte specifické chování pro národní prostředí. Units - + Jednotky Points - + Body Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milimetry Inches - + Palce Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Kopie + + + Copies: + Kopie: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + tisknout značky pro ořez print in reverse (i.e. a mirror image) - + obrácený tisk (např. zrcadlený obrázek) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Výrobce: TextLabel @@ -589,23 +578,23 @@ Part #: - + Produktové číslo: Description: - + Popis: Page size: - + Rozměr papíru: Label size: - + Velikost etikety: Layout: - + Rozvržení: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Prohledat vše Search @@ -672,7 +653,7 @@ Other - + Jiný Filter by category @@ -692,7 +673,7 @@ Recent - + Nedávné Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Vnější poloměr: 4. Clipping height: - + 4. Výška oříznutí: 2. Inner radius: - + 2. Vnitřní poloměr: 3. Clipping width: - + 3. Šířka oříznutí: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Výška: 1. Width: - + 1. Šířka: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Značka: Part #: - + Produktové číslo: Description: - + Popis: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Počet napříč (nx): Number down (ny): - + Počet svisle (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Vzdálenost od levého okraje (x0): Horizontal pitch (dx): - + Vodorovná rozteč (dx): Vertical pitch (dy): - + Svislá rozteč (dy): Print test sheet + Vytisknout testovací stránku + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Rozměr papíru: Width: - + Šířka: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Výška: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Výška: + + + 1. Width: + 1. Šířka: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Okraj 1. Radius: - + 1. Poloměr: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Obdélníkový nebo čtvercový (může mít zaoblené rohy) Round - + Kulatý Elliptical - + Oválný CD/DVD (including credit card CDs) - + CD/DVD (včetně vizitkových CD) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Vzdálenost od levého okraje (x0): Number down (ny): - - - - Distance from top edge (y0): - + Počet svisle (ny): Number across (nx): - + Počet napříč (nx): Horizontal pitch (dx): - + Vodorovná rozteč (dx): Vertical pitch (dy): - + Svislá rozteč (dy): Print test sheet + Vytisknout testovací stránku + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + body inches - + palce mm - + mm cm - + cm picas - + pica @@ -1138,7 +1085,7 @@ Custom Color - + Vlastní barva Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Přesunout Delete - + Smazat glabels::MainWindow Welcome - + Vítejte Edit @@ -1303,19 +1250,19 @@ Undo - + Zpět Redo - + Znovu Cut - + Vyjmout Cut the selection - + Vyjmout výběr &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Kopírovat výběr &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Vložit ze schránky &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Smazat vybrané objekty Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Vybrat všechny objekty Un-select All - + Zrušit výběr Remove all selections - + Zrušit výběr všecho Preferences - + Předvolby Configure the application - + Nastavit aplikaci File @@ -1383,7 +1330,7 @@ Grid - + Mřížka Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Ohraničení Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Zvětšit přiblížení Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Zmenšit přiblížení Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Obnovit měřítko na 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Přizpůsobit měřítko velikosti okna Select Mode - + Režim výběru Select, move and modify objects - + Výběr, přesun a úpravy objektů Text - + Text Create text object - + Vytvořit textový objekt Box - + Obdélník Create box object - + Vytvořit obdelník Line - + Čára Create line object - + Vytvořit čáru Ellipse - + Elipsa Create ellipse/circle object - + Vytvořit elipsu/kruh Image - + Obrázek Create image object - + Vytvořit objekt s obrázkem Barcode - + Čárový kód Create barcode object - + Vytvořit objekt s čárovým kódem Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Zarovnat objekty levou hranou Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Zarovnat objekty vodorovně na střed Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Zarovnat objekty pravou hranou Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Zarovnat objekty horní hranou Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Zarovnat objekty svisle na střed Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Zarovnat objekty dolní hranou Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (změněno) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Vaše změny budou ztraceny, pokud je neuložíte. Save project? @@ -1675,11 +1622,11 @@ Paste - + Vložit Delete - + Smazat Create Text @@ -1733,7 +1680,7 @@ Default - + Výchozí Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Vlastnosti obdélníku line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Vlastnosti elipsy Image object properties - + Vlastnosti obrázku image @@ -1777,11 +1724,11 @@ Line object properties - + Vlastnosti čáry Text object properties - + Vlastnosti textu text @@ -1789,7 +1736,7 @@ Barcode object properties - + Vlastnosti čárového kódu barcode @@ -1797,15 +1744,15 @@ Object properties - + Vlastnosti objektu Line - + Čára Fill - + Výplň Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Nastavit obrázek Move - + Přesunout Size - + Velikost Text - + Text Shadow - + Stín @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Nahoru @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Kopírovat @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Vítejte Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Počet rozvržení Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Název a popis Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Rozměr papíru Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Jiný @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 rozšířený UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (jakýkoli) POSTNET-5 (ZIP only) - + POSTNET-5 (pouze PSČ) POSTNET-9 (ZIP+4) - + POSTNET-9 (PSČ+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (jakýkoli) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A nebo UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Prokládaný 2 z 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Australský poštovní odpovědní + + + Australia Post Route Code + Australský poštovní směrový kód + + + Australia Post Redirect + Australský poštovní přesměrovávací + + + Aztec Code + Aztec Code + + + Aztec Rune + Aztec Rune + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + Kód 2 z 5 Matrix + + + Code 2 of 5 IATA + Kód 2 z 5 IATA + + + Code 2 of 5 Data Logic + Kód 2 z 5 Data Logic + + + Code 32 (Italian Pharmacode) + Code 32 (italský farmaceutický) + + + Code 49 + Code 49 + + + DAFT Code + DAFT Code + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Německý poštovní Leitcode + + + Deutsche Post Identcode + Německý poštovní Identcode + + + Dutch Post KIX Code + Nizozemský poštovní KIX Code + + + EAN + EAN + + + Grid Matrix + Grid Matrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 vrstvený + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 vrstvený nesměrový + + + GS1 DataBar Extended Stacked + GS1 DataBar rozšířený vrstvený + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + HIBC Data Matrix + + + HIBC QR Code + HIBC QR Code + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + Japonský poštovní + + + Korean Postal + Korejský poštovní + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 zkrácený + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode binární + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR Code + + + Royal Mail 4-State + Royal Mail 4stavový + + + Telepen + Telepen + + + Telepen Numeric + Telepen číselný + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Nepojmenovaný @@ -2480,14 +2397,14 @@ Invalid barcode data - + Data pro čárový kód jsou neplatná glabels::model::ModelTextObject Text - + Text diff --git a/translations/glabels_da.ts b/translations/glabels_da.ts index 44caf2e..4b4d3fd 100644 --- a/translations/glabels_da.ts +++ b/translations/glabels_da.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Orange Butter @@ -132,7 +132,7 @@ Black - + Sort Very Dark Gray @@ -164,29 +164,25 @@ White - + Hvid Db Other - - - - Roll - + Anden Factory None - + Ingen Text: Comma Separated Values (CSV) - + Tekst: Kommaadskilte værdier (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Tekst: Tabulatoradskilte værdier (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diameter FrameRound diameter - + diameter @@ -257,7 +246,7 @@ Source - + Kilde Location @@ -265,11 +254,11 @@ Format: - + Format: Location: - + Placering: Records @@ -277,11 +266,11 @@ Select all - + Vælg alle Unselect all - + Fravælg alle @@ -292,11 +281,11 @@ Object properties - + Objektegenskaber Text - + Tekst Layout @@ -304,7 +293,7 @@ Alignment: - + Justering: Line spacing: @@ -324,7 +313,7 @@ None - + Ingen Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Familie: Size: - + Størrelse: Style: - + Stil: Color: - + Farve: Editor @@ -356,11 +345,11 @@ Barcode - + Stregkode Style - + Stil Type: @@ -372,15 +361,15 @@ Checksum - + Kontrolsum Barcode data - + Stregkodedata Image - + Billede File @@ -404,15 +393,15 @@ Line - + Linje Width: - + Bredde: Fill - + Fyld Position/Size @@ -420,27 +409,27 @@ Position - + Placering X: - + X: Y: - + Y: Size - + Størrelse Length: - + Længde: Angle: - + Vinkel: Original size: @@ -456,11 +445,11 @@ Height: - + Højde: Shadow - + Skygge X offset: @@ -472,7 +461,7 @@ Opacity: - + Ugennemsigtighed: @@ -483,19 +472,19 @@ Locale - + Sprog Select locale specific behavior. - + Vælg opførsel specifikt efter lokalt område. Units - + Enheder Points - + Punkter Centimeters @@ -503,11 +492,11 @@ Millimeters - + Millimeter Inches - + Tommer Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Kopier + + + Copies: + Kopier: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + udskriv beskæringsmærker print in reverse (i.e. a mirror image) - + udskriv omvendt (det vil sige et spejlbillede) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Producent: TextLabel @@ -589,23 +578,23 @@ Part #: - + Del #: Description: - + Beskrivelse: Page size: - + Sidestørrelse: Label size: - + Etiketstørrelse: Layout: - + Layout: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Søg i alle Search @@ -672,7 +653,7 @@ Other - + Anden Filter by category @@ -692,7 +673,7 @@ Recent - + Seneste Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Ydre radius: 4. Clipping height: - + 4. Klippehøjde: 2. Inner radius: - + 2. Indre radius: 3. Clipping width: - + 3. Klippebredde: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Højde: 1. Width: - + 1. Bredde: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Mærke: Part #: - + Del #: Description: - + Beskrivelse: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Antal på tværs (nx): Number down (ny): - + Antal ned (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Afstand fra venstre hjørne (x0): Horizontal pitch (dx): - + Vandret afstand (dx): Vertical pitch (dy): - + Lodret afstand (dy): Print test sheet + Udskriv testark + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Sidestørrelse: Width: - + Bredde: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Højde: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Højde: + + + 1. Width: + 1. Bredde: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Margen 1. Radius: - + 1. Radius: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Rektangulær eller firkant (kan have afrundede hjørner) Round - + Rund Elliptical - + Elliptisk CD/DVD (including credit card CDs) - + Cd/dvd (inklusiv kreditkorts-cd'er) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Afstand fra venstre hjørne (x0): Number down (ny): - - - - Distance from top edge (y0): - + Antal ned (ny): Number across (nx): - + Antal på tværs (nx): Horizontal pitch (dx): - + Vandret afstand (dx): Vertical pitch (dy): - + Lodret afstand (dy): Print test sheet + Udskriv testark + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + punkter inches - + tommer mm - + mm cm - + cm picas - + pica @@ -1138,7 +1085,7 @@ Custom Color - + Tilpasset farve Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Flyt Delete - + Slet glabels::MainWindow Welcome - + Velkommen Edit @@ -1303,19 +1250,19 @@ Undo - + Fortryd Redo - + Gendan Cut - + Klip Cut the selection - + Klip markeringen ud &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Kopier markeringen &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Indsæt fra udklipsholderen &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Slet de valgte objekter Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Vælg alle objekter Un-select All - + Fravælg alle Remove all selections - + Fjern alle markeringer Preferences - + Indstillinger Configure the application - + Konfigurere programmet File @@ -1383,7 +1330,7 @@ Grid - + Gitter Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Opmærkning Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Øg forstørrelse Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Formindsk forstørrelse Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Gendan skala til 100 % Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Angiv skala der passer til vinduet Select Mode - + Vælg tilstand Select, move and modify objects - + Vælg, flyt eller ændre objekter Text - + Tekst Create text object - + Opret tekstobjekt Box - + Boks Create box object - + Opret boksobjekt Line - + Linje Create line object - + Opret linjeobjekt Ellipse - + Ellipse Create ellipse/circle object - + Opret ellipse-/cirkelobjekt Image - + Billede Create image object - + Opret billedeobjekt Barcode - + Stregkode Create barcode object - + Opret stregkodeobjekt Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Juster objekter til de venstre hjørner Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Juster objekter til vandrette centrum Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Juster objekter til højre hjørner Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Juster objekter til øverste hjørner Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Juster objekter til lodret centreret Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Juster objekter til den nederste kants hjørner Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (ændret) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Dine ændringer vil gå tabt, hvis du ikke gemmer dem. Save project? @@ -1675,11 +1622,11 @@ Paste - + Indsæt Delete - + Slet Create Text @@ -1733,7 +1680,7 @@ Default - + Standard Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Boksobjekt - egenskaber line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Egenskaber for ellipseobjekt Image object properties - + Billedobjekt - egenskaber image @@ -1777,11 +1724,11 @@ Line object properties - + Linjeobjekt - egenskaber Text object properties - + Tekstobjekt - egenskaber text @@ -1789,7 +1736,7 @@ Barcode object properties - + Egenskaber for stregkodeobjekt barcode @@ -1797,15 +1744,15 @@ Object properties - + Objektegenskaber Line - + Linje Fill - + Fyld Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Angiv billede Move - + Flyt Size - + Størrelse Text - + Tekst Shadow - + Skygge @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Op @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Kopier @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Velkommen Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Antal layout Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Navn og beskrivelse Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Sidestørrelse Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Anden @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Kode 39 Code 39 Extended - + Kode 39 udvidet UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (alle) POSTNET-5 (ZIP only) - + POSTNET-5 (kun ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (alle) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A eller UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Kode 128 Code 128C - + Kode 128C Code 128B - + Kode 128B Interleaved 2 of 5 - + Interfolierede 2 af 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Kode 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Australsk post - svar betalt + + + Australia Post Route Code + Australsk post - rutekode + + + Australia Post Redirect + Australsk post - videresendelse + + + Aztec Code + Aztesk kode + + + Aztec Rune + Aztesk rune + + + Code One + Kode en + + + Code 11 + Kode 11 + + + Code 16K + Kode 16K + + + Code 2 of 5 Matrix + Kode 2 af 5 matrix + + + Code 2 of 5 IATA + Kode 2 af 5 IATA + + + Code 2 of 5 Data Logic + Kode 2 af 5 datalogik + + + Code 32 (Italian Pharmacode) + Kode 32 (Italiens pharmakode) + + + Code 49 + Kode 49 + + + DAFT Code + DAFT-kode + + + Data Matrix + Datamatrix + + + Deutsche Post Leitcode + Tysk post leitkode + + + Deutsche Post Identcode + Tysk post identkode + + + Dutch Post KIX Code + Hollandsk post KIX-kode + + + EAN + EAN + + + Grid Matrix + Gittermatrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 stablet + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 stablet omni. + + + GS1 DataBar Extended Stacked + GS1 Databar udvidet stablet + + + HIBC Code 128 + HIBC kode 128 + + + HIBC Code 39 + HIBC kode 39 + + + HIBC Data Matrix + HIBC-datamatrix + + + HIBC QR Code + HIBC QR-kode + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC aztesk kode + + + ITF-14 + ITF-14 + + + Japanese Postal + Japansk post + + + Korean Postal + Koreansk post + + + LOGMARS + LOGMARS + + + Maxicode + Maxikode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR-kode + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 afkortet + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmakode + + + Pharmacode 2-track + Pharmakode 2-spor + + + Pharmazentral Nummer (PZN) + Pharmazentral nummer (PZN) + + + QR Code + QR-kode + + + Royal Mail 4-State + Kongelig post 4-stat + + + Telepen + Telepen + + + Telepen Numeric + Telepen numerisk + + + USPS One Code + USPS 1-kode + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Uden titel @@ -2480,14 +2397,14 @@ Invalid barcode data - + Ugyldige stregkodedata glabels::model::ModelTextObject Text - + Tekst diff --git a/translations/glabels_de.ts b/translations/glabels_de.ts index a14bf6c..825b446 100644 --- a/translations/glabels_de.ts +++ b/translations/glabels_de.ts @@ -1,836 +1,806 @@ - + AboutDialog About gLabels - + Info zu gLabels &License - + &Lizenz &Website - + &Webseite &Close - + &Schließen Color name Light Scarlet Red - + Helles Scharlachrot Light Orange - + Helles Orange Light Butter - + Helles Buttergelb Light Chameleon - + Helles Chamäleon Light Sky Blue - + Helles Himmelblau Light Plum - + Helle Pflaume Light Chocolate - + Helle Schokolade Light Aluminum 1 - + Helles Aluminium 1 Light Aluminum 2 - + Helles Aluminium 2 Scarlet Red - + Scharlachrot Orange - + Orange Butter - + Buttergelb Chameleon - + Chamäleon Sky Blue - + Himmelblau Plum - + Pflaume Chocolate - + Schokolade Aluminum 1 - + Aluminium 1 Aluminum 2 - + Aluminium 2 Dark Scarlet Red - + Dunkles Scharlachrot Dark Orange - + Dunkles Orange Dark Butter - + Dunkles Buttergelb Dark Chameleon - + Dunkles Chamäleon Dark Sky Blue - + Dunkles Himmelblau Dark Plum - + Dunkle Pflaume Dark Chocolate - + Dunkle Schokolade Dark Aluminum 1 - + Dunkles Aluminium 1 Dark Aluminum 2 - + Dunkles Aluminium 2 Black - + Schwarz Very Dark Gray - + Sehr dunkles Grau Darker Gray - + Dunkleres Grau Dark Gray - + Dunkles Grau Medium Gray - + Mittleres Grau Light Gray - + Helles Grau Lighter Gray - + Helleres Grau Very Light Gray - + Sehr helles Grau White - + Weiß Db Other - - - - Roll - + Andere Factory None - + Keine Text: Comma Separated Values (CSV) - + Text: Durch Kommata getrennte Werte (CSV) Text: Comma Separated Values (CSV), keys on line 1 - + Text: Durch Kommata getrennte Werte (CSV) mit Schlüsseln in Zeile 1 Text: Tab Separated Values (TSV) - + Text: Durch Tabulatoren getrennte Werte (TSV) Text: Tab Separated Values (TSV), keys on line 1 - + Durch Tabulatoren getrennte Werte (TSV) mit Schlüsseln in Zeile 1 Text: Colon Separated Values - + Text: Durch Doppelpunkt getrennte Werte Text: Colon Separated Values, keys on line 1 - + Text: Durch Doppelpunkt getrennte Werte mit Schlüsseln in Zeile 1 Text: Semicolon Separated Values - + Text: Durch Semikola getrennte Werte Text: Semicolon Separated Values, keys on line 1 - + Text: Durch Semikola getrennte Werte mit Schlüsseln in Zeile 1 Frame %1 x %2 (%3 per sheet) - + %1 x %2 (%3 pro Seite) %1 per sheet - + %1 pro Seite FrameCd diameter - - - - - FrameContinuous - - wide - + Durchmesser FrameRound diameter - + Durchmesser MergeView Form - + Formular Source - + Quelle Location - + Ort Format: - + Format: Location: - + Ort: Records - + Datensätze Select all - + Alles auswählen Unselect all - + Alles abwählen ObjectEditor Form - - - - Object properties - + Form Text - + Text Layout - + Anordnung Alignment: - + Ausrichtung: Line spacing: - + Zeilenabstand: Wrap mode: - + Umbruchstyp: Word - - - - Anywhere - - - - None - + Wort Allow printing to shrink text to fit object - + Textverkleinerung beim Drucken zulassen Font - + Schrift Family: - + Familie: Size: - + Größe: Style: - + Stil: Color: - + Farbe: Editor - + Editor Barcode - + Strichcode Style - + Stil Type: - + Typ: Show text - + Text anzeigen Checksum - + Prüfsumme Barcode data - + Barcode-Daten Image - + Bild File - + Datei + + + None + Keine + + + Anywhere + Beliebig Select File... - + Datei auswählen … or - + oder Select Merge Field... - + Datenfeld auswählen … Line/Fill - + Linie/Füllung Line - + Linie Width: - + Breite: Fill - + Füllung Position/Size - + Position/Größe Position - + Position X: - + X: Y: - + Y: Size - + Größe Length: - + Länge: Angle: - + Winkel: Original size: - + Originalgröße: Reset - + Zurücksetzen Lock aspect ratio - + Seitenverhältnis beibehalten Height: - + Höhe: Shadow - + Schattierung X offset: - + X-Position: Y offset: - + Y-Position: Opacity: - + Deckkraft: + + + Object properties + Objekteigenschaften PreferencesDialog gLabels - Preferences - + gLabels – Einstellungen Locale - + Sprache Select locale specific behavior. - + Legen Sie das sprachspezifische Verhalten fest. Units - + Einheiten Points - + Punkte Centimeters - + Zentimeter Millimeters - + Millimeter Inches - + Zoll Picas - + Picas PrintView Form - - - - Copies - - - - Copies: - - - - Start on position: - - - - on 1st page - - - - Print options - - - - print outlines - - - - print crop marks - - - - print in reverse (i.e. a mirror image) - - - - Print - + Form Page - + Seite of - + von nn - + nn + + + Copies + Kopien + + + Copies: + Kopien: + + + Start on position: + Beginnen bei Position: + + + on 1st page + auf der ersten Seite + + + Print options + Druckoptionen + + + print outlines + Begrenzungen drucken + + + print crop marks + Schnittmarken drucken + + + print in reverse (i.e. a mirror image) + Spiegelbildlich drucken + + + Print + Drucken PropertiesView Form - + Form Product - + Produkt Vendor: - + Anbieter: TextLabel - + TextLabel Part #: - + Bestellnummer: Description: - + Beschreibung: Page size: - + Seitengröße: Label size: - + Etikettgröße: Layout: - + Anordnung: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> - + <html><head/><body><p>Wählen Sie ein anderes Produkt für dieses gLabels-Projekt.</p></body></html> Change product - - - - Adjustable Parameters - - - - Label length: - + Produkt ändern Orientation - + Ausrichtung Select horizontal or vertical orientation. - + Wählen Sie die horizontale oder vertikale Ausrichtung. Horizontal orientation - + Horizontale Ausrichtung Vertical orientation - + Vertikale Ausrichtung Similar Products - + Ähnliche Produkte SelectProductDialog gLabels - Select Product - + gLabels - Produkt auswählen Search all - + Alle durchsuchen Search - + Suchen Filter by paper size - + Nach Papiergröße filtern ISO sizes - + ISO-Größen US sizes - + US-Größen Other - + Andere Filter by category - + Nach Kategorien filtern All - + Alle Selected - + Ausgewählt Search entire product database. - + Die gesamte Produktdatenbank durchsuchen. Recent - + Zuletzt verwendet Select from recently used products. - + Aus zuletzt verwendeten Produkten auswählen. &Cancel - + &Abbrechen StartupView Form - + Form Welcome to gLabels. Let's get started: - + Willkommen zu gLabels. Lassen Sie uns beginnen: New Project - + Neues Projekt Create a new blank gLabels project - + Ein neues, leeres gLabels-Projekt erstellen Open Project - + Projekt öffnen Open an existing gLabels project - + Ein existierendes gLabels-Projekt öffnen TemplateDesignerApplyPage Form - + Form You have completed the gLabels Product Template Designer. If you wish to accept and save your product template, click "Save." - + Das Erzeugen der Vorlage ist abgeschlossen. Falls Sie diese Vorlage akzeptieren und speichern wollen, klicken Sie auf »Speichern« Otherwise, you may click "Cancel" to abandon your design or "Back" to review or continue editing this product template. - + Anderenfalls klicken Sie auf »Abbrechen«, um die Vorlage zu verwerfen, oder auf »Zurück«, um die Vorlage erneut zu bearbeiten. TemplateDesignerCdPage Form - - - - 6. Margin: - - - - 1. Outer radius: - + Form 4. Clipping height: - + 4. Innere Höhe: 2. Inner radius: - + 2.Innerer Radius: - 3. Clipping width: - + 1. Outer radius: + 1. Äußerer Radius: 5. Waste: - - - - - TemplateDesignerContinuousPage - - Form - + 5. Überstand: - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + 3. Clipping width: + 4. Innere Breite: + + + 6. Margin: + 6. Rand: TemplateDesignerEllipsePage Form - - - - 2. Height: - - - - 1. Width: - + Form 3. Waste: - + 3. Überstand: + + + 2. Height: + 2. Höhe: + + + 1. Width: + 1. Breite: 4. Margin: - + 4. Rand: TemplateDesignerIntroPage Form - + Form <html><head/><body><p>This dialog will help you create a custom product template. Let's get started:</p></body></html> - + <html><head/><body><p>Dieser Dialog hilft Ihnen beim Erstellen einer benutzerdefinierten Produktvorlage. Lassen Sie uns beginnen:</p></body></html> Copy/Edit Product - + Vorlage kopieren/bearbeiten Copy and edit an existing product template - + Eine existierende Vorlage kopieren und bearbeiten New Product - + Neue Vorlage Create a new product template from scratch @@ -841,81 +811,81 @@ TemplateDesignerNLayoutsPage Form - + Form A layout is a set of labels or cards that can be arranged in a simple grid. Most products only need one layout, as in the first example below. The second example illustrates when two layouts are needed. - + Ein Layout ist ein Satz von Etiketten oder Karten, die in einem einfachen Raster angeordnet sind. Die meisten Vorlagen verwenden nur ein Layout, wie im ersten Beispiel. Das zweite Beispiel zeigt die Verwendung zweier Layouts. Products needing only one layout. - + Vorlagen benötigen nur ein Layout. Products needing two layouts. - + Vorlagen benötigen zwei Layouts. Note: if more than two layouts are required, the product template must be edited manually. - + Hinweis: Falls mehr als zwei Layouts erforderlich sein sollten, muss die Vorlage manuell nachbearbeitet werden. One layout - + Ein Layout Two layouts - + Zwei Layouts TemplateDesignerNamePage Form - - - - (e.g. "Mailing Labels," "Business Cards," ...) - + Form Brand: - - - - Part #: - - - - Description: - - - - (e.g. 8163A) - + Marke: (e.g. Avery, Acme, ...) - + (z.B.. Avery, Acme, …) + + + Part #: + Bestellnummer: + + + (e.g. 8163A) + (z.B. 8163A) + + + Description: + Beschreibung: + + + (e.g. "Mailing Labels," "Business Cards," ...) + (z.B. »Adressaufkleber«, »Visitenkarten« …) TemplateDesignerOneLayoutPage Form - + Form Number across (nx): - + Anzahl horizontal (nx): Number down (ny): - + Anzahl vertikal (nx): Distance from left edge (x0): - + Abstand vom linken Rand (x0): Distance from top edge (y0): @@ -923,145 +893,122 @@ Horizontal pitch (dx): - + Horizontaler Abstand (dx): Vertical pitch (dy): - + Vertikaler Abstand (dy): Print test sheet - + Testseite drucken TemplateDesignerPageSizePage Form - - - - Roll width: - - - - Height: - - - - Width: - + Form Page size: - - - - - TemplateDesignerPathPage - - Form - + Seitengröße: - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Width: + Breite: + + + Height: + Höhe: TemplateDesignerRectPage Form - - - - 4. Horizontal waste: - - - - 3. Corner radius - + Form 1. Width: - - - - 5. Vertical waste: - + 1. Breite: 2. Height: - + 2. Höhe: - 6. Margin (X): - + 3. Corner radius + 3. Radius der Ecken - 7. Margin (Y): - + 4. Horizontal waste: + 4. Horizontaler Überstand: - in - + 5. Vertical waste: + 4. Vertikaler Überstand: + + + 6. Margin: + 6. Rand: TemplateDesignerRoundPage Form - - - - 3. Margin - - - - 1. Radius: - + Form 2. Waste: - + 2. Überstand: + + + 1. Radius: + 1. Radius: + + + 3. Margin + 3. Rand TemplateDesignerShapePage Form - + Form Rectangular or square (can have rounded corners) - + Rechteckig oder quadratisch (auch mit abgerundeten Ecken) Round - + Rund Elliptical - + Elliptisch CD/DVD (including credit card CDs) - + CD/DVD (einschließlich Kreditkarten-CDs) TemplateDesignerTwoLayoutPage Form - + Form Distance from left edge (x0): - + Abstand vom linken Rand (x0): Number down (ny): - + Anzahl vertikal (nx): Distance from top edge (y0): @@ -1069,1231 +1016,1201 @@ Number across (nx): - + Anzahl horizontal (nx): Horizontal pitch (dx): - + Horizontaler Abstand (dx): Vertical pitch (dy): - + Vertikaler Abstand (dy): Print test sheet - + Testseite drucken Units points - + Punkte inches - + Zoll mm - + Millimeter cm - + Zentimeter picas - + Picas glabels::AboutDialog Version - + Version A program to create labels and business cards. - + Ein Programm zum Entwerfen von Etiketten und Visitenkarten. gLabels is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + gLabels ist freie Software; Sie können es unter den Bedingungen der GNU General Public License weiterverteilen und/oder ändern, veröffentlicht von der Free Software Foundation, entweder in Version 3 der Lizenz oder (optional) in jeder späteren Version. gLabels is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + gLabels wurde mit dem Ziel veröffentlicht, dass Sie es nützlich finden, jedoch OHNE JEGLICHE GARANTIE, sogar ohne eine implizite Garantie der MARKTREIFE oder der EIGNUNG FÜR EINEN SPEZIELLEN ZWECK. Schauen Sie für weitere Informationen bitte in der »GNU General Public License« (GNU GPL) nach. glabels::ColorPaletteDialog Custom color... - + Benutzerdefinierte Farbe … Merge key... - + Datenfeld auswählen … Custom Color - + Benutzerdefinierte Farbe Custom color #%1 - + Benutzerdefinierte Farbe Nr. %1 glabels::File gLabels - Open Project - + gLabels - Projekt öffnen glabels files (*.glabels);;All files (*) - + glabels-Dateien (*.glabels);;Alle Dateien (*) Unable to open " - + Folgendes konnte nicht geöffnet werden: » ". - + «. gLabels - Save Project As - + gLabels - Projekt speichern unter Save Label As - + Etikett speichern unter %1 already exists. - + %1 existiert bereits. Do you want to replace it? - + Wollen Sie es ersetzen? glabels::LabelEditor Move - + Verschieben Delete - + Löschen glabels::MainWindow Welcome - - - - Edit - + Willkommen Properties - + Eigenschaften Merge - + Seriendokument Print - + Drucken + + + Edit + Bearbeiten &New... - + &Neu … Create a new gLabels project - + Ein neues gLabels-Projekt erstellen &Open... - + Ö&ffnen … Open an existing gLabels project - + Ein existierendes gLabels-Projekt öffnen &Save - + &Speichern Save current gLabels project - + Aktuelles gLabels-Projekt speichern Save &As... - + Speichern &unter … Save current gLabels project to a different name - + Aktuelles gLabels-Projekt unter einem anderen Namen speichern &Edit - + &Bearbeiten Select project Edit mode - + Projektbearbeitungsmodus wählen P&roperties - + &Eigenschaften Select project Properties mode - + Projekteigenschaftsmodus wählen &Merge - + &Mischen Select project Merge mode - + Mischeinstellungsmodus wählen &Print - + &Drucken Select project Print mode - + Projektdruckmodus wählen Product Template &Designer... - + Vorlagen-&Designer … Create custom templates - + Benutzerdefinierte Vorlagen erstellen &Close - + &Schließen Close the current window - + Das aktuelle Fenster schließen E&xit - + &Beenden Exit glabels - + gLabels beenden Undo - + Rückgängig Redo - + Wiederholen Cut - + Ausschneiden Cut the selection - + Die Auswahl ausschneiden &Copy - + &Kopieren Copy the selection - + Die Auswahl kopieren &Paste - + Ein&fügen Paste the clipboard - + Den Inhalt der Zwischenablage einfügen &Delete - + &Löschen Delete the selected objects - + Die ausgewählten Objekte löschen Select &All - + &Alles auswählen Select all objects - + Alle Objekte auswählen Un-select All - + Alles abwählen Remove all selections - + Alle Auswahlen aufheben Preferences - + Einstellungen Configure the application - + Die Anwendung einrichten File - + Datei Change visibility of file toolbar in current window - + Die Sichtbarkeit der Werkzeugleiste im aktuellen Fenster ändern Editor - + Editor Change visibility of editor toolbar in current window - + Die Sichtbarkeit des Editors im aktuellen Fenster ändern Grid - + Gitter Change visibility of the grid in current window - + Die Sichtbarkeit des Gitters im aktuellen Fenster ändern Markup - + Markierungen Change visibility of markup lines in current window - + Die Sichtbarkeit von Markierungslinien im aktuellen Fenster ändern Zoom &In - + Ver&größern Increase magnification - + Vergrößerungsstufe erhöhen Zoom &Out - + Ver&kleinern Decrease magnification - + Vergrößerungsstufe verringern Zoom &1 to 1 - + Vergrößerung &1:1 Restore scale to 100% - + Maßstab auf 100% wiederherstellen Zoom to &Fit - + Ein&passen Set scale to fit window - + In Fenster einpassen Select Mode - + Modus auswählen Select, move and modify objects - + Objekte auswählen, bewegen, ändern Text - + Text Create text object - + Ein Textobjekt erstellen Box - + Rechteck Create box object - + Ein Rechteck-Objekt erstellen Line - + Linie Create line object - + Ein Linienobjekt erstellen Ellipse - + Ellipse Create ellipse/circle object - + Ein Ein Ellipsen- oder Kreisobjekt erstellen Image - + Bild Create image object - + Ein Bildobjekt erstellen Barcode - + Strichcode Create barcode object - + Ein Barcode-Objekt erstellen Bring To Front - + Ganz nach vorn Raise selection to top - + Auswahl ganz nach vorn bringen Send To Back - + Ganz nach hinten Lower selection to bottom - + Auswahl ganz nach hinten bringen Rotate Left - + Links drehen Rotate object(s) 90 degrees counter-clockwise - + Objekt um 90 Grad gegen den Uhrzeigersinn drehen Rotate Right - + Rechts drehen Rotate object(s) 90 degrees clockwise - + Objekt um 90 Grad im Uhrzeigersinn drehen Flip Horizontally - + Horizontal spiegeln Flip object(s) horizontally - + Objekt(e) horizontal spiegeln Flip Vertically - + Vertikal spiegeln Flip object(s) vertically - + Objekt(e) vertikal spiegeln Align Left - + Links ausrichten Align objects to left edges - + Objekte am linken Rand anordnen Align Center - + Zentral ausrichten Align objects to horizontal centers - + Objekte an der horizontalen Mitte anordnen Align Right - + Rechts ausrichten Align objects to right edges - + Objekte am rechten Rand anordnen Align Top - + Oben ausrichten Align objects to top edges - + Objekte am oberen Rand anordnen Align Middle - + Mittig ausrichten Align objects to vertical centers - + Objekte an der vertikalen Mitte anordnen Align Bottom - + Unten ausrichten Align objects to bottom edges - + Objekte am unteren Rand anordnen Center Horizontally - + Horizontal zentrieren Horizontally center objects in label - + Objekte auf dem Etikett horizontal zentrieren Center Vertically - + Vertikal zentrieren Vertically center objects in label - + Objekte auf dem Etikett vertikal zentrieren &Contents... - + &Inhalt … Open gLabels manual - + Das gLabels-Handbuch öffnen &About... - + In&fo … About gLabels - + Info zu gLabels &File - + &Datei &View - + &Ansicht Toolbars - + Werkzeugleisten &Objects - + &Objekte &Create - + Er&zeugen &Order - + &Anordnung &Rotate/Flip - + D&rehen/Spiegeln &Alignment - + &Ausrichtung Center - + Mitte &Help - + &Hilfe &Editor - + &Editor (modified) - + (geändert) Save changes to project "%1" before closing? - + Änderungen am Dokument »%1« vor dem Schließen speichern? Your changes will be lost if you don't save them. - + Nicht gespeicherte Änderungen gehen verloren, wenn Sie nicht speichern. Save project? - + Projekt speichern? Paste - + Einfügen Delete - + Löschen Create Text - + Textobjekt erzeugen Create Box - + Rechteck-Objekt erzeugen Create Line - + Linienobjekt erzeugen Create Ellipse - + Ellipse erzeugen Create Image - + Bild erzeugen Create Barcode - + Strichcode erzeugen glabels::MergeView Merge - + Seriendokument Select merge file - + Datenquelle auswählen All files (*) - + Alle Dateien (*) glabels::ObjectEditor No line - + Keine Linie No fill - + Keine Füllung Default - + Vorgabe Insert Field - + Feld einfügen Key - + Schlüssel Original size - + Originalgröße Box object properties - + Eigenschaften des Rechteck-Objekts line/fill - + Linie/Füllung position/size - + Position/Größe shadow - + Schatten Ellipse object properties - + Eigenschaften des Ellipsenobjekts Image object properties - + Eigenschaften des Bildobjekts image - + Bild Line object properties - + Eigenschaften des Linienobjekts Text object properties - + Eigenschaften des Textobjekts text - + Text Barcode object properties - + Eigenschaften des Strichcode-Objekts barcode - + Barcode Object properties - + Objekteigenschaften Line - + Linie Fill - + Füllung Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) - + Bilddateien (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) All files (*) - + Alle Dateien (*) PNG - Portable Network Graphics (*.png) - + PNG - Portable Network Graphics (*.png) BMP - Windows Bitmap (*.bmp) - + BMP - Windows Bitmap (*.bmp) GIF - Graphics Interchange Format (*.gif) - + GIF - Graphics Interchange Format (*.gif) JPEG - Joint Photographic Experts Group (*.jpg *.jpeg) - + JPEG - Joint Photographic Experts Group (*.jpg *.jpeg) PBM - Portable Bitmap (*.pbm) - + PBM - Portable Bitmap (*.pbm) PGM - Portable Graymap (*.pgm) - + PGM - Portable Graymap (*.pgm) PPM - Portable Pixmap (*.ppm) - + PPM - Portable Pixmap (*.ppm) SVG - Scalable Vector Graphics (*.svg) - + SVG - Scalable Vector Graphics (*.svg) XBM - X11 Bitmap (*.xbm) - + XBM - X11 Bitmap (*.xbm) XPM - X11 Pixmap (*.xpm) - + XPM - X11 Pixmap (*.xpm) gLabels - Select image file - + gLabels - Bilddatei wählen Set image - + Bild festlegen Move - + Verschieben Size - + Größe Text - + Text Shadow - + Schattierung glabels::PrintView Print - + Drucken (Will print a total of %1 items on %2 pages.) - + (Es werden insgesamt %1 Exemplare auf %2 Seiten gedruckt.) glabels::PropertiesView Properties - + Eigenschaften Product Rotate - + Produkt drehen Change Product - + Produkt wechseln glabels::SimplePreview Up - + Nach oben glabels::TemplateDesigner Product Template Designer - - - - Roll - + Vorlagendesigner Copy - + Kopieren glabels::TemplateDesignerApplyPage Save Product Template - + Vorlage speichern Click "Save" to save your custom product template! - + Klicken Sie auf »Speichern«, um Ihre benutzerdefinierte Vorlage zu speichern! User product template (%1 %2) already exists. - + Die benutzerdefinierte Vorlage (%1 %2) existiert bereits. Do you want to replace it? - + Wollen Sie sie ersetzen? glabels::TemplateDesignerCdPage Product Size - + Größe Please adjust the size parameters of a single product item. - - - - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - + Bitte geben Sie die folgenden Größenwerte des einzelnen Etiketts oder der einzelnen Karte in Ihrer Vorlage an. glabels::TemplateDesignerEllipsePage Product Size - + Größe Please adjust the size parameters of a single product item. - + Bitte passen Sie die Größenwerte des einzelnen Etiketts oder der einzelnen Karte an. glabels::TemplateDesignerIntroPage Welcome - + Willkommen Welcome to the gLabels Product Template Designer. - + Willkommen zum Vorlagendesigner von gLabels. glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Anzahl der Layouts Please select the number of layouts required. - + Bitte geben Sie die Anzahl der benötigten Layouts ein. glabels::TemplateDesignerNamePage Name and Description - + Name und Beschreibung Please enter the following identifying information about the product. - + Bitte geben Sie die folgenden Identifizierungsinformationen zum Produkt ein. Brand and part number match an existing built-in product template! - + Marke und Bestellnummer entsprechen einem existierenden Produkt in der Datenbank! glabels::TemplateDesignerOneLayoutPage Layout - + Layout Please enter parameters for your single layout. - + Bitte geben Sie die folgenden Größenwerte für ein einzelnes Layout an. glabels::TemplateDesignerPageSizePage Page Size - + Seitengröße Please select the product page size. - + Bitte geben Sie die Seitengröße des Produkts an. Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Andere glabels::TemplateDesignerRectPage Product Size - + Größe Please adjust the size parameters of a single product item. - + Bitte passen Sie die Größenwerte des einzelnen Etiketts oder der einzelnen Karte an. glabels::TemplateDesignerRoundPage Product Size - + Größe Please adjust the size parameters of a single product item. - + Bitte passen Sie die Größenwerte des einzelnen Etiketts oder der einzelnen Karte an. glabels::TemplateDesignerShapePage Product Shape - + Form Please select the basic product shape. - + Bitte geben Sie die grundlegende Form des Produkts an. glabels::TemplateDesignerTwoLayoutPage Layouts - + Layouts Please enter parameters for your two layouts. - + Bitte geben Sie die Größenwerte für zwei Layouts an. glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 erweitert UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (alle) POSTNET-5 (ZIP only) - + POSTNET-5 (nur ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail - + USPS Intelligent Mail IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (alle) EAN-8 - + EAN-8 EAN-8+2 - + EAN-8+2 EAN-8+5 - + EAN-8+5 EAN-13+2 - + EAN-13+2 EAN-13+5 - + EAN-13+5 UPC (UPC-A or UPC-E) - + UPC (UPC-A oder UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Interleaved 2 of 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - - - - Australia Post Standard - + IEC18004 (QRCode) Australia Post Reply Paid - + Australische Post, mit Rückantwort Australia Post Route Code - + Australische Post, Routencode Australia Post Redirect - + Australische Post, Rücksendung Aztec Code - + Aztec-Code Aztec Rune - + Aztec-Rune Code One - + Code One Code 11 - + Code 11 Code 16K - + Code 16K Code 2 of 5 Matrix - + Code 2 von 5 Matrix Code 2 of 5 IATA - + Code 2 von 5 IATA Code 2 of 5 Data Logic - + Code 2 von 5 Data Logic Code 32 (Italian Pharmacode) - + Code 32 (Italienischer Pharmacode) Code 49 + Code 49 + + + Australia Post Standard @@ -2302,203 +2219,203 @@ DAFT Code - + DAFT-Code Data Matrix - + Data Matrix Deutsche Post Leitcode - + Deutsche Post Leitcode Deutsche Post Identcode - + Deutsche Post Identcode Dutch Post KIX Code - + KIX-Code der Niederländischen Post EAN - + EAN Grid Matrix - + Rastermatrix GS1-128 - + GS1-128 GS1 DataBar-14 - + GS1 DataBar-14 GS1 DataBar-14 Stacked - + GS1 DataBar-14 mehrteilig GS1 DataBar-14 Stacked Omni. - + GS1 DataBar-14 mehrteilig omni. GS1 DataBar Extended Stacked - + GS1 DataBar erweitert mehrteilig HIBC Code 128 - + HIBC Code 128 HIBC Code 39 - + HIBC Code 39 HIBC Data Matrix - + HIBC Data Matrix HIBC QR Code - + HIBC QR-Code HIBC PDF417 - + HIBC PDF417 HIBC Micro PDF417 - + HIBC Micro PDF417 HIBC Aztec Code - + HIBC Aztec-Code ITF-14 - + ITF-14 Japanese Postal - + Japanische Post Korean Postal - + Koreanische Post LOGMARS - + LOGMARS Maxicode - + Maxicode Micro PDF417 - + Micro PDF417 Micro QR Code - + Micro QR-Code MSI Plessey - + MSI Plessey NVE-18 - + NVE-18 PDF417 - + PDF417 PDF417 Truncated - + PDF417 verkürzt PLANET - + PLANET PostNet - + PostNet Pharmacode - + Pharmacode Pharmacode 2-track - + Pharmacode 2-reihig Pharmazentral Nummer (PZN) - + Pharmazentral-Nummer (PZN) QR Code - + QR-Code Royal Mail 4-State - + Royal Mail 4-State Telepen - + Telepen Telepen Numeric - + Telepen numerisch USPS One Code - + USPS One Code UK Plessey - + UK Plessey glabels::model::Model Untitled - + Unbenannt glabels::model::ModelBarcodeObject No barcode data - + Keine Barcode-Daten Invalid barcode data - + Ungültige Barcode-Daten glabels::model::ModelTextObject Text - + Text main gLabels Label Designer - + gLabels Label Designer gLabels project files to open, optionally. - + Zu öffnende gLabels-Projektdateien, optional. diff --git a/translations/glabels_el.ts b/translations/glabels_el.ts index 4b979c8..94b8ae7 100644 --- a/translations/glabels_el.ts +++ b/translations/glabels_el.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Πορτοκαλί Butter @@ -132,7 +132,7 @@ Black - + Μαύρο Very Dark Gray @@ -164,29 +164,25 @@ White - + Άσπρο Db Other - - - - Roll - + Άλλο Factory None - + Καμία Text: Comma Separated Values (CSV) - + Κείμενο: Διαχωρισμένο με κόμμα (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Κείμενο: Τιμές χωρισμένες με στηλοθέτη (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + διάμετρος FrameRound diameter - + διάμετρος @@ -257,7 +246,7 @@ Source - + Πηγή Location @@ -265,11 +254,11 @@ Format: - + Μορφοποίηση: Location: - + Τοποθεσία: Records @@ -277,11 +266,11 @@ Select all - + Επιλογή όλων Unselect all - + Αποεπιλογή όλων @@ -292,11 +281,11 @@ Object properties - + Ιδιότητες αντικειμένου Text - + Κείμενο Layout @@ -304,7 +293,7 @@ Alignment: - + Στοίχιση: Line spacing: @@ -324,7 +313,7 @@ None - + Καμία Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Οικογένεια: Size: - + Μέγεθος: Style: - + Στυλ: Color: - + Χρώμα: Editor @@ -356,11 +345,11 @@ Barcode - + Barcode Style - + Στυλ Type: @@ -372,15 +361,15 @@ Checksum - + Checksum Barcode data - + Δεδομένα Barcode Image - + Εικόνα File @@ -404,15 +393,15 @@ Line - + Γραμμή Width: - + Πλάτος: Fill - + Γέμισμα Position/Size @@ -420,27 +409,27 @@ Position - + Θέση X: - + X: Y: - + Y: Size - + Μέγεθος Length: - + Μήκος: Angle: - + Γωνία: Original size: @@ -456,11 +445,11 @@ Height: - + Ύψος: Shadow - + Σκιά X offset: @@ -472,7 +461,7 @@ Opacity: - + Διαφάνεια: @@ -483,19 +472,19 @@ Locale - + Γλώσσα Select locale specific behavior. - + Επιλογή τοπικής ειδικής συμπεριφοράς. Units - + Μονάδες Points - + Πόντοι Centimeters @@ -503,11 +492,11 @@ Millimeters - + Χιλιοστά Inches - + Ίντσες Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Αντίγραφα + + + Copies: + Αντίγραφα: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + εκτύπωση σημείων περικοπής print in reverse (i.e. a mirror image) - + αντίστροφη εκτύπωση (δηλαδή κατοπτρική εικόνα) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Κατασκευαστής: TextLabel @@ -589,23 +578,23 @@ Part #: - + Είδος #: Description: - + Περιγραφή: Page size: - + Μέγεθος Σελίδας: Label size: - + Μέγεθος ετικέτας: Layout: - + Διάταξη: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Επιλογή όλων Search @@ -672,7 +653,7 @@ Other - + Άλλο Filter by category @@ -692,7 +673,7 @@ Recent - + Πρόσφατο Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Εξωτερική ακτίνα: 4. Clipping height: - + 4. Ύψος κοπής: 2. Inner radius: - + 2. Εσωτερική ακτίνα: 3. Clipping width: - + 3. Πλάτος κοπής: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Ύψος: 1. Width: - + 1. Πλάτος: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Μάρκα: Part #: - + Είδος #: Description: - + Περιγραφή: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Αριθμός οριζόντιων κομματιών (nx): Number down (ny): - + Αριθμός κάθετων κομματιών (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Απόσταση από την αριστερή άκρη (x0): Horizontal pitch (dx): - + Οριζόντιο βήμα (dx): Vertical pitch (dy): - + Κάθετο βήμα (dy): Print test sheet + Εκτύπωση δοκιμαστικού φύλλου + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Μέγεθος Σελίδας: Width: - + Πλάτος: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Ύψος: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Ύψος: + + + 1. Width: + 1. Πλάτος: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Περιθώριο 1. Radius: - + 1. Ακτίνα: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Ορθογώνιο ή τετράγωνο (μπορεί να έχει στρογγυλεμένες γωνίες) Round - + Στρογγυλό Elliptical - + Έλλειψη CD/DVD (including credit card CDs) - + CD/DVD (συμπεριλαμβανομένης CD μεγέθους πιστωτικής κάρτας) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Απόσταση από την αριστερή άκρη (x0): Number down (ny): - - - - Distance from top edge (y0): - + Αριθμός κάθετων κομματιών (ny): Number across (nx): - + Αριθμός οριζόντιων κομματιών (nx): Horizontal pitch (dx): - + Οριζόντιο βήμα (dx): Vertical pitch (dy): - + Κάθετο βήμα (dy): Print test sheet + Εκτύπωση δοκιμαστικού φύλλου + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + σημεία inches - + ίντσες mm - + mm cm - + cm picas - + picas @@ -1138,7 +1085,7 @@ Custom Color - + Προσαρμοσμένο χρώμα Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Μετακίνηση Delete - + Διαγραφή glabels::MainWindow Welcome - + Καλως ήλθατε Edit @@ -1303,19 +1250,19 @@ Undo - + Αναίρεση Redo - + Ακύρωση αναίρεσης Cut - + Αποκοπή Cut the selection - + Αποκοπή επιλογής &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Αντιγραφή επιλογής &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Επικόλληση των περιεχομένων του προχείρου &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Διαγραφή των επιλεγμένων αντικειμένων Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Επιλογή όλων των αντικειμένων Un-select All - + Αποεπιλογή όλων Remove all selections - + Αφαίρεση όλων των αντικειμένων Preferences - + Ιδιότητες Configure the application - + Ρύθμιση εφαρμογής File @@ -1383,7 +1330,7 @@ Grid - + Πλέγμα Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Σήμανση Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Αύξηση μεγένθυνσης Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Ελάττωση μεγένθυνσης Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Επαναφορά κλίμακας σε 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Ορισμός κλίμακας για προσαρμογή παραθύρου Select Mode - + Λειτουργία επιλογής Select, move and modify objects - + Επιλογή, μετακίνηση και τροποποίηση αντικειμένων Text - + Κείμενο Create text object - + Δημιουργία αντικειμένου κειμένου Box - + Πλαίσιο Create box object - + Δημιουργία αντικειμένου πλαισίου Line - + Γραμμή Create line object - + Δημιουργία αντικειμένου γραμμής Ellipse - + Έλλειψη Create ellipse/circle object - + Δημιουργία αντικειμένου έλλειψη/κύκλος Image - + Εικόνα Create image object - + Δημιουργία αντικειμένου εικόνας Barcode - + Barcode Create barcode object - + Δημιουργία αντικειμένου barcode Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Στοίχιση αντικειμένων στα αριστερά άκρα Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Στοίχιση αντικειμένων σε οριζόντια κέντρα Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Στοίχιση αντικειμένων στα δεξιά άκρα Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Στοίχιση αντικειμένων στα πάνω άκρα Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Στοίχιση αντικειμένων σε κάθετα κέντρα Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Στοίχιση αντικειμένων στα κάτω άκρα Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (τροποποιημένο) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Οι αλλαγές σας θα χαθούν εάν δεν τις αποθηκεύσετε. Save project? @@ -1675,11 +1622,11 @@ Paste - + Επικόλληση Delete - + Διαγραφή Create Text @@ -1733,7 +1680,7 @@ Default - + Προεπιλογή Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Ιδιότητες αντικειμένου πλαισίου line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Ιδιότητες αντικειμένου έλλειψης Image object properties - + Ιδιότητες αντικειμένου εικόνας image @@ -1777,11 +1724,11 @@ Line object properties - + Ιδιότητες αντικειμένου γραμμής Text object properties - + Ιδιότητες αντικειμένου κειμένου text @@ -1789,7 +1736,7 @@ Barcode object properties - + Ιδιότητες αντικειμένου Barcode barcode @@ -1797,15 +1744,15 @@ Object properties - + Ιδιότητες αντικειμένου Line - + Γραμμή Fill - + Γέμισμα Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Ορισμός εικόνας Move - + Μετακίνηση Size - + Μέγεθος Text - + Κείμενο Shadow - + Σκιά @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Επάνω @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Αντιγραφή @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Καλως ήλθατε Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Αριθμός διατάξεων Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Όνομα και Περιγραφή Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Μέγεθος σελίδας Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Άλλο @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 Εκτεταμένο UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (οποιοδήποτε) POSTNET-5 (ZIP only) - + POSTNET-5 (μόνο ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (οποιοδήποτε) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A ή UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Παρεμβολή 2 από 5 Codabar - + Ραβδωτός κώδικας MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Πληρωμένη ταχυδρομική απάντηση Αυστραλίας + + + Australia Post Route Code + Ταχυδρομικός κώδικας Αυστραλίας + + + Australia Post Redirect + Ταχυδρομική ανακατεύθυνση Αυστραλίας + + + Aztec Code + Κώδικας Aztec + + + Aztec Rune + Aztec Rune + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + Code 2 από 5 Matrix + + + Code 2 of 5 IATA + Code 2 από 5 IATA + + + Code 2 of 5 Data Logic + Code 2 από 5 Data Logic + + + Code 32 (Italian Pharmacode) + Code 32 (Ιταλικός φαρμακευτικός κώδικας) + + + Code 49 + Code 49 + + + DAFT Code + Code DAFT + + + Data Matrix + Πίνακας δεδομένων + + + Deutsche Post Leitcode + Γερμανικός ταχυδρομικός κώδικας Leitcode + + + Deutsche Post Identcode + Γερμανικός ταχυδρομικός κώδικας Identcode + + + Dutch Post KIX Code + Ολλανδικός ταχυδρομικός κώδικας KIX + + + EAN + EAN + + + Grid Matrix + Πίνακας πλέγματος + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Stacked + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Stacked Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar Extended Stacked + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + Πίνακας δεδομένων HIBC + + + HIBC QR Code + HIBC QR Code + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + Ιαπωνικός ταχυδρομικός κώδικας + + + Korean Postal + Κορεάτικος ταχυδρομικός κώδικας + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + Κολοβό PDF417 + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Φαρμακευτικός κώδικας + + + Pharmacode 2-track + Φαρμακευτικός κώδικας 2 ιχνών + + + Pharmazentral Nummer (PZN) + Κεντρικός αριθμός φαρμάκων (PZN) + + + QR Code + Κώδικας QR + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Αριθμητικό Telepen + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Χωρίς Τίτλο @@ -2480,14 +2397,14 @@ Invalid barcode data - + Μη έγκυρα δεδομένα barcode glabels::model::ModelTextObject Text - + Κείμενο diff --git a/translations/glabels_en_GB.ts b/translations/glabels_en_GB.ts index f154e84..3ea26af 100644 --- a/translations/glabels_en_GB.ts +++ b/translations/glabels_en_GB.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Orange Butter @@ -132,7 +132,7 @@ Black - + Black Very Dark Gray @@ -164,29 +164,25 @@ White - + White Db Other - - - - Roll - + Other Factory None - + None Text: Comma Separated Values (CSV) - + Text: Comma Separated Values (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Text: Tab Separated Values (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diameter FrameRound diameter - + diameter @@ -257,7 +246,7 @@ Source - + Source Location @@ -265,11 +254,11 @@ Format: - + Format: Location: - + Location: Records @@ -277,11 +266,11 @@ Select all - + Select all Unselect all - + Unselect all @@ -292,11 +281,11 @@ Object properties - + Object properties Text - + Text Layout @@ -304,7 +293,7 @@ Alignment: - + Alignment: Line spacing: @@ -324,7 +313,7 @@ None - + None Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Family: Size: - + Size: Style: - + Style: Color: - + Colour: Editor @@ -356,11 +345,11 @@ Barcode - + Barcode Style - + Style Type: @@ -372,15 +361,15 @@ Checksum - + Checksum Barcode data - + Barcode data Image - + Image File @@ -404,15 +393,15 @@ Line - + Line Width: - + Width: Fill - + Fill Position/Size @@ -420,27 +409,27 @@ Position - + Position X: - + X: Y: - + Y: Size - + Size Length: - + Length: Angle: - + Angle: Original size: @@ -456,11 +445,11 @@ Height: - + Height: Shadow - + Shadow X offset: @@ -472,7 +461,7 @@ Opacity: - + Opacity: @@ -483,19 +472,19 @@ Locale - + Locale Select locale specific behavior. - + Select locale specific behaviour. Units - + Units Points - + Points Centimeters @@ -503,11 +492,11 @@ Millimeters - + Millimetres Inches - + Inches Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Copies + + + Copies: + Copies: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + print crop marks print in reverse (i.e. a mirror image) - + print in reverse (i.e. a mirror image) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Vendor: TextLabel @@ -589,23 +578,23 @@ Part #: - + Part #: Description: - + Description: Page size: - + Page size: Label size: - + Label size: Layout: - + Layout: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Search all Search @@ -672,7 +653,7 @@ Other - + Other Filter by category @@ -692,7 +673,7 @@ Recent - + Recent Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Outer radius: 4. Clipping height: - + 4. Clipping height: 2. Inner radius: - + 2. Inner radius: 3. Clipping width: - + 3. Clipping width: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Height: 1. Width: - + 1. Width: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Brand: Part #: - + Part #: Description: - + Description: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Number across (nx): Number down (ny): - + Number down (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Distance from left edge (x0): Horizontal pitch (dx): - + Horizontal pitch (dx): Vertical pitch (dy): - + Vertical pitch (dy): Print test sheet + Print test sheet + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Page size: Width: - + Width: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Height: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Height: + + + 1. Width: + 1. Width: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Margin 1. Radius: - + 1. Radius: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Rectangular or square (can have rounded corners) Round - + Round Elliptical - + Elliptical CD/DVD (including credit card CDs) - + CD/DVD (including credit card CDs) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Distance from left edge (x0): Number down (ny): - - - - Distance from top edge (y0): - + Number down (ny): Number across (nx): - + Number across (nx): Horizontal pitch (dx): - + Horizontal pitch (dx): Vertical pitch (dy): - + Vertical pitch (dy): Print test sheet + Print test sheet + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + points inches - + inches mm - + mm cm - + cm picas - + picas @@ -1138,7 +1085,7 @@ Custom Color - + Custom Colour Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Move Delete - + Delete glabels::MainWindow Welcome - + Welcome Edit @@ -1303,19 +1250,19 @@ Undo - + Undo Redo - + Redo Cut - + Cut Cut the selection - + Cut the selection &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Copy the selection &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Paste the clipboard &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Delete the selected objects Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Select all objects Un-select All - + Un-select All Remove all selections - + Remove all selections Preferences - + Preferences Configure the application - + Configure the application File @@ -1383,7 +1330,7 @@ Grid - + Grid Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Markup Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Increase magnification Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Decrease magnification Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Restore scale to 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Set scale to fit window Select Mode - + Select Mode Select, move and modify objects - + Select, move and modify objects Text - + Text Create text object - + Create text object Box - + Box Create box object - + Create box object Line - + Line Create line object - + Create line object Ellipse - + Ellipse Create ellipse/circle object - + Create ellipse/circle object Image - + Image Create image object - + Create image object Barcode - + Barcode Create barcode object - + Create barcode object Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Align objects to left edges Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Align objects to horizontal centres Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Align objects to right edges Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Align objects to top edges Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Align objects to vertical centres Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Align objects to bottom edges Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (modified) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Your changes will be lost if you don't save them. Save project? @@ -1675,11 +1622,11 @@ Paste - + Paste Delete - + Delete Create Text @@ -1733,7 +1680,7 @@ Default - + Default Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Box object properties line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Ellipse object properties Image object properties - + Image object properties image @@ -1777,11 +1724,11 @@ Line object properties - + Line object properties Text object properties - + Text object properties text @@ -1789,7 +1736,7 @@ Barcode object properties - + Barcode object properties barcode @@ -1797,15 +1744,15 @@ Object properties - + Object properties Line - + Line Fill - + Fill Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Set image Move - + Move Size - + Size Text - + Text Shadow - + Shadow @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Up @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Copy @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Welcome Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Number of Layouts Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Name and Description Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Page Size Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Other @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 Extended UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (any) POSTNET-5 (ZIP only) - + POSTNET-5 (ZIP only) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (any) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A or UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Interleaved 2 of 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Australia Post Reply Paid + + + Australia Post Route Code + Australia Post Route Code + + + Australia Post Redirect + Australia Post Redirect + + + Aztec Code + Aztec Code + + + Aztec Rune + Aztec Rune + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + Code 2 of 5 Matrix + + + Code 2 of 5 IATA + Code 2 of 5 IATA + + + Code 2 of 5 Data Logic + Code 2 of 5 Data Logic + + + Code 32 (Italian Pharmacode) + Code 32 (Italian Pharmacode) + + + Code 49 + Code 49 + + + DAFT Code + DAFT Code + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + Dutch Post KIX Code + + + EAN + EAN + + + Grid Matrix + Grid Matrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Stacked + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Stacked Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar Extended Stacked + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + HIBC Data Matrix + + + HIBC QR Code + HIBC QR Code + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + Japanese Postal + + + Korean Postal + Korean Postal + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 Truncated + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR Code + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen Numeric + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Untitled @@ -2480,14 +2397,14 @@ Invalid barcode data - + Invalid barcode data glabels::model::ModelTextObject Text - + Text diff --git a/translations/glabels_eo.ts b/translations/glabels_eo.ts index d9237ad..3c16614 100644 --- a/translations/glabels_eo.ts +++ b/translations/glabels_eo.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Oranĝkoloro Butter @@ -132,7 +132,7 @@ Black - + Nigro Very Dark Gray @@ -164,29 +164,26 @@ White - + Blanko Db Other - - - - Roll - + Aliaĵoj Factory None - + Nenio Text: Comma Separated Values (CSV) - + + Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +191,8 @@ Text: Tab Separated Values (TSV) - + + Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +230,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diametro FrameRound diameter - + diametro @@ -257,7 +248,7 @@ Source - + Fonto Location @@ -265,11 +256,11 @@ Format: - + Formato: Location: - + Lokiĝo: Records @@ -277,11 +268,11 @@ Select all - + Elekti ĉiujn Unselect all - + Malelekti ĉiujn @@ -292,11 +283,11 @@ Object properties - + Ecoj de objekto Text - + Teksto Layout @@ -304,7 +295,7 @@ Alignment: - + Alliniĝo: Line spacing: @@ -324,7 +315,7 @@ None - + Nenio Allow printing to shrink text to fit object @@ -336,19 +327,19 @@ Family: - + Familio: Size: - + Grando: Style: - + Stilo: Color: - + Koloro: Editor @@ -356,11 +347,11 @@ Barcode - + Strekkodo Style - + Stilo Type: @@ -372,15 +363,16 @@ Checksum - + Kontrolsumo Barcode data - + + Image - + Bildo File @@ -404,15 +396,15 @@ Line - + Linio Width: - + Larĝo: Fill - + Plenigo Position/Size @@ -420,27 +412,27 @@ Position - + Lokiĝo X: - + X: Y: - + Y: Size - + Grando Length: - + Longo: Angle: - + Angulo: Original size: @@ -456,11 +448,11 @@ Height: - + Alto: Shadow - + Ombro X offset: @@ -472,7 +464,7 @@ Opacity: - + Opakeco: @@ -483,19 +475,19 @@ Locale - + Nacia Select locale specific behavior. - + Elekti nacian specifan agmanieron. Units - + Unuoj Points - + Punktoj Centimeters @@ -503,11 +495,11 @@ Millimeters - + Milimetroj Inches - + Coloj Picas @@ -521,13 +513,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Ekzempleroj + + + Copies: + Ekzempleroj: + Start on position: @@ -546,28 +550,16 @@ print crop marks - + presi liniojn de tranĉo print in reverse (i.e. a mirror image) - + presi inverse (ekz. iun spegulitan bildon) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +573,7 @@ Vendor: - + Vendisto: TextLabel @@ -589,23 +581,23 @@ Part #: - + Parto #: Description: - + Priskribo: Page size: - + Grando de paĝo: Label size: - + Grando de etikedo: Layout: - + Aspekto: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +607,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +636,7 @@ Search all - + Serĉi ĉiujn Search @@ -672,7 +656,7 @@ Other - + Aliaĵoj Filter by category @@ -692,7 +676,7 @@ Recent - + Lasttempaj Select from recently used products. @@ -757,36 +741,27 @@ 1. Outer radius: - + 1. Ekstera radiuso: 4. Clipping height: - + + 2. Inner radius: - + 2. Interna radiuso: 3. Clipping width: - + + 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +770,11 @@ 2. Height: - + 2. Alto: 1. Width: - + 1. Larĝo: 3. Waste: @@ -880,15 +855,16 @@ Brand: - + + Part #: - + Parto #: Description: - + Priskribo: (e.g. 8163A) @@ -907,30 +883,30 @@ Number across (nx): - + Numero transverse (nx): Number down (ny): - + Numero sube (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Distanco el maldekstra rando (x0): Horizontal pitch (dx): - + Horizontala kvanto (dx): Vertical pitch (dy): - + Vertikala kvanto (dy): Print test sheet + Presi paĝon de elprovo + + + Distance from top edge (y0): @@ -941,31 +917,16 @@ - Roll width: - - - - Height: - + Page size: + Grando de paĝo: Width: - + Larĝo: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Alto: @@ -974,6 +935,14 @@ Form + + 2. Height: + 2. Alto: + + + 1. Width: + 1. Larĝo: + 4. Horizontal waste: @@ -983,29 +952,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +968,11 @@ 3. Margin - + 3. Marĝeno 1. Radius: - + 1. Radiuso: 2. Waste: @@ -1034,19 +987,20 @@ Rectangular or square (can have rounded corners) - + Rektangula aŭ kvadra (ankaŭ kun rondaj anguloj) Round - + Ronda Elliptical - + + CD/DVD (including credit card CDs) - + KD/DVD @@ -1057,30 +1011,30 @@ Distance from left edge (x0): - + Distanco el maldekstra rando (x0): Number down (ny): - - - - Distance from top edge (y0): - + Numero sube (ny): Number across (nx): - + Numero transverse (nx): Horizontal pitch (dx): - + Horizontala kvanto (dx): Vertical pitch (dy): - + Vertikala kvanto (dy): Print test sheet + Presi paĝon de elprovo + + + Distance from top edge (y0): @@ -1088,23 +1042,24 @@ Units points - + punktoj inches - + coloj mm - + mm cm - + cm picas - + + @@ -1138,7 +1093,7 @@ Custom Color - + Propra Koloro Custom color #%1 @@ -1184,18 +1139,18 @@ glabels::LabelEditor Move - + Movi Delete - + Forigi glabels::MainWindow Welcome - + Bonvenon Edit @@ -1303,19 +1258,19 @@ Undo - + Malfari Redo - + Refari Cut - + Eltondi Cut the selection - + Eltondi la elektaĵon &Copy @@ -1323,7 +1278,7 @@ Copy the selection - + Kopii la elektaĵon &Paste @@ -1331,7 +1286,7 @@ Paste the clipboard - + Enmeti la tondujon &Delete @@ -1339,7 +1294,7 @@ Delete the selected objects - + Forigi elektitajn objektojn Select &All @@ -1347,23 +1302,23 @@ Select all objects - + Elekti ĉiujn objektojn Un-select All - + Malelekti ĉion Remove all selections - + Forigi ĉiujn elektaĵojn Preferences - + Agordoj Configure the application - + Agordi la programon File @@ -1383,7 +1338,7 @@ Grid - + Krado Change visibility of the grid in current window @@ -1391,7 +1346,7 @@ Markup - + Markaĵoj Change visibility of markup lines in current window @@ -1403,7 +1358,7 @@ Increase magnification - + Pliigi zomon Zoom &Out @@ -1411,7 +1366,7 @@ Decrease magnification - + Malpliigi zomon Zoom &1 to 1 @@ -1419,7 +1374,7 @@ Restore scale to 100% - + Reen 100% Zoom to &Fit @@ -1427,63 +1382,63 @@ Set scale to fit window - + Agordi skalon al la fenestro Select Mode - + Reĝimo de elektado Select, move and modify objects - + Elekti, movi kaj redakti objektojn Text - + Teksto Create text object - + Krei tekstan objekton Box - + Skatolo Create box object - + Krei * objekton Line - + Linio Create line object - + Krei linian objekton Ellipse - + Elipso Create ellipse/circle object - + Krei objekton de elipse/circlo Image - + Bildo Create image object - + Krei bildan objekton Barcode - + Strekkodo Create barcode object - + Kei strekkodan objekton Bring To Front @@ -1539,7 +1494,7 @@ Align objects to left edges - + Laŭlinnigi objektojn laŭ maldekstra rando Align Center @@ -1547,7 +1502,7 @@ Align objects to horizontal centers - + Laŭlinnigi objektojn laŭ horizontala centro Align Right @@ -1555,7 +1510,7 @@ Align objects to right edges - + Laŭlinnigi objektojn laŭ dekstra rando Align Top @@ -1563,7 +1518,7 @@ Align objects to top edges - + Laŭlinnigi objektojn laŭ maldekstra rando Align Middle @@ -1571,7 +1526,7 @@ Align objects to vertical centers - + Laŭliniigi objektojn laŭ verticala centro Align Bottom @@ -1579,7 +1534,8 @@ Align objects to bottom edges - + + Center Horizontally @@ -1659,7 +1615,7 @@ (modified) - + (modifita) Save changes to project "%1" before closing? @@ -1667,7 +1623,7 @@ Your changes will be lost if you don't save them. - + La modifoj estos perditaj se oni ne konservas ilin. Save project? @@ -1675,11 +1631,11 @@ Paste - + Enmeti Delete - + Forigi Create Text @@ -1733,7 +1689,7 @@ Default - + Defaŭlto Insert Field @@ -1749,7 +1705,7 @@ Box object properties - + Ecoj de fako line/fill @@ -1765,11 +1721,11 @@ Ellipse object properties - + Ecoj de elipso Image object properties - + Ecoj de bildo image @@ -1777,11 +1733,11 @@ Line object properties - + Ecoj de linio Text object properties - + Ecoj de teksto text @@ -1789,7 +1745,7 @@ Barcode object properties - + Ecoj de strekkodo barcode @@ -1797,15 +1753,15 @@ Object properties - + Ecoj de objekto Line - + Linio Fill - + Plenigo Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1817,24 @@ Set image - + + Move - + Movi Size - + Grando Text - + Teksto Shadow - + Ombro @@ -1910,7 +1867,7 @@ glabels::SimplePreview Up - + Supren @@ -1919,13 +1876,9 @@ Product Template Designer - - Roll - - Copy - + Kopii @@ -1958,17 +1911,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1926,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Bonvenon Welcome to the gLabels Product Template Designer. @@ -1995,7 +1937,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Nombro da Aspektoj Please select the number of layouts required. @@ -2006,7 +1948,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nomo kaj Priskribo Please enter the following identifying information about the product. @@ -2032,7 +1974,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Grando de paĝo Please select the product page size. @@ -2040,22 +1982,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Aliaĵoj @@ -2106,39 +2033,39 @@ glabels::barcode::Backends Code 39 - + Kodo 39 Code 39 Extended - + Kodo 39 etendita UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (iu ajn) POSTNET-5 (ZIP only) - + POSTNET-5 (nur ZIP/CAP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP/CAP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2073,16 @@ IEC16022 (DataMatrix) - + + EAN (any) - + EAN (iu ajn) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2102,336 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A aŭ UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Kodo 128 Code 128C - + Kodo 128C Code 128B - + Kodo 128B Interleaved 2 of 5 - + Interleaved 2 of 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Kodo 39 IEC18004 (QRCode) - + + + + + Australia Post Reply Paid + + + + + Australia Post Route Code + + + + + Australia Post Redirect + + + + + Aztec Code + + + + + Aztec Rune + + + + + Code One + Kodo Unu + + + Code 11 + Kodo 11 + + + Code 16K + Kodo 16K + + + Code 2 of 5 Matrix + + + + + Code 2 of 5 IATA + + + + + Code 2 of 5 Data Logic + + + + + Code 32 (Italian Pharmacode) + + + + + Code 49 + Kodo 49 + + + DAFT Code + + + + + Data Matrix + + + + + Deutsche Post Leitcode + + + + + Deutsche Post Identcode + + + + + Dutch Post KIX Code + + + + + EAN + EAN + + + Grid Matrix + + + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Stacked + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Stacked Omni. + + + GS1 DataBar Extended Stacked + + + + + HIBC Code 128 + + + + + HIBC Code 39 + + + + + HIBC Data Matrix + + + + + HIBC QR Code + + + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + + + + + ITF-14 + ITF-14 + + + Japanese Postal + + + + + Korean Postal + + + + + LOGMARS + LOGMARS + + + Maxicode + + + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + + + + + MSI Plessey + + + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + + + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + + + + + QR Code + + + + + Royal Mail 4-State + + + + + Telepen + Telepen + + + Telepen Numeric + + + + + USPS One Code + + + + + UK Plessey + + Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Sen nomo @@ -2480,14 +2442,14 @@ Invalid barcode data - + Nevalida strekkodo glabels::model::ModelTextObject Text - + Teksto diff --git a/translations/glabels_es.ts b/translations/glabels_es.ts index 469abd5..9150f0d 100644 --- a/translations/glabels_es.ts +++ b/translations/glabels_es.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Naranja Butter @@ -132,7 +132,7 @@ Black - + Negro Very Dark Gray @@ -164,29 +164,25 @@ White - + Blanco Db Other - - - - Roll - + Otros Factory None - + Ninguno Text: Comma Separated Values (CSV) - + Texto: valores separados por comas (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Texto: valores separados por tabuladores (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diámetro FrameRound diameter - + diámetro @@ -257,7 +246,7 @@ Source - + Origen Location @@ -265,11 +254,11 @@ Format: - + Formato: Location: - + Ubicación: Records @@ -277,11 +266,11 @@ Select all - + Seleccionar todo Unselect all - + Deseleccionar todo @@ -292,11 +281,11 @@ Object properties - + Propiedades del objeto Text - + Texto Layout @@ -304,7 +293,7 @@ Alignment: - + Alineación: Line spacing: @@ -324,7 +313,7 @@ None - + Ninguno Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Familia: Size: - + Tamaño: Style: - + Estilo: Color: - + Color: Editor @@ -356,11 +345,11 @@ Barcode - + Código de barras Style - + Estilo Type: @@ -372,15 +361,15 @@ Checksum - + Verificación Barcode data - + Datos del código de barras Image - + Imagen File @@ -404,15 +393,15 @@ Line - + Línea Width: - + Ancho: Fill - + Relleno Position/Size @@ -420,27 +409,27 @@ Position - + Posición X: - + X: Y: - + Y: Size - + Tamaño Length: - + Longitud: Angle: - + Ángulo: Original size: @@ -456,11 +445,11 @@ Height: - + Alto: Shadow - + Sombra X offset: @@ -472,7 +461,7 @@ Opacity: - + Opacidad: @@ -483,19 +472,19 @@ Locale - + Documento Select locale specific behavior. - + Seleccione las propiedades del documento. Units - + Unidades Points - + Puntos Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milímetros Inches - + Pulgadas Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Copias + + + Copies: + Copias: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + imprimir marcas de corte print in reverse (i.e. a mirror image) - + impresión invertida (imagen espejo) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Fabricante: TextLabel @@ -589,23 +578,23 @@ Part #: - + Número de parte: Description: - + Descripción: Page size: - + Tamaño de la página: Label size: - + Tamaño de la etiqueta: Layout: - + Disposición: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Buscar todo Search @@ -672,7 +653,7 @@ Other - + Otros Filter by category @@ -692,7 +673,7 @@ Recent - + Reciente Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Radio externo: 4. Clipping height: - + 4. Alto de recorte: 2. Inner radius: - + 2. Radio interno: 3. Clipping width: - + 3. Ancho de recorte: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Alto: 1. Width: - + 1. Ancho: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Marca: Part #: - + Número de parte: Description: - + Descripción: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Cantidad horizontal (nx): Number down (ny): - + Cantidad vertical (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Distancia desde el borde izquierdo (x0): Horizontal pitch (dx): - + Desplazamiento horizontal (dx): Vertical pitch (dy): - + Desplazamiento vertical (dy): Print test sheet + Imprimir página de prueba + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Tamaño de la página: Width: - + Ancho: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Alto: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Alto: + + + 1. Width: + 1. Ancho: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Margen 1. Radius: - + 1. Radio: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Rectangular o cuadrada (puede tener bordes redondeados) Round - + Redonda Elliptical - + Elíptica CD/DVD (including credit card CDs) - + CD/DVD (incluyendo CD-tarjeta) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Distancia desde el borde izquierdo (x0): Number down (ny): - - - - Distance from top edge (y0): - + Cantidad vertical (ny): Number across (nx): - + Cantidad horizontal (nx): Horizontal pitch (dx): - + Desplazamiento horizontal (dx): Vertical pitch (dy): - + Desplazamiento vertical (dy): Print test sheet + Imprimir página de prueba + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + puntos inches - + pulgadas mm - + mm cm - + cm picas - + picas @@ -1138,7 +1085,7 @@ Custom Color - + Color personalizado Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Mover Delete - + Borrar glabels::MainWindow Welcome - + Bienvenido Edit @@ -1303,19 +1250,19 @@ Undo - + Deshacer Redo - + Rehacer Cut - + Cortar Cut the selection - + Cortar la selección &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Copiar la selección &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Pegar desde portapapeles &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Borrar los objetos seleccionados Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Seleccionar todos los objetos Un-select All - + Deseleccionar todo Remove all selections - + Eliminar todas las selecciones Preferences - + Preferencias Configure the application - + Configurar aplicación File @@ -1383,7 +1330,7 @@ Grid - + Rejilla Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Margen Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Aumentar escala Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Reducir escala Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Restablecer escala al 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Establecer la escala para ajustar a la ventana Select Mode - + Modo de selección Select, move and modify objects - + Seleccionar, mover y modificar objetos Text - + Texto Create text object - + Crear un cuadro de texto Box - + Caja Create box object - + Crear un objeto de caja Line - + Línea Create line object - + Crear una línea Ellipse - + Elipse Create ellipse/circle object - + Crear un círculo o elipse Image - + Imagen Create image object - + Crear una imagen Barcode - + Código de barras Create barcode object - + Crear un objeto código de barras Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Alinear objetos por su lado izquierdo Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Alinear objetos por su centro horizontal Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Alinear objetos por su lado derecho Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Alinear objetos por su parte superior Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Alinear objetos por su centro vertical Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Alinear objetos por su parte inferior Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (modificado) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Sus cambios se perderán si no los guarda. Save project? @@ -1675,11 +1622,11 @@ Paste - + Pegar Delete - + Borrar Create Text @@ -1733,7 +1680,7 @@ Default - + Predeterminado Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Propiedades del rectángulo line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Propiedades del elipse Image object properties - + Propiedades de la imagen image @@ -1777,11 +1724,11 @@ Line object properties - + Propiedades de la línea Text object properties - + Propiedades del texto text @@ -1789,7 +1736,7 @@ Barcode object properties - + Propiedades del código de barras barcode @@ -1797,15 +1744,15 @@ Object properties - + Propiedades del objeto Line - + Línea Fill - + Relleno Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Establecer imagen Move - + Mover Size - + Tamaño Text - + Texto Shadow - + Sombra @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Arriba @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Copiar @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Bienvenido Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Cantidad de disposiciones Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nombre y descripción: Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Tamaño de la página Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Otros @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 extendido UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (cualquiera) POSTNET-5 (ZIP only) - + POSTNET-5 (solo código postal) POSTNET-9 (ZIP+4) - + POSTNET-9 (código postal+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (matriz de datos) EAN (any) - + EAN (cualquiera) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A o UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Intercalado 2 de 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (Código QR) + + + Australia Post Reply Paid + Australia Post Reply Paid + + + Australia Post Route Code + Australia Post Route Code + + + Australia Post Redirect + Australia Post Redirect + + + Aztec Code + Código Azteca + + + Aztec Rune + Runa Azteca + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + Code 2 de 5 Matrix + + + Code 2 of 5 IATA + Code 2 de 5 IATA + + + Code 2 of 5 Data Logic + Code 2 de 5 Data Logic + + + Code 32 (Italian Pharmacode) + Code 32 (Pharmacode italiano) + + + Code 49 + Code 49 + + + DAFT Code + DAFT Code + + + Data Matrix + Matriz de datos + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + Post KIX Code de los Países Bajos + + + EAN + EAN + + + Grid Matrix + Matriz de rejilla + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Stacked + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Stacked Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar Extended Stacked + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + Matriz de datos HIBC + + + HIBC QR Code + HIBC QR Code + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC código Azteca + + + ITF-14 + ITF-14 + + + Japanese Postal + Postal japonés + + + Korean Postal + Postal coreano + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 truncatedo + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR Code + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen numérico + + + USPS One Code + USPS One Code + + + UK Plessey + Plessey del Reino Unido Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Sin título @@ -2480,14 +2397,14 @@ Invalid barcode data - + Datos de código de barras no válidos glabels::model::ModelTextObject Text - + Texto diff --git a/translations/glabels_fi.ts b/translations/glabels_fi.ts index 30b3c11..3d058de 100644 --- a/translations/glabels_fi.ts +++ b/translations/glabels_fi.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Oranssi Butter @@ -132,7 +132,7 @@ Black - + Musta Very Dark Gray @@ -164,29 +164,25 @@ White - + Valkoinen Db Other - - - - Roll - + Muu Factory None - + Ei mitään Text: Comma Separated Values (CSV) - + Teksti: pilkuin erotellut arvot (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Teksti: sarkaimella erotellut arvot (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,16 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + + FrameRound diameter - + + @@ -257,7 +248,7 @@ Source - + Lähde Location @@ -265,11 +256,11 @@ Format: - + Muoto: Location: - + Sijainti: Records @@ -277,11 +268,11 @@ Select all - + Valitse kaikki Unselect all - + Poista kaikki valinnat @@ -292,11 +283,11 @@ Object properties - + Objektin ominaisuudet Text - + Teksti Layout @@ -304,7 +295,7 @@ Alignment: - + Tasaus: Line spacing: @@ -324,7 +315,7 @@ None - + Ei mitään Allow printing to shrink text to fit object @@ -336,19 +327,19 @@ Family: - + Perhe: Size: - + Koko: Style: - + Tyyli: Color: - + Väri: Editor @@ -356,11 +347,11 @@ Barcode - + Viivakoodi Style - + Tyyli Type: @@ -372,15 +363,15 @@ Checksum - + Tarkistussumma Barcode data - + Viivakoodin tiedot Image - + Kuva File @@ -404,15 +395,15 @@ Line - + Viiva Width: - + Leveys: Fill - + Täyttö Position/Size @@ -420,27 +411,28 @@ Position - + Sijainti X: - + X: Y: - + Y: Size - + Koko Length: - + + Angle: - + Kulma: Original size: @@ -456,11 +448,11 @@ Height: - + Korkeus: Shadow - + Varjo X offset: @@ -472,7 +464,7 @@ Opacity: - + Läpinäkyvyys: @@ -483,19 +475,19 @@ Locale - + Yksiköt Select locale specific behavior. - + Valitse yksikkökohtaiset asetukset. Units - + Yksiköt Points - + Pisteet Centimeters @@ -503,11 +495,11 @@ Millimeters - + Millimetrit Inches - + Tuumat Picas @@ -521,13 +513,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Kopiot + + + Copies: + Kopioita: + Start on position: @@ -546,28 +550,18 @@ print crop marks - + + print in reverse (i.e. a mirror image) - + + Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +575,7 @@ Vendor: - + Toimittaja: TextLabel @@ -589,23 +583,23 @@ Part #: - + Osa #: Description: - + Kuvaus: Page size: - + Sivun koko: Label size: - + Etiketin koko: Layout: - + Asettelu: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +609,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +638,7 @@ Search all - + Etsi kaikista Search @@ -672,7 +658,7 @@ Other - + Muu Filter by category @@ -692,7 +678,7 @@ Recent - + Viimeisimmät Select from recently used products. @@ -757,36 +743,29 @@ 1. Outer radius: - + + 4. Clipping height: - + + 2. Inner radius: - + + 3. Clipping width: - + + 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +774,11 @@ 2. Height: - + 2. Korkeus: 1. Width: - + 1. Leveys: 3. Waste: @@ -880,15 +859,15 @@ Brand: - + Malli: Part #: - + Osa #: Description: - + Kuvaus: (e.g. 8163A) @@ -907,30 +886,30 @@ Number across (nx): - + Lukumäärä poikittain (nx): Number down (ny): - + Lukumäärä alleikkain (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Etäisyys vasemmasta reunasta (x0): Horizontal pitch (dx): - + Vaakajako (dx): Vertical pitch (dy): - + Pystyjako (dy): Print test sheet + Tulosta testisivu + + + Distance from top edge (y0): @@ -941,31 +920,16 @@ - Roll width: - - - - Height: - + Page size: + Sivun koko: Width: - + Leveys: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Korkeus: @@ -974,6 +938,14 @@ Form + + 2. Height: + 2. Korkeus: + + + 1. Width: + 1. Leveys: + 4. Horizontal waste: @@ -983,29 +955,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +971,11 @@ 3. Margin - + 3. Reunus 1. Radius: - + 1. Säde: 2. Waste: @@ -1034,19 +990,20 @@ Rectangular or square (can have rounded corners) - + Suorakulmio tai neliö (voi olla pyöristetyt reunat) Round - + Pyöreä Elliptical - + Soikea CD/DVD (including credit card CDs) - + + @@ -1057,30 +1014,30 @@ Distance from left edge (x0): - + Etäisyys vasemmasta reunasta (x0): Number down (ny): - - - - Distance from top edge (y0): - + Lukumäärä alleikkain (ny): Number across (nx): - + Lukumäärä poikittain (nx): Horizontal pitch (dx): - + Vaakajako (dx): Vertical pitch (dy): - + Pystyjako (dy): Print test sheet + Tulosta testisivu + + + Distance from top edge (y0): @@ -1088,23 +1045,24 @@ Units points - + pistettä inches - + tuumaa mm - + mm cm - + cm picas - + + @@ -1138,7 +1096,7 @@ Custom Color - + Mukautettu väri Custom color #%1 @@ -1184,18 +1142,18 @@ glabels::LabelEditor Move - + Siirrä Delete - + Poista glabels::MainWindow Welcome - + Tervetuloa Edit @@ -1303,19 +1261,19 @@ Undo - + Kumoa Redo - + Tee uudelleen Cut - + Leikkaa Cut the selection - + Leikkaa valinta &Copy @@ -1323,7 +1281,7 @@ Copy the selection - + Kopioi valinta &Paste @@ -1331,7 +1289,7 @@ Paste the clipboard - + Liitä leikepöydältä &Delete @@ -1339,7 +1297,7 @@ Delete the selected objects - + Poista valitut objektit Select &All @@ -1347,23 +1305,23 @@ Select all objects - + Valitse kaikki objektit Un-select All - + Poista kaikki valinnat Remove all selections - + Poista kaikki valinnat Preferences - + Asetukset Configure the application - + Muokkaa sovelluksen asetuksia File @@ -1383,7 +1341,7 @@ Grid - + Ruudukko Change visibility of the grid in current window @@ -1391,7 +1349,7 @@ Markup - + Marginaali Change visibility of markup lines in current window @@ -1403,7 +1361,7 @@ Increase magnification - + Lähennä Zoom &Out @@ -1411,7 +1369,7 @@ Decrease magnification - + Loitonna Zoom &1 to 1 @@ -1419,7 +1377,7 @@ Restore scale to 100% - + Palauta alkuperäiseen kokoon Zoom to &Fit @@ -1427,63 +1385,63 @@ Set scale to fit window - + Sovita ikkunan kokoon Select Mode - + Valintatila Select, move and modify objects - + Valitse, siirrä ja muokkaa objekteja Text - + Teksti Create text object - + Luo tekstiobjekti Box - + Laatikko Create box object - + Luo laatikko-objekti Line - + Viiva Create line object - + Luo viivaobjekti Ellipse - + Ellipsi Create ellipse/circle object - + Luo ellipsin/ympyrän muotoinen objekti Image - + Kuva Create image object - + Luo kuvaobjekti Barcode - + Viivakoodi Create barcode object - + Luo viivakoodiobjekti Bring To Front @@ -1539,7 +1497,7 @@ Align objects to left edges - + Tasaa objektit vasempaan reunaan Align Center @@ -1547,7 +1505,8 @@ Align objects to horizontal centers - + + Align Right @@ -1555,7 +1514,8 @@ Align objects to right edges - + + Align Top @@ -1563,7 +1523,8 @@ Align objects to top edges - + + Align Middle @@ -1571,7 +1532,8 @@ Align objects to vertical centers - + + Align Bottom @@ -1579,7 +1541,8 @@ Align objects to bottom edges - + + Center Horizontally @@ -1659,7 +1622,7 @@ (modified) - + (muokattu) Save changes to project "%1" before closing? @@ -1667,7 +1630,7 @@ Your changes will be lost if you don't save them. - + Muutokset katoavat, jos niitä ei tallenneta. Save project? @@ -1675,11 +1638,11 @@ Paste - + Liitä Delete - + Poista Create Text @@ -1733,7 +1696,7 @@ Default - + Oletus Insert Field @@ -1749,7 +1712,7 @@ Box object properties - + Laatikko-objektin ominaisuudet line/fill @@ -1765,11 +1728,11 @@ Ellipse object properties - + Ellipsiobjektin ominaisuudet Image object properties - + Kuvaobjektin ominaisuudet image @@ -1777,11 +1740,11 @@ Line object properties - + Viivaobjektin ominaisuudet Text object properties - + Tekstiobjektin ominaisuudet text @@ -1789,7 +1752,7 @@ Barcode object properties - + Viivakoodiobjektin ominaisuudet barcode @@ -1797,15 +1760,15 @@ Object properties - + Objektin ominaisuudet Line - + Viiva Fill - + Täyttö Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1824,23 @@ Set image - + Aseta kuva Move - + Siirrä Size - + Koko Text - + Teksti Shadow - + Varjo @@ -1910,7 +1873,8 @@ glabels::SimplePreview Up - + + @@ -1919,13 +1883,9 @@ Product Template Designer - - Roll - - Copy - + Kopioi @@ -1958,17 +1918,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1933,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Tervetuloa Welcome to the gLabels Product Template Designer. @@ -1995,7 +1944,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Asetteluiden määrä Please select the number of layouts required. @@ -2006,7 +1955,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nimi ja kuvaus Please enter the following identifying information about the product. @@ -2032,7 +1981,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Sivun koko Please select the product page size. @@ -2040,22 +1989,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Muu @@ -2106,39 +2040,41 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + + UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (mikä tahansa) POSTNET-5 (ZIP only) - + + POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2082,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (mikä tahansa) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2110,337 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A tai UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + + Codabar - + + MSI - + MSI Plessey - + Plessey Code 93 - + + IEC18004 (QRCode) - + + + + + Australia Post Reply Paid + Australia Post Reply Paid + + + Australia Post Route Code + Australia Post Route Code + + + Australia Post Redirect + Australia Post Redirect + + + Aztec Code + + + + + Aztec Rune + + + + + Code One + + + + + Code 11 + + + + + Code 16K + + + + + Code 2 of 5 Matrix + + + + + Code 2 of 5 IATA + + + + + Code 2 of 5 Data Logic + + + + + Code 32 (Italian Pharmacode) + + + + + Code 49 + + + + + DAFT Code + + + + + Data Matrix + + + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + + + + + EAN + EAN + + + Grid Matrix + + + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + + + + + GS1 DataBar-14 Stacked Omni. + + + + + GS1 DataBar Extended Stacked + + + + + HIBC Code 128 + + + + + HIBC Code 39 + + + + + HIBC Data Matrix + + + + + HIBC QR Code + + + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + + + + + ITF-14 + ITF-14 + + + Japanese Postal + + + + + Korean Postal + + + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + + + + + MSI Plessey + + + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + + + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + + + + + Pharmacode 2-track + + + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR-koodi + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + + + + + USPS One Code + + + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Nimetön @@ -2480,14 +2451,14 @@ Invalid barcode data - + Virheelliset viivakooditiedot glabels::model::ModelTextObject Text - + Teksti diff --git a/translations/glabels_fr.ts b/translations/glabels_fr.ts index 91ea4dc..f8ee698 100644 --- a/translations/glabels_fr.ts +++ b/translations/glabels_fr.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Orangé Butter @@ -132,7 +132,7 @@ Black - + Noir Very Dark Gray @@ -164,29 +164,25 @@ White - + Blanc Db Other - - - - Roll - + Autre Factory None - + Aucun Text: Comma Separated Values (CSV) - + Texte : valeurs séparées par des virgules (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Texte : valeurs séparées par des tabulations (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diamètre FrameRound diameter - + diamètre @@ -257,7 +246,7 @@ Source - + Source Location @@ -265,11 +254,11 @@ Format: - + Format : Location: - + Emplacement : Records @@ -277,11 +266,11 @@ Select all - + Tout sélectionner Unselect all - + Désélectionner tout @@ -292,11 +281,11 @@ Object properties - + Propriétés de l'objet Text - + Texte Layout @@ -304,7 +293,7 @@ Alignment: - + Alignement : Line spacing: @@ -324,7 +313,7 @@ None - + Aucun Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Famille : Size: - + Taille : Style: - + Style : Color: - + Couleur : Editor @@ -356,11 +345,11 @@ Barcode - + Code-barre Style - + Style Type: @@ -372,15 +361,15 @@ Checksum - + Somme de contrôle Barcode data - + Données de code-barre Image - + Image File @@ -404,15 +393,15 @@ Line - + Ligne Width: - + Largeur : Fill - + Remplissage Position/Size @@ -420,27 +409,27 @@ Position - + Position X: - + X : Y: - + Y : Size - + Taille Length: - + Longueur : Angle: - + Angle : Original size: @@ -456,11 +445,11 @@ Height: - + Hauteur : Shadow - + Ombre X offset: @@ -472,7 +461,7 @@ Opacity: - + Opacité : @@ -483,19 +472,19 @@ Locale - + Paramètres régionaux Select locale specific behavior. - + Sélectionnez les paramètres correspondants à votre région. Units - + Unités Points - + Points Centimeters @@ -503,11 +492,11 @@ Millimeters - + Millimètres Inches - + Pouces Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Copies + + + Copies: + Copies : + Start on position: @@ -546,28 +547,16 @@ print crop marks - + imprimer les guides de coupe print in reverse (i.e. a mirror image) - + imprimer à l'envers (i.e. une image miroir) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Fabricant : TextLabel @@ -589,23 +578,23 @@ Part #: - + N° Ref : Description: - + Description : Page size: - + Taille de page : Label size: - + Taille d'étiquette : Layout: - + Disposition : <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Recherche globale Search @@ -672,7 +653,7 @@ Other - + Autre Filter by category @@ -692,7 +673,7 @@ Recent - + Utilisation récente Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Rayon extérieur : 4. Clipping height: - + 4. Hauteur de découpe : 2. Inner radius: - + 2. Rayon intérieur : 3. Clipping width: - + 3. Largeur de découpe : 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Hauteur : 1. Width: - + 1. Largeur : 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Marque : Part #: - + N° Ref : Description: - + Description : (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Nombre sur la largeur (nx) : Number down (ny): - + Nombre sur la hauteur (ny) : Distance from left edge (x0): - - - - Distance from top edge (y0): - + Distance par rapport au bord gauche (x0) : Horizontal pitch (dx): - + Espacement horizontal (dx) : Vertical pitch (dy): - + Espacement vertical (dy) : Print test sheet + Imprimer une page test + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Taille de page : Width: - + Largeur : - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Hauteur : @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Hauteur : + + + 1. Width: + 1. Largeur : + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Marge 1. Radius: - + 1. Rayon : 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Rectangulaire ou carré (éventuellement à bords arrondis) Round - + Circulaire Elliptical - + Elliptique CD/DVD (including credit card CDs) - + CD/DVD (y compris CD au format carte de crédit) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Distance par rapport au bord gauche (x0) : Number down (ny): - - - - Distance from top edge (y0): - + Nombre sur la hauteur (ny) : Number across (nx): - + Nombre sur la largeur (nx) : Horizontal pitch (dx): - + Espacement horizontal (dx) : Vertical pitch (dy): - + Espacement vertical (dy) : Print test sheet + Imprimer une page test + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + points inches - + pouces mm - + mm cm - + cm picas - + picas @@ -1138,7 +1085,7 @@ Custom Color - + Couleur personnalisée Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Déplacer Delete - + Supprimer glabels::MainWindow Welcome - + Bienvenue Edit @@ -1303,19 +1250,19 @@ Undo - + Annuler Redo - + Rétablir Cut - + Couper Cut the selection - + Coupe la sélection &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Copie la sélection &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Colle le presse-papiers &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Supprime les objets sélectionnés Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Sélectionne tous les objets Un-select All - + Désélectionner tout Remove all selections - + Annule toutes les sélections Preferences - + Préférences Configure the application - + Configure le logiciel File @@ -1383,7 +1330,7 @@ Grid - + Grille Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Marges Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Augmente la taille Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Diminue la taille Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Remet l'échelle à 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Adapte l'échelle à la taille de la fenêtre Select Mode - + Mode sélection Select, move and modify objects - + Sélectionne, déplace et modifie les objets Text - + Texte Create text object - + Crée un objet texte Box - + Boîte Create box object - + Créer un objet boîte Line - + Ligne Create line object - + Crée un objet ligne Ellipse - + Ellipse Create ellipse/circle object - + Crée un objet ellipse/cercle Image - + Image Create image object - + Crée un objet image Barcode - + Code-barre Create barcode object - + Crée un objet code-barre Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Aligne les côtés gauches des objets Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Aligne horizontalement les centres des objets Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Aligne les côtés droits des objets Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Aligne les sommets des objets Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Aligne verticalement les centres des objets Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Aligne les bases des objets Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (modifié) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Vos changements seront perdus si vous ne les enregistrez pas. Save project? @@ -1675,11 +1622,11 @@ Paste - + Coller Delete - + Supprimer Create Text @@ -1733,7 +1680,7 @@ Default - + Par défaut Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Propriétés de l'objet boîte line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Propriétés de l'objet ellipse Image object properties - + Propriétés de l'objet image image @@ -1777,11 +1724,11 @@ Line object properties - + Propriétés de l'objet ligne Text object properties - + Propriétés de l'objet texte text @@ -1789,7 +1736,7 @@ Barcode object properties - + Propriétés de l'objet code-barre barcode @@ -1797,15 +1744,15 @@ Object properties - + Propriétés de l'objet Line - + Ligne Fill - + Remplissage Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Définir l'image Move - + Déplacer Size - + Taille Text - + Texte Shadow - + Ombre @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Haut @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Copier @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Bienvenue Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Nombre de dispositions Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nom et description Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Taille de page Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Autre @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 étendu UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (tous) POSTNET-5 (ZIP only) - + POSTNET-5 (seulement ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (tous) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A ou UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Entrelacé 2 de 5 Codabar - + Code-barre MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Poste australienne Reply Paid + + + Australia Post Route Code + Code australien Post Route + + + Australia Post Redirect + Poste australienne Redirect + + + Aztec Code + Code Aztec + + + Aztec Rune + Rune Aztec + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + Code 2 par 5 Matrix + + + Code 2 of 5 IATA + Code 2 par 5 IATA + + + Code 2 of 5 Data Logic + Code 2 par 5 Data Logic + + + Code 32 (Italian Pharmacode) + Code 32 (Pharmacode italien) + + + Code 49 + Code 49 + + + DAFT Code + Code DAFT + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Poste allemande Leitcode + + + Deutsche Post Identcode + Poste allemande Identcode + + + Dutch Post KIX Code + Code postal néerlandais KIX + + + EAN + EAN + + + Grid Matrix + Grid Matrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 empilé + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 empilé omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar empilé étendu + + + HIBC Code 128 + Code 128 HIBC + + + HIBC Code 39 + Code 39 HIBC + + + HIBC Data Matrix + Data Matrix HIBC + + + HIBC QR Code + Code HIBC QR + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + Code Aztec HIBC + + + ITF-14 + ITF-14 + + + Japanese Postal + Poste japonaise + + + Korean Postal + Poste coréenne + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 tronqué + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + Code QR + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen Numeric + + + USPS One Code + Code USPS One + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Sans titre @@ -2480,14 +2397,14 @@ Invalid barcode data - + Données de code-barre non valides glabels::model::ModelTextObject Text - + Texte diff --git a/translations/glabels_gl.ts b/translations/glabels_gl.ts index 766c826..9820143 100644 --- a/translations/glabels_gl.ts +++ b/translations/glabels_gl.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Laranxa Butter @@ -132,7 +132,7 @@ Black - + Negro Very Dark Gray @@ -164,29 +164,26 @@ White - + Branco Db Other - - - - Roll - + Outro Factory None - + Ningún Text: Comma Separated Values (CSV) - + + Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +191,8 @@ Text: Tab Separated Values (TSV) - + + Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +230,16 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + + FrameRound diameter - + + @@ -257,7 +250,7 @@ Source - + Fonte Location @@ -265,11 +258,11 @@ Format: - + Formato: Location: - + Localización: Records @@ -277,11 +270,11 @@ Select all - + Seleccionar todo Unselect all - + Deseleccionar todas @@ -292,11 +285,11 @@ Object properties - + Propiedades do obxecto Text - + Texto Layout @@ -304,7 +297,7 @@ Alignment: - + Aliñamento X Line spacing: @@ -324,7 +317,7 @@ None - + Ningún Allow printing to shrink text to fit object @@ -336,19 +329,19 @@ Family: - + Familia Size: - + Tamaño: Style: - + Estilo: Color: - + Cor: Editor @@ -356,11 +349,12 @@ Barcode - + + Style - + Estilo Type: @@ -372,15 +366,15 @@ Checksum - + Creando a suma de comprobación Barcode data - + Outros datos Image - + Imaxe File @@ -404,15 +398,15 @@ Line - + Liña Width: - + Largura: Fill - + Encher Position/Size @@ -420,27 +414,27 @@ Position - + Posición X: - + X: Y: - + Y: Size - + Tamaño Length: - + Lonxitude: Angle: - + Ángulo: Original size: @@ -456,11 +450,11 @@ Height: - + Altura: Shadow - + Sombra X offset: @@ -472,7 +466,7 @@ Opacity: - + Opacidade: @@ -483,19 +477,20 @@ Locale - + Configuración rexional Select locale specific behavior. - + + Units - + Unidades Points - + Puntos Centimeters @@ -503,11 +498,11 @@ Millimeters - + Milímetros Inches - + Polgadas Picas @@ -521,13 +516,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Copias + + + Copies: + Copias + Start on position: @@ -546,28 +553,17 @@ print crop marks - + Mostrar as marcas de liña print in reverse (i.e. a mirror image) - + + Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +577,7 @@ Vendor: - + Fabricante: TextLabel @@ -589,23 +585,23 @@ Part #: - + Parte da pantalla: Description: - + Descrición: Page size: - + Tamaño de páxina: Label size: - + Usar o tamaño na etiqueta Layout: - + Disposición: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +611,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +640,7 @@ Search all - + Buscar en todas as contas Search @@ -672,7 +660,7 @@ Other - + Outro Filter by category @@ -692,7 +680,7 @@ Recent - + Recentes Select from recently used products. @@ -757,36 +745,26 @@ 1. Outer radius: - + + 4. Clipping height: - + Altura da xanela 2. Inner radius: - + Bordo interior 3. Clipping width: - + Anchura da xanela 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +773,11 @@ 2. Height: - + Altura 1. Width: - + Largura 3. Waste: @@ -880,15 +858,15 @@ Brand: - + Marca da cámara Part #: - + Parte da pantalla: Description: - + Descrición: (e.g. 8163A) @@ -907,30 +885,32 @@ Number across (nx): - + Atopouse o número do punto de interrupción %s + Number down (ny): - + carta cara abaixo Distance from left edge (x0): - - - - Distance from top edge (y0): - + + Horizontal pitch (dx): - + Diminúe o ton da voz. Vertical pitch (dy): - + Diminúe o ton da voz. Print test sheet + I_mprimir páxina de proba + + + Distance from top edge (y0): @@ -941,31 +921,16 @@ - Roll width: - - - - Height: - + Page size: + Tamaño de páxina: Width: - + Largura: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Altura: @@ -974,6 +939,14 @@ Form + + 2. Height: + Altura + + + 1. Width: + Largura + 4. Horizontal waste: @@ -983,29 +956,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +972,12 @@ 3. Margin - + _Marxe: 1. Radius: - + + 2. Waste: @@ -1034,19 +992,22 @@ Rectangular or square (can have rounded corners) - + + Round - + Redondear Elliptical - + + CD/DVD (including credit card CDs) - + + @@ -1057,30 +1018,32 @@ Distance from left edge (x0): - + + Number down (ny): - - - - Distance from top edge (y0): - + carta cara abaixo Number across (nx): - + Atopouse o número do punto de interrupción %s + Horizontal pitch (dx): - + Diminúe o ton da voz. Vertical pitch (dy): - + Diminúe o ton da voz. Print test sheet + I_mprimir páxina de proba + + + Distance from top edge (y0): @@ -1088,23 +1051,24 @@ Units points - + puntos inches - + polgadas mm - + mm cm - + cm picas - + + @@ -1138,7 +1102,7 @@ Custom Color - + Cor personalizada Custom color #%1 @@ -1184,18 +1148,18 @@ glabels::LabelEditor Move - + Mover Delete - + Eliminar glabels::MainWindow Welcome - + Benvido/a Edit @@ -1303,19 +1267,19 @@ Undo - + Desfacer Redo - + Refacer Cut - + Cortar Cut the selection - + Cortar a selección &Copy @@ -1323,7 +1287,7 @@ Copy the selection - + Copiar a selección &Paste @@ -1331,7 +1295,7 @@ Paste the clipboard - + Pegar o contido do portapapeis &Delete @@ -1339,7 +1303,7 @@ Delete the selected objects - + Eliminando os obxectos seleccionados Select &All @@ -1347,23 +1311,23 @@ Select all objects - + Seleccionar todas as pistas Un-select All - + Seleccionar todas as pistas Remove all selections - + Retirar todos os puntos de interrupción Preferences - + Preferencias Configure the application - + Configurar o aplicativo File @@ -1383,7 +1347,7 @@ Grid - + Grade Change visibility of the grid in current window @@ -1391,7 +1355,7 @@ Markup - + Marcación Change visibility of markup lines in current window @@ -1403,7 +1367,7 @@ Increase magnification - + Filtro de ampliación Zoom &Out @@ -1411,7 +1375,7 @@ Decrease magnification - + Filtro de ampliación Zoom &1 to 1 @@ -1419,7 +1383,7 @@ Restore scale to 100% - + Produciuse un erro ao restaurar «%s» desde «%s»: %s Zoom to &Fit @@ -1427,63 +1391,65 @@ Set scale to fit window - + Estabelecer a xanela pai para facelo modal Select Mode - + Modo mini Select, move and modify objects - + + Text - + Texto Create text object - + Non é posíbel crear o obxecto Box - + Caixa Create box object - + Non é posíbel crear o obxecto Line - + Liña Create line object - + Non é posíbel crear o obxecto Ellipse - + Elipse Create ellipse/circle object - + Non é posíbel crear o obxecto do calendario: Image - + Imaxe Create image object - + Non é posíbel crear o obxecto Barcode - + + Create barcode object - + Non é posíbel crear o obxecto Bring To Front @@ -1539,7 +1505,8 @@ Align objects to left edges - + + Align Center @@ -1547,7 +1514,8 @@ Align objects to horizontal centers - + + Align Right @@ -1555,7 +1523,8 @@ Align objects to right edges - + + Align Top @@ -1563,7 +1532,8 @@ Align objects to top edges - + + Align Middle @@ -1571,7 +1541,8 @@ Align objects to vertical centers - + + Align Bottom @@ -1579,7 +1550,8 @@ Align objects to bottom edges - + + Center Horizontally @@ -1659,7 +1631,7 @@ (modified) - + Modificado Save changes to project "%1" before closing? @@ -1667,7 +1639,7 @@ Your changes will be lost if you don't save them. - + Os cambios perderanse se non os garda. Save project? @@ -1675,11 +1647,11 @@ Paste - + Pegar Delete - + Eliminar Create Text @@ -1733,7 +1705,7 @@ Default - + Predeterminado Insert Field @@ -1749,7 +1721,7 @@ Box object properties - + Propiedades xerais da clase line/fill @@ -1765,11 +1737,11 @@ Ellipse object properties - + Propiedades xerais da clase Image object properties - + Propiedades xerais da clase image @@ -1777,11 +1749,11 @@ Line object properties - + Propiedades xerais da clase Text object properties - + Propiedades xerais da clase text @@ -1789,7 +1761,7 @@ Barcode object properties - + Propiedades xerais da clase barcode @@ -1797,15 +1769,15 @@ Object properties - + Propiedades do obxecto Line - + Liña Fill - + Encher Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1833,23 @@ Set image - + Definir o tamaño da imaxe Move - + Mover Size - + Tamaño Text - + Texto Shadow - + Sombra @@ -1910,7 +1882,7 @@ glabels::SimplePreview Up - + Arriba @@ -1919,13 +1891,9 @@ Product Template Designer - - Roll - - Copy - + Copiar @@ -1958,17 +1926,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1941,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Benvido/a Welcome to the gLabels Product Template Designer. @@ -1995,7 +1952,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Disposición dos botóns Please select the number of layouts required. @@ -2006,7 +1963,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nome e descrición Please enter the following identifying information about the product. @@ -2032,7 +1989,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Tamaño de páxina Please select the product page size. @@ -2040,22 +1997,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Outro @@ -2106,39 +2048,41 @@ glabels::barcode::Backends Code 39 - + Fragmentos de código Code 39 Extended - + Uso estendido da chave UPC-A - + + EAN-13 - + EAN-13 POSTNET (any) - + Calquera campo POSTNET-5 (ZIP only) - + Só conexións cifradas POSTNET-9 (ZIP+4) - + Unidade Zip POSTNET-11 (DPBC) - + 802.11 WiFi (%s) CEPNET - + + USPS Intelligent Mail @@ -2146,15 +2090,17 @@ IEC16022 (DataMatrix) - + + EAN (any) - + Calquera campo EAN-8 - + + EAN-8+2 @@ -2174,302 +2120,337 @@ UPC (UPC-A or UPC-E) - + Or_ganizador: UPC-A +2 - + + UPC-A +5 - + + UPC-E - + + UPC-E +2 - + + UPC-E +5 - + + ISBN - + + ISBN +5 - + + Code 128 - + Fragmentos de código Code 128C - + Fragmentos de código Code 128B - + Fragmentos de código Interleaved 2 of 5 - + + Codabar - + + MSI - + + Plessey - + + Code 93 - + Fragmentos de código IEC18004 (QRCode) - + + + + + Australia Post Reply Paid + + + + + Australia Post Route Code + + + + + Australia Post Redirect + Redirixir a xanela automaticamente + + + Aztec Code + Fragmentos de código + + + Aztec Rune + + + + + Code One + Un pau + + + Code 11 + Sobre #11 + + + Code 16K + prc 16k + + + Code 2 of 5 Matrix + Matriz de transformación + + + Code 2 of 5 IATA + Fragmentos de código + + + Code 2 of 5 Data Logic + Engadir os datos de obtención + + + Code 32 (Italian Pharmacode) + + + + + Code 49 + Fragmentos de código + + + DAFT Code + Fragmentos de código + + + Data Matrix + Matriz de transformación + + + Deutsche Post Leitcode + _Publicar unha mensaxe na lista + + + Deutsche Post Identcode + _Publicar unha mensaxe na lista + + + Dutch Post KIX Code + + + + + EAN + + + + + Grid Matrix + Matriz de transformación + + + GS1-128 + Tamaño da miniaturizar (predeterminado: 128) + + + GS1 DataBar-14 + _Celta (ISO-8859-14) + + + GS1 DataBar-14 Stacked + + + + + GS1 DataBar-14 Stacked Omni. + + + + + GS1 DataBar Extended Stacked + + + + + HIBC Code 128 + Seleccionar bloque de _código + + + HIBC Code 39 + Seleccionar bloque de _código + + + HIBC Data Matrix + Matriz de transformación do fillo + + + HIBC QR Code + Seleccionar bloque de _código + + + HIBC PDF417 + + + + + HIBC Micro PDF417 + + + + + HIBC Aztec Code + Seleccionar bloque de _código + + + ITF-14 + Sobre #14 + + + Japanese Postal + Código postal: + + + Korean Postal + Código postal: + + + LOGMARS + + + + + Maxicode + + + + + Micro PDF417 + + + + + Micro QR Code + Seleccionar bloque de _código + + + MSI Plessey + + + + + NVE-18 + Só 18 pasos + + + PDF417 + + + + + PDF417 Truncated + + + + + PLANET + + + + + PostNet + + + + + Pharmacode + + + + + Pharmacode 2-track + Título da pista + + + Pharmazentral Nummer (PZN) + + + + + QR Code + Fragmentos de código + + + Royal Mail 4-State + Estado actual do reprodutor + + + Telepen + + + + + Telepen Numeric + Base numérica + + + USPS One Code + Seleccionar bloque de _código + + + UK Plessey + + Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Sen título @@ -2480,14 +2461,14 @@ Invalid barcode data - + Datos comprimidos incorrectos glabels::model::ModelTextObject Text - + Texto diff --git a/translations/glabels_hu.ts b/translations/glabels_hu.ts index b1f1e48..7b02809 100644 --- a/translations/glabels_hu.ts +++ b/translations/glabels_hu.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Narancs Butter @@ -132,7 +132,7 @@ Black - + Fekete Very Dark Gray @@ -164,29 +164,25 @@ White - + Fehér Db Other - - - - Roll - + Egyéb Factory None - + Nincs Text: Comma Separated Values (CSV) - + Szöveg: vesszővel elválasztott értékek (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Szöveg: tabulátorral elválasztott értékek (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + átmérő FrameRound diameter - + átmérő @@ -257,7 +246,7 @@ Source - + Forrás Location @@ -265,11 +254,11 @@ Format: - + Formátum: Location: - + Hely: Records @@ -277,11 +266,11 @@ Select all - + Összes kijelölése Unselect all - + Kijelölés megszüntetése @@ -292,11 +281,11 @@ Object properties - + Objektum tulajdonságai Text - + Szöveg Layout @@ -304,7 +293,7 @@ Alignment: - + Igazítás: Line spacing: @@ -324,7 +313,7 @@ None - + Nincs Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Család: Size: - + Méret: Style: - + Stílus: Color: - + Szín: Editor @@ -356,11 +345,11 @@ Barcode - + Vonalkód Style - + Stílus Type: @@ -372,15 +361,15 @@ Checksum - + Ellenőrzőösszeg Barcode data - + Vonalkód adat Image - + Kép File @@ -404,15 +393,15 @@ Line - + Vonal Width: - + Szélesség: Fill - + Kitöltés Position/Size @@ -420,27 +409,27 @@ Position - + Pozíció X: - + X: Y: - + Y: Size - + Méret Length: - + Hossz: Angle: - + Szög: Original size: @@ -456,11 +445,11 @@ Height: - + Magasság: Shadow - + Árnyék X offset: @@ -472,7 +461,7 @@ Opacity: - + Átlátszatlanság: @@ -483,19 +472,19 @@ Locale - + Területi beállítás Select locale specific behavior. - + Válassza ki a területi beállításra jellemző viselkedést. Units - + Mértékegység Points - + Pont Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milliméter Inches - + Hüvelyk Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Példányok + + + Copies: + Példányok: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + levágási jelek nyomtatása print in reverse (i.e. a mirror image) - + nyomtatás fordítottan (azaz tükörkép) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Gyártó: TextLabel @@ -589,23 +578,23 @@ Part #: - + Cikkszám: Description: - + Leírás: Page size: - + Oldalméret: Label size: - + Címkeméret: Layout: - + Elrendezés: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Összes keresése Search @@ -672,7 +653,7 @@ Other - + Egyéb Filter by category @@ -692,7 +673,7 @@ Recent - + Legutóbbi Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. külső sugár: 4. Clipping height: - + 4. vágási magasság: 2. Inner radius: - + 2. belső sugár: 3. Clipping width: - + 3. vágási szélesség: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. magasság: 1. Width: - + 1. szélesség: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Márka: Part #: - + Cikkszám: Description: - + Leírás: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Szám keresztbe (nx): Number down (ny): - + Szám lefelé (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Távolság a bal széltől (x0): Horizontal pitch (dx): - + Vízszintes osztóköz (dx): Vertical pitch (dy): - + Függőleges osztóköz (dy): Print test sheet + Tesztlap nyomtatása + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Oldalméret: Width: - + Szélesség: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Magasság: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. magasság: + + + 1. Width: + 1. szélesség: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. margó 1. Radius: - + 1. sugár: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Téglalap vagy négyzet (lehet lekerekített sarkuk) Round - + Kör Elliptical - + Ellipszis CD/DVD (including credit card CDs) - + CD/DVD (beleértve a hitelkártya CD-ket) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Távolság a bal széltől (x0): Number down (ny): - - - - Distance from top edge (y0): - + Szám lefelé (ny): Number across (nx): - + Szám keresztbe (nx): Horizontal pitch (dx): - + Vízszintes osztóköz (dx): Vertical pitch (dy): - + Függőleges osztóköz (dy): Print test sheet + Tesztlap nyomtatása + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + pont inches - + hüvelyk mm - + mm cm - + cm picas - + pica @@ -1138,7 +1085,7 @@ Custom Color - + Egyéni szín Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Áthelyezés Delete - + Törlés glabels::MainWindow Welcome - + Üdvözöljük Edit @@ -1303,19 +1250,19 @@ Undo - + Visszavonás Redo - + Mégis Cut - + Kivágás Cut the selection - + Kijelölés kivágása &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Kijelölés másolása &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Vágólap beillesztése &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + A kijelölt objektumok törlése Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Minden objektum kijelölése Un-select All - + Kijelölések törlése Remove all selections - + Összes kijelölés eltávolítása Preferences - + Beállítások Configure the application - + Az alkalmazás beállítása File @@ -1383,7 +1330,7 @@ Grid - + Rács Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Jelölés Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Nagyítás növelése Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Nagyítás csökkentése Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Méretezés visszaállítása 100%-ra Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Méretezés beállítása az ablak kitöltéséhez Select Mode - + Mód kijelölése Select, move and modify objects - + Objektumok kijelölése, áthelyezése és módosítása Text - + Szöveg Create text object - + Szövegobjektum létrehozása Box - + Doboz Create box object - + Dobozobjektum létrehozása Line - + Vonal Create line object - + Vonalobjektum létrehozása Ellipse - + Ellipszis Create ellipse/circle object - + Ellipszis/körobjektum létrehozása Image - + Kép Create image object - + Képobjektum létrehozása Barcode - + Vonalkód Create barcode object - + Vonalkódobjektum létrehozása Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Objektumok igazítása a bal szélekhez Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Objektumok igazítása a vízszintes közepekhez Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Objektumok igazítása a jobb szélekhez Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Objektumok igazítása a felső szélekhez Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Objektumok igazítása a függőleges közepekhez Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Objektumok igazítása az alsó szélekhez Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (módosítva) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + A módosítások elvesznek, ha nem menti azokat. Save project? @@ -1675,11 +1622,11 @@ Paste - + Beillesztés Delete - + Törlés Create Text @@ -1733,7 +1680,7 @@ Default - + Alapértelmezett Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Dobozobjektum tulajdonságai line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Ellipszisobjektum tulajdonságai Image object properties - + Képobjektum tulajdonságai image @@ -1777,11 +1724,11 @@ Line object properties - + Vonalobjektum tulajdonságai Text object properties - + Szövegobjektum tulajdonságai text @@ -1789,7 +1736,7 @@ Barcode object properties - + Vonalkódobjektum tulajdonságai barcode @@ -1797,15 +1744,15 @@ Object properties - + Objektum tulajdonságai Line - + Vonal Fill - + Kitöltés Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Kép beállítása Move - + Áthelyezés Size - + Méret Text - + Szöveg Shadow - + Árnyék @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Fel @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Másolás @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Üdvözöljük Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Elrendezések száma Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Név és leírás Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Oldalméret Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Egyéb @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Kiterjesztett Code 39 UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (bármely) POSTNET-5 (ZIP only) - + POSTNET-5 (csak ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (adatmátrix) EAN (any) - + EAN (bármely) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A vagy UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + 2/5 Interleaved Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QR-kód) + + + Australia Post Reply Paid + Ausztráliai fizetett postai válasz + + + Australia Post Route Code + Ausztráliai postai útkód + + + Australia Post Redirect + Ausztráliai postai átirányítás + + + Aztec Code + Azték kód + + + Aztec Rune + Azték rúna + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + 2/5 kód mátrix + + + Code 2 of 5 IATA + 2/5 kód IATA + + + Code 2 of 5 Data Logic + 2/5 kód adatlogika + + + Code 32 (Italian Pharmacode) + Code 32 (olasz Pharmacode) + + + Code 49 + Code 49 + + + DAFT Code + DAFT-kód + + + Data Matrix + Adatmátrix + + + Deutsche Post Leitcode + Német postai útmutatókód + + + Deutsche Post Identcode + Német postai azonosítókód + + + Dutch Post KIX Code + Holland postai KIX-kód + + + EAN + EAN + + + Grid Matrix + Rácsmátrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 halmozott + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 halmozott omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar kiterjesztett halmozott + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + HIBC adatmátrix + + + HIBC QR Code + HIBC QR-kód + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC azték kód + + + ITF-14 + ITF-14 + + + Japanese Postal + Japán postai + + + Korean Postal + Koreai postai + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR-kód + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 csonkított + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-sáv + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR-kód + + + Royal Mail 4-State + Királyi levél 4-állapot + + + Telepen + Telepen + + + Telepen Numeric + Telepen Numeric + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Névtelen @@ -2480,14 +2397,14 @@ Invalid barcode data - + Érvénytelen vonalkód adat glabels::model::ModelTextObject Text - + Szöveg diff --git a/translations/glabels_id.ts b/translations/glabels_id.ts index 0e630e6..a33eef6 100644 --- a/translations/glabels_id.ts +++ b/translations/glabels_id.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Oranye Butter @@ -132,7 +132,7 @@ Black - + Hitam Very Dark Gray @@ -164,29 +164,25 @@ White - + Putih Db Other - - - - Roll - + Lainnya Factory None - + Nihil Text: Comma Separated Values (CSV) - + Teks: Comma Separated Values (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Teks: Tab Separated Values (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diameter FrameRound diameter - + diameter @@ -257,7 +246,7 @@ Source - + Sumber Location @@ -265,11 +254,11 @@ Format: - + Format: Location: - + Lokasi: Records @@ -277,11 +266,11 @@ Select all - + Pilih semua Unselect all - + Pilih tak satupun @@ -292,11 +281,11 @@ Object properties - + Properti obyek Text - + Teks Layout @@ -304,7 +293,7 @@ Alignment: - + Perataan: Line spacing: @@ -324,7 +313,7 @@ None - + Nihil Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Keluarga: Size: - + Ukuran: Style: - + Gaya: Color: - + Warna: Editor @@ -356,11 +345,11 @@ Barcode - + Barcode Style - + Gaya Type: @@ -372,15 +361,15 @@ Checksum - + Checksum Barcode data - + Data kode batang Image - + Gambar File @@ -404,15 +393,15 @@ Line - + Garis Width: - + Lebar: Fill - + Isi Position/Size @@ -420,27 +409,27 @@ Position - + Posisi X: - + X: Y: - + Y: Size - + Ukuran Length: - + Panjang: Angle: - + Sudut: Original size: @@ -456,11 +445,11 @@ Height: - + Tinggi: Shadow - + Bayangan X offset: @@ -472,7 +461,7 @@ Opacity: - + Tingkat tembus pandang: @@ -483,19 +472,19 @@ Locale - + Locale Select locale specific behavior. - + Pilih perilaku spesifik locale. Units - + Unit Points - + Point Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milimeter Inches - + Inci Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Salinan + + + Copies: + Salinan: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + cetak tanda potong print in reverse (i.e. a mirror image) - + cetak terbalik (citra cermin) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Vendor: TextLabel @@ -589,23 +578,24 @@ Part #: - + Bagian #: Description: - + Deskripsi: Page size: - + Ukuran halaman: Label size: - + + Layout: - + Tata Letak: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +605,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +634,7 @@ Search all - + Cari semua Search @@ -672,7 +654,7 @@ Other - + Lainnya Filter by category @@ -692,7 +674,7 @@ Recent - + Terkini Select from recently used products. @@ -757,36 +739,29 @@ 1. Outer radius: - + + 4. Clipping height: - + + 2. Inner radius: - + + 3. Clipping width: - + + 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +770,11 @@ 2. Height: - + 2. Tinggi: 1. Width: - + 1. Lebar: 3. Waste: @@ -880,15 +855,15 @@ Brand: - + Merek: Part #: - + Bagian #: Description: - + Deskripsi: (e.g. 8163A) @@ -907,30 +882,35 @@ Number across (nx): - + + Number down (ny): - + + Distance from left edge (x0): - - - - Distance from top edge (y0): - + Jarak dari tepi kiri (x0): Horizontal pitch (dx): - + + Vertical pitch (dy): - + + Print test sheet + + + + + Distance from top edge (y0): @@ -941,31 +921,16 @@ - Roll width: - - - - Height: - + Page size: + Ukuran halaman: Width: - + Lebar: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Tinggi: @@ -974,6 +939,14 @@ Form + + 2. Height: + 2. Tinggi: + + + 1. Width: + 1. Lebar: + 4. Horizontal waste: @@ -983,29 +956,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +972,13 @@ 3. Margin - + + 1. Radius: - + + 2. Waste: @@ -1034,19 +993,19 @@ Rectangular or square (can have rounded corners) - + Persegi panjang atau bujur sangkar (bisa punya pojok lengkung) Round - + Bulat Elliptical - + Eliptis CD/DVD (including credit card CDs) - + CD/DVD (termasuk CD kartu kredit) @@ -1057,30 +1016,35 @@ Distance from left edge (x0): - + Jarak dari tepi kiri (x0): Number down (ny): - - - - Distance from top edge (y0): - + + Number across (nx): - + + Horizontal pitch (dx): - + + Vertical pitch (dy): - + + Print test sheet + + + + + Distance from top edge (y0): @@ -1088,23 +1052,23 @@ Units points - + point inches - + inci mm - + mm cm - + cm picas - + pica @@ -1138,7 +1102,7 @@ Custom Color - + Warna Ubahan Custom color #%1 @@ -1184,18 +1148,18 @@ glabels::LabelEditor Move - + Pindah Delete - + Hapus glabels::MainWindow Welcome - + Selamat Datang Edit @@ -1303,19 +1267,19 @@ Undo - + Tak Jadi Redo - + Jadi Lagi Cut - + Potong Cut the selection - + Potong pilihan &Copy @@ -1323,7 +1287,7 @@ Copy the selection - + Salin yang dipilih &Paste @@ -1331,7 +1295,7 @@ Paste the clipboard - + Tempel papan klip &Delete @@ -1339,7 +1303,7 @@ Delete the selected objects - + Hapus objek yang dipilih Select &All @@ -1347,23 +1311,23 @@ Select all objects - + Pilih semua objek Un-select All - + Pilih Tak Satupun Remove all selections - + Buang semua pilihan Preferences - + Preferensi Configure the application - + Mengonfigurasi aplikasi File @@ -1383,7 +1347,7 @@ Grid - + Kisi Change visibility of the grid in current window @@ -1391,7 +1355,7 @@ Markup - + Markup Change visibility of markup lines in current window @@ -1403,7 +1367,7 @@ Increase magnification - + Naikkan pembesaran Zoom &Out @@ -1411,7 +1375,7 @@ Decrease magnification - + Turunkan pembesaran Zoom &1 to 1 @@ -1419,7 +1383,7 @@ Restore scale to 100% - + Pulihkan skala ke 100% Zoom to &Fit @@ -1427,63 +1391,63 @@ Set scale to fit window - + Atur skala agar pas jendela Select Mode - + Mode Pilih Select, move and modify objects - + Pilih, pindah, dan ubah objek Text - + Teks Create text object - + Buat objek teks Box - + Kotak Create box object - + Buat objek kotak Line - + Garis Create line object - + Buat objek garis Ellipse - + Elips Create ellipse/circle object - + Buat objek elips/lingkaran Image - + Gambar Create image object - + Buat objek citra Barcode - + Barcode Create barcode object - + Buat objek kode batang Bring To Front @@ -1539,7 +1503,7 @@ Align objects to left edges - + Ratakan objek ke tepi kiri Align Center @@ -1547,7 +1511,7 @@ Align objects to horizontal centers - + Ratakan objek ke tengah horisontal Align Right @@ -1555,7 +1519,7 @@ Align objects to right edges - + Ratakan objek ke tepi kanan Align Top @@ -1563,7 +1527,7 @@ Align objects to top edges - + Ratakan objek ke tepi atas Align Middle @@ -1571,7 +1535,7 @@ Align objects to vertical centers - + Ratakan objek ke tengah vertikal Align Bottom @@ -1579,7 +1543,7 @@ Align objects to bottom edges - + Ratakan objek ke tepi bawah Center Horizontally @@ -1659,7 +1623,7 @@ (modified) - + (diubah) Save changes to project "%1" before closing? @@ -1667,7 +1631,7 @@ Your changes will be lost if you don't save them. - + Perubahan yang Anda buat akan hilang bila tidak Anda simpan. Save project? @@ -1675,11 +1639,11 @@ Paste - + Tempel Delete - + Hapus Create Text @@ -1733,7 +1697,7 @@ Default - + Baku Insert Field @@ -1749,7 +1713,7 @@ Box object properties - + Properti objek kotak line/fill @@ -1765,11 +1729,11 @@ Ellipse object properties - + Properti objek elips Image object properties - + Properti objek citra image @@ -1777,11 +1741,11 @@ Line object properties - + Properti objek garis Text object properties - + Properti objek teks text @@ -1789,7 +1753,7 @@ Barcode object properties - + Properti objek kode batang barcode @@ -1797,15 +1761,15 @@ Object properties - + Properti obyek Line - + Garis Fill - + Isi Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1825,23 @@ Set image - + Tata citra Move - + Pindah Size - + Ukuran Text - + Teks Shadow - + Bayangan @@ -1910,7 +1874,7 @@ glabels::SimplePreview Up - + Naik @@ -1919,13 +1883,9 @@ Product Template Designer - - Roll - - Copy - + Salin @@ -1958,17 +1918,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1933,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Selamat Datang Welcome to the gLabels Product Template Designer. @@ -1995,7 +1944,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Cacah Tata Letak Please select the number of layouts required. @@ -2006,7 +1955,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nama dan Deskripsi Please enter the following identifying information about the product. @@ -2032,7 +1981,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Ukuran Halaman Please select the product page size. @@ -2040,22 +1989,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Lainnya @@ -2106,39 +2040,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 Extended UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (apapun) POSTNET-5 (ZIP only) - + POSTNET-5 (hanya ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2080,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (apapun) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2108,306 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A atau UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + + Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Pos Australia Jawaban Dibayar + + + Australia Post Route Code + Pos Australia Kode Rute + + + Australia Post Redirect + Pos Australia Pengalihan + + + Aztec Code + Aztec Code + + + Aztec Rune + Aztec Rune + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + + + + + Code 2 of 5 IATA + + + + + Code 2 of 5 Data Logic + + + + + Code 32 (Italian Pharmacode) + Code 32 (Pharmacode Italia) + + + Code 49 + Code 49 + + + DAFT Code + DAFT Code + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + Dutch Post KIX Code + + + EAN + EAN + + + Grid Matrix + Grid Matrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Ditumpuk + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Ditumpuk Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar Ditumpuk Diperluas + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + HIBC Data Matrix + + + HIBC QR Code + HIBC QR Code + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + Pos Jepang + + + Korean Postal + Pos Korea + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 Dipotong + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR Code + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen Numeric + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Tanpa Judul @@ -2480,14 +2418,14 @@ Invalid barcode data - + Data kode batang tidak valid glabels::model::ModelTextObject Text - + Teks diff --git a/translations/glabels_it.ts b/translations/glabels_it.ts index a808d6a..8acd635 100644 --- a/translations/glabels_it.ts +++ b/translations/glabels_it.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + arancione Butter @@ -132,7 +132,7 @@ Black - + nero Very Dark Gray @@ -164,29 +164,26 @@ White - + bianco Db Other - - - - Roll - + Altro Factory None - + Nessuno Text: Comma Separated Values (CSV) - + + Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +191,8 @@ Text: Tab Separated Values (TSV) - + + Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +230,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + %s %s diametro FrameRound diameter - + %s %s diametro @@ -257,7 +248,7 @@ Source - + Sorgente Location @@ -265,11 +256,11 @@ Format: - + Formato: Location: - + Posizione: Records @@ -277,11 +268,11 @@ Select all - + Seleziona tutto Unselect all - + Deseleziona·tutto @@ -292,11 +283,11 @@ Object properties - + Proprietà oggetto Text - + Testo Layout @@ -304,7 +295,7 @@ Alignment: - + Allineamento: Line spacing: @@ -324,7 +315,7 @@ None - + Nessuno Allow printing to shrink text to fit object @@ -336,19 +327,19 @@ Family: - + Famiglia: Size: - + Dimensione: Style: - + Stile: Color: - + Colore: Editor @@ -356,11 +347,11 @@ Barcode - + _Codice a barre Style - + Stile Type: @@ -372,15 +363,15 @@ Checksum - + Checksum Barcode data - + _Codice a barre Image - + Immagine File @@ -404,15 +395,15 @@ Line - + Linea Width: - + Larghezza: Fill - + Riempimento Position/Size @@ -420,27 +411,27 @@ Position - + Posizione X: - + X: Y: - + Y: Size - + Dimensioni Length: - + Lunghezza: Angle: - + Angolo: Original size: @@ -456,11 +447,12 @@ Height: - + Altezza: Shadow - + + X offset: @@ -472,7 +464,8 @@ Opacity: - + + @@ -483,19 +476,20 @@ Locale - + Impostazioni nazionali Select locale specific behavior. - + + Units - + Senza nome Points - + Punti Centimeters @@ -503,11 +497,11 @@ Millimeters - + Millimetri Inches - + Pollici Picas @@ -521,13 +515,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Copie + + + Copies: + Copie: + Start on position: @@ -546,28 +552,16 @@ print crop marks - + stampa segni di taglio print in reverse (i.e. a mirror image) - + stampa al contrario (es. un'immagine riflessa) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +575,8 @@ Vendor: - + + TextLabel @@ -589,23 +584,23 @@ Part #: - + Parte #: Description: - + Descrizione: Page size: - + Dimensioni·pagina: Label size: - + Dimensioni etichetta: Layout: - + Layout: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +610,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +639,7 @@ Search all - + Seleziona tutto Search @@ -672,7 +659,7 @@ Other - + Altro Filter by category @@ -692,7 +679,7 @@ Recent - + _File Recenti Select from recently used products. @@ -757,36 +744,27 @@ 1. Outer radius: - + 1. raggio esterno: 4. Clipping height: - + + 2. Inner radius: - + 2. raggio interno: 3. Clipping width: - + + 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +773,11 @@ 2. Height: - + 2. Altezza: 1. Width: - + 1. Larghezza: 3. Waste: @@ -880,15 +858,16 @@ Brand: - + + Part #: - + Parte #: Description: - + Descrizione: (e.g. 8163A) @@ -907,30 +886,34 @@ Number across (nx): - + + Number down (ny): - + + Distance from left edge (x0): - - - - Distance from top edge (y0): - + Distanza dal bordo sinistro (x0): Horizontal pitch (dx): - + + Vertical pitch (dy): - + + Print test sheet + Stampa foglio di prova + + + Distance from top edge (y0): @@ -941,31 +924,16 @@ - Roll width: - - - - Height: - + Page size: + Dimensioni·pagina: Width: - + Larghezza: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Altezza: @@ -974,6 +942,14 @@ Form + + 2. Height: + 2. Altezza: + + + 1. Width: + 1. Larghezza: + 4. Horizontal waste: @@ -983,29 +959,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +975,11 @@ 3. Margin - + 3. Margine 1. Radius: - + Raggio: 2. Waste: @@ -1034,11 +994,12 @@ Rectangular or square (can have rounded corners) - + + Round - + Rotonda Elliptical @@ -1046,7 +1007,7 @@ CD/DVD (including credit card CDs) - + CD/DVD (inclusa copertina dei ringraziamenti) @@ -1057,30 +1018,34 @@ Distance from left edge (x0): - + Distanza dal bordo sinistro (x0): Number down (ny): - - - - Distance from top edge (y0): - + + Number across (nx): - + + Horizontal pitch (dx): - + + Vertical pitch (dy): - + + Print test sheet + Stampa foglio di prova + + + Distance from top edge (y0): @@ -1088,23 +1053,25 @@ Units points - + punti inches - + pollici mm - + mm cm - + + picas - + + @@ -1138,7 +1105,7 @@ Custom Color - + Colore personalizzato: Custom color #%1 @@ -1184,18 +1151,20 @@ glabels::LabelEditor Move - + + Delete - + Cancella glabels::MainWindow Welcome - + + Edit @@ -1303,19 +1272,19 @@ Undo - + Annulla Redo - + Ripeti Cut - + Taglia Cut the selection - + Taglia la selezione &Copy @@ -1323,7 +1292,7 @@ Copy the selection - + Copia la selezione &Paste @@ -1331,7 +1300,7 @@ Paste the clipboard - + Incolla gli appunti &Delete @@ -1339,7 +1308,7 @@ Delete the selected objects - + Cancella gli oggetti selezionati Select &All @@ -1347,23 +1316,23 @@ Select all objects - + Seleziona tutti gli oggetti Un-select All - + Deseleziona·tutto Remove all selections - + Rimuovi tutte le selezioni Preferences - + Preferenze Configure the application - + Configura l'applicazione File @@ -1383,7 +1352,7 @@ Grid - + _Griglia Change visibility of the grid in current window @@ -1391,7 +1360,7 @@ Markup - + Marcatori Change visibility of markup lines in current window @@ -1403,7 +1372,7 @@ Increase magnification - + Incrementa ingradimento Zoom &Out @@ -1411,7 +1380,7 @@ Decrease magnification - + Decrementa ingrandimento Zoom &1 to 1 @@ -1419,7 +1388,7 @@ Restore scale to 100% - + Ripristina la scala al 100% Zoom to &Fit @@ -1427,63 +1396,63 @@ Set scale to fit window - + Adatta alla finestra Select Mode - + Modalità di _selezione Select, move and modify objects - + Seleziona, muovi e modifica oggetti Text - + Testo Create text object - + Crea oggeto testo Box - + _Area Create box object - + Crea oggeto testo Line - + Linea Create line object - + Crea oggetto linea Ellipse - + _Ellisse Create ellipse/circle object - + Crea oggetto ellisse/cerchio Image - + Immagine Create image object - + Crea oggetto immagine Barcode - + _Codice a barre Create barcode object - + Crea oggetto codice a barre Bring To Front @@ -1539,7 +1508,8 @@ Align objects to left edges - + + Align Center @@ -1547,7 +1517,7 @@ Align objects to horizontal centers - + Allinea gli oggetti nel centro orizzontale Align Right @@ -1555,7 +1525,8 @@ Align objects to right edges - + + Align Top @@ -1563,7 +1534,7 @@ Align objects to top edges - + Allinea gli oggetti in basso Align Middle @@ -1571,7 +1542,7 @@ Align objects to vertical centers - + Allinea gli oggetti al centro verticale Align Bottom @@ -1579,7 +1550,7 @@ Align objects to bottom edges - + Allinea gli oggetti in basso Center Horizontally @@ -1659,7 +1630,7 @@ (modified) - + (modificato) Save changes to project "%1" before closing? @@ -1667,7 +1638,7 @@ Your changes will be lost if you don't save them. - + I tuoi cambiamenti andranno persi se non salvi. Save project? @@ -1675,11 +1646,11 @@ Paste - + Incolla Delete - + Cancella Create Text @@ -1733,7 +1704,7 @@ Default - + Predefinito Insert Field @@ -1749,7 +1720,7 @@ Box object properties - + Proprietà dell'oggetto area line/fill @@ -1765,11 +1736,11 @@ Ellipse object properties - + Proprietà dell'oggetto Ellisse Image object properties - + Proprietà dell'oggetto Immagine image @@ -1777,11 +1748,11 @@ Line object properties - + Proprietà dell'oggetto Linea Text object properties - + Proprietà dell'oggetto Testo text @@ -1789,7 +1760,7 @@ Barcode object properties - + Proprietà dell'oggetto Codice a barre barcode @@ -1797,15 +1768,15 @@ Object properties - + Proprietà oggetto Line - + Linea Fill - + Riempimento Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1832,25 @@ Set image - + Ripristina dimensioni immagine Move - + + Size - + Dimensioni Text - + Testo Shadow - + + @@ -1910,7 +1883,8 @@ glabels::SimplePreview Up - + + @@ -1919,13 +1893,9 @@ Product Template Designer - - Roll - - Copy - + Copia @@ -1958,17 +1928,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1943,8 @@ glabels::TemplateDesignerIntroPage Welcome - + + Welcome to the gLabels Product Template Designer. @@ -1995,7 +1955,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Numero di layout Please select the number of layouts required. @@ -2006,7 +1966,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nome e descrizione Please enter the following identifying information about the product. @@ -2032,7 +1992,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Dimensione pagina Please select the product page size. @@ -2040,22 +2000,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Altro @@ -2106,39 +2051,40 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (qualsiasi) POSTNET-5 (ZIP only) - + POSTNET-5 (solo ZIP/CAP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP/CAP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + + USPS Intelligent Mail @@ -2146,15 +2092,16 @@ IEC16022 (DataMatrix) - + + EAN (any) - + EAN (qualsiasi) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,151 +2121,159 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A o UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + + Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 39 IEC18004 (QRCode) - - - - Australia Post Standard - + + Australia Post Reply Paid - + + Australia Post Route Code - + + Australia Post Redirect - + + Aztec Code - + + Aztec Rune - + + Code One - + Code 39 Code 11 - + Code 128 Code 16K - + Code 128 Code 2 of 5 Matrix - + + Code 2 of 5 IATA - + + Code 2 of 5 Data Logic - + + Code 32 (Italian Pharmacode) - + + Code 49 - - - - Code 128 (Mode C suppression) - + Code 39 DAFT Code - + + Data Matrix - + + Deutsche Post Leitcode - + + Deutsche Post Identcode - + + Dutch Post KIX Code - + + EAN @@ -2326,71 +2281,86 @@ Grid Matrix - + + GS1-128 - + + GS1 DataBar-14 - + + GS1 DataBar-14 Stacked - + + GS1 DataBar-14 Stacked Omni. - + + GS1 DataBar Extended Stacked - + + HIBC Code 128 - + Code 128 HIBC Code 39 - + Code 39 HIBC Data Matrix - + + HIBC QR Code - + + HIBC PDF417 - + + HIBC Micro PDF417 - + + HIBC Aztec Code - + + ITF-14 - + + Japanese Postal - + + Korean Postal - + + LOGMARS - + + Maxicode @@ -2398,70 +2368,90 @@ Micro PDF417 - + + Micro QR Code - + + MSI Plessey - + Plessey NVE-18 - + + PDF417 - + + PDF417 Truncated - + + PLANET - + + PostNet - + Incolla Pharmacode - + _Codice a barre Pharmacode 2-track - + + Pharmazentral Nummer (PZN) - + + QR Code - + + Royal Mail 4-State - + + Telepen - + Cancella Telepen Numeric - + + USPS One Code - + + UK Plessey + Plessey + + + Australia Post Standard + + + + Code 128 (Mode C suppression) @@ -2469,7 +2459,7 @@ glabels::model::Model Untitled - + Senza nome @@ -2480,14 +2470,14 @@ Invalid barcode data - + Codice a barre non valido glabels::model::ModelTextObject Text - + Testo diff --git a/translations/glabels_ja.ts b/translations/glabels_ja.ts index 494f23b..8e84dad 100644 --- a/translations/glabels_ja.ts +++ b/translations/glabels_ja.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Butter @@ -132,7 +132,7 @@ Black - + Very Dark Gray @@ -164,29 +164,25 @@ White - + Db Other - - - - Roll - + その他 Factory None - + なし Text: Comma Separated Values (CSV) - + 文字列: カンマ区切りの値 (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + 文字列: タブ区切りの値 (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + (直径) FrameRound diameter - + (直径) @@ -257,7 +246,7 @@ Source - + ソース Location @@ -265,11 +254,11 @@ Format: - + 書式: Location: - + 場所: Records @@ -277,11 +266,11 @@ Select all - + 全て選択 Unselect all - + 全て選択解除 @@ -292,11 +281,11 @@ Object properties - + オブジェクトのプロパティ Text - + 文字 Layout @@ -304,7 +293,7 @@ Alignment: - + 位置: Line spacing: @@ -324,7 +313,7 @@ None - + なし Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + ファミリ: Size: - + 大きさ: Style: - + スタイル: Color: - + 色: Editor @@ -356,11 +345,11 @@ Barcode - + バーコード Style - + スタイル Type: @@ -372,15 +361,15 @@ Checksum - + チェックサム Barcode data - + バーコードのデータ Image - + 画像 File @@ -404,15 +393,15 @@ Line - + 直線 Width: - + 幅: Fill - + 塗りつぶし Position/Size @@ -420,27 +409,27 @@ Position - + 位置 X: - + X: Y: - + Y: Size - + 大きさ Length: - + 長さ: Angle: - + 角度: Original size: @@ -456,11 +445,11 @@ Height: - + 高さ: Shadow - + X offset: @@ -472,7 +461,7 @@ Opacity: - + 透明度: @@ -483,19 +472,19 @@ Locale - + ロケール Select locale specific behavior. - + 利用する言語 (ロケール) に依存するパラメーターを選択して下さい: Units - + 単位 Points - + ポイント Centimeters @@ -503,11 +492,11 @@ Millimeters - + ミリ Inches - + インチ Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + コピー: + + + Copies: + コピー: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + 端のマークを揃えて印刷する print in reverse (i.e. a mirror image) - + (画像をミラーするように) 反転して印刷する Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + ベンダー: TextLabel @@ -589,23 +578,23 @@ Part #: - + パーツ番号 Description: - + 説明: Page size: - + 用紙の大きさ: Label size: - + ラベルの大きさ: Layout: - + レイアウト: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + テンプレート Search @@ -672,7 +653,7 @@ Other - + その他 Filter by category @@ -692,7 +673,7 @@ Recent - + 最近開いたラベル Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. 外径: 4. Clipping height: - + 4. クリッピングの高さ: 2. Inner radius: - + 2. インナーの半径: 3. Clipping width: - + 3. クリッピングの幅: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. 高さ: 1. Width: - + 1. 幅: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + ベンダー: Part #: - + パーツ番号 Description: - + 説明: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + 横方向の数 (nx): Number down (ny): - + 縦方向の数 (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + 左上隅からの距離 (x0): Horizontal pitch (dx): - + 水平方向のピッチ (dx): Vertical pitch (dy): - + 垂直方向のピッチ (dy): Print test sheet + 用紙のテスト印刷 + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + 用紙の大きさ: Width: - + 幅: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + 高さ: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. 高さ: + + + 1. Width: + 1. 幅: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. 余白 1. Radius: - + 1. 半径: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + 長方形または正方形 (コーナーを丸くすることも可) Round - + Elliptical - + 楕円 CD/DVD (including credit card CDs) - + CD/DVD の形 (含むクレジット・カード CD) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + 左上隅からの距離 (x0): Number down (ny): - - - - Distance from top edge (y0): - + 縦方向の数 (ny): Number across (nx): - + 横方向の数 (nx): Horizontal pitch (dx): - + 水平方向のピッチ (dx): Vertical pitch (dy): - + 垂直方向のピッチ (dy): Print test sheet + 用紙のテスト印刷 + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + [ポイント] inches - + [インチ] mm - + [ミリ] cm - + [センチ] picas - + [パイカ] @@ -1138,7 +1085,7 @@ Custom Color - + 色の指定 Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + 移動 Delete - + 削除 glabels::MainWindow Welcome - + ようこそ Edit @@ -1303,19 +1250,19 @@ Undo - + 元に戻す Redo - + やり直す Cut - + 切り取り Cut the selection - + 選択範囲を切り取ります &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + 選択範囲をコピーします &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + クリップボードの内容を貼り付けます &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + 選択したオブジェクトを削除します Select &All @@ -1347,23 +1294,23 @@ Select all objects - + 全てのオブジェクトを選択します Un-select All - + 全て選択解除 Remove all selections - + 選択を解除します Preferences - + gLabels の設定 Configure the application - + gLabels の設定を変更します File @@ -1383,7 +1330,7 @@ Grid - + グリッド Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + マークアップ Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + 拡大率を上げます Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + 拡大率を下げます Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + 拡大率を 100% に戻します Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + ウィンドウの大きさに合わせます Select Mode - + 選択モード Select, move and modify objects - + オブジェクトを選択して移動したり編集します Text - + 文字 Create text object - + 文字オブジェクトを作成します Box - + 矩形 Create box object - + 矩形オブジェクトを作成します Line - + 直線 Create line object - + 直線オブジェクトを作成します Ellipse - + 楕円 Create ellipse/circle object - + 楕円/円オブジェクトを作成します Image - + 画像 Create image object - + 画像オブジェクトを作成します Barcode - + バーコード Create barcode object - + バーコード・オブジェクトを作成します Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + オブジェクトを左端に配置します Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + オブジェクトを水平方向の中心に配置します Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + オブジェクトを右端に配置します Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + オブジェクトを上端に配置します Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + オブジェクトを垂直方向の中心に配置します Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + オブジェクトを下端に配置します Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (変更済み) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + このドキュメントを保存しないと変更したデータを失うことになります。 Save project? @@ -1675,11 +1622,11 @@ Paste - + 貼り付け Delete - + 削除 Create Text @@ -1733,7 +1680,7 @@ Default - + デフォルト Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + 矩形オブジェクトのプロパティ line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + 楕円オブジェクトのプロパティ Image object properties - + 画像オブジェクトのプロパティ image @@ -1777,11 +1724,11 @@ Line object properties - + 直線オブジェクトのプロパティ Text object properties - + 文字オブジェクトのプロパティ text @@ -1789,7 +1736,7 @@ Barcode object properties - + バーコード・オブジェクトのプロパティ barcode @@ -1797,15 +1744,15 @@ Object properties - + オブジェクトのプロパティ Line - + 直線 Fill - + 塗りつぶし Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + 画像の指定 Move - + 移動 Size - + 大きさ Text - + 文字 Shadow - + @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + 上端 @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + コピー @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + ようこそ Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + レイアウトの数 Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + 名前と説明 Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + 用紙の大きさ Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + その他 @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 拡張 UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (全て) POSTNET-5 (ZIP only) - + POSTNET-5 (ZIP のみ) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (全て) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A または UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + 綴じ込み 2/5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + オーストラリアの郵便返信料 + + + Australia Post Route Code + オーストラリアの郵便配達コースのコード + + + Australia Post Redirect + オーストラリアの郵便再配達 + + + Aztec Code + Aztec コード + + + Aztec Rune + Aztec ルーン + + + Code One + Code ワン + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + マトリックス 2 of 5 + + + Code 2 of 5 IATA + IATA 2 of 5 + + + Code 2 of 5 Data Logic + Data Logic 2 of 5 + + + Code 32 (Italian Pharmacode) + Code 32 (イタリア語の Pharmacode) + + + Code 49 + Code 49 + + + DAFT Code + DAFT Code + + + Data Matrix + データ・マトリックス + + + Deutsche Post Leitcode + ドイツの郵便用リードコード + + + Deutsche Post Identcode + ドイツの郵便用 ID + + + Dutch Post KIX Code + ドイツの郵便用 KIX コード + + + EAN + EAN + + + Grid Matrix + グリッド・マトリックス + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Stacked + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Stacked Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar Extended Stacked + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + HIBC データ・マトリックス + + + HIBC QR Code + HIBC QR Code + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC マイクロ PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + 日本郵便 + + + Korean Postal + 韓国郵便 + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + マイクロ PDF417 + + + Micro QR Code + マイクロ QR コード + + + MSI Plessey + MSI/Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 Truncated + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR コード + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen Numeric + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + タイトルなし @@ -2480,14 +2397,14 @@ Invalid barcode data - + バーコード・データが間違っています glabels::model::ModelTextObject Text - + 文字 diff --git a/translations/glabels_ko.ts b/translations/glabels_ko.ts index 4a239d9..3d12f8d 100644 --- a/translations/glabels_ko.ts +++ b/translations/glabels_ko.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + 오렌지색 Butter @@ -132,7 +132,7 @@ Black - + 검은색 Very Dark Gray @@ -164,29 +164,26 @@ White - + 흰색 Db Other - - - - Roll - + 직접지정 Factory None - + 없음 Text: Comma Separated Values (CSV) - + + Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +191,8 @@ Text: Tab Separated Values (TSV) - + + Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +230,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + 지름 %s %s FrameRound diameter - + 지름 %s %s @@ -257,7 +248,7 @@ Source - + 소스 Location @@ -265,11 +256,11 @@ Format: - + 서식: Location: - + 장소: Records @@ -277,11 +268,11 @@ Select all - + 모두 선택 Unselect all - + 모든 선택 해제 @@ -292,11 +283,11 @@ Object properties - + 항목 속성 Text - + 글자 Layout @@ -304,7 +295,7 @@ Alignment: - + 위치: Line spacing: @@ -324,7 +315,7 @@ None - + 없음 Allow printing to shrink text to fit object @@ -336,19 +327,19 @@ Family: - + 패밀리: Size: - + 크기: Style: - + 모양: Color: - + 색상: Editor @@ -356,11 +347,11 @@ Barcode - + 바코드(_C) Style - + 모양 Type: @@ -372,15 +363,15 @@ Checksum - + 체크섬 Barcode data - + 바코드(_C) Image - + 그림 File @@ -404,15 +395,15 @@ Line - + Width: - + 넓이: Fill - + 채우기 Position/Size @@ -420,27 +411,27 @@ Position - + 위치 X: - + X: Y: - + Y: Size - + 크기 Length: - + 길이: Angle: - + 각도: Original size: @@ -456,11 +447,12 @@ Height: - + 높이: Shadow - + + X offset: @@ -472,7 +464,8 @@ Opacity: - + + @@ -483,19 +476,19 @@ Locale - + 로케일 Select locale specific behavior. - + 구체적인 로케일을 선택 Units - + 제목없음 Points - + 포인트 Centimeters @@ -503,11 +496,11 @@ Millimeters - + 밀리미터 Inches - + 인치 Picas @@ -521,13 +514,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + 매수 + + + Copies: + 매수: + Start on position: @@ -546,28 +551,16 @@ print crop marks - + 자르기 표시 인쇄 print in reverse (i.e. a mirror image) - + 거꾸로 인쇄 (거울 효과) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +574,8 @@ Vendor: - + + TextLabel @@ -589,23 +583,23 @@ Part #: - + 라벨분류: Description: - + 설명: Page size: - + 용지 크기: Label size: - + 라벨 크기: Layout: - + 배치: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +609,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +638,7 @@ Search all - + 모두 선택 Search @@ -672,7 +658,7 @@ Other - + 직접지정 Filter by category @@ -692,7 +678,7 @@ Recent - + 최근의 파일(_F) Select from recently used products. @@ -757,36 +743,25 @@ 1. Outer radius: - + 1. 바깥 반지름: 4. Clipping height: - + 4. 오려내기 높이: 2. Inner radius: - + 2. 안쪽 반지름: 3. Clipping width: - + 3. 오려내기 넓이: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +770,11 @@ 2. Height: - + 2. 높이: 1. Width: - + 1. 넓이: 3. Waste: @@ -880,15 +855,16 @@ Brand: - + + Part #: - + 라벨분류: Description: - + 설명: (e.g. 8163A) @@ -907,30 +883,30 @@ Number across (nx): - + 가로 개수 (nx): Number down (ny): - + 세로 개수 (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + 왼쪽 가장자리 부터 (x0): Horizontal pitch (dx): - + 수평 pitch (dx): Vertical pitch (dy): - + 수직 pitch (dy): Print test sheet + 용지 테스트 인쇄 + + + Distance from top edge (y0): @@ -941,31 +917,16 @@ - Roll width: - - - - Height: - + Page size: + 용지 크기: Width: - + 넓이: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + 높이: @@ -974,6 +935,14 @@ Form + + 2. Height: + 2. 높이: + + + 1. Width: + 1. 넓이: + 4. Horizontal waste: @@ -983,29 +952,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +968,11 @@ 3. Margin - + 3. 여백 1. Radius: - + 1. 반지름: 2. Waste: @@ -1034,11 +987,11 @@ Rectangular or square (can have rounded corners) - + 직사각형 또는 정사각형(마무리를 둥글게 만들 수 있음) Round - + 둥근형 Elliptical @@ -1046,7 +999,7 @@ CD/DVD (including credit card CDs) - + CD/DVD (credit card CD 포함) @@ -1057,30 +1010,30 @@ Distance from left edge (x0): - + 왼쪽 가장자리 부터 (x0): Number down (ny): - - - - Distance from top edge (y0): - + 세로 개수 (ny): Number across (nx): - + 가로 개수 (nx): Horizontal pitch (dx): - + 수평 pitch (dx): Vertical pitch (dy): - + 수직 pitch (dy): Print test sheet + 용지 테스트 인쇄 + + + Distance from top edge (y0): @@ -1088,23 +1041,25 @@ Units points - + 포인트 inches - + [인치] mm - + [밀리미터] cm - + + picas - + + @@ -1138,7 +1093,7 @@ Custom Color - + 임의의 색상: Custom color #%1 @@ -1184,18 +1139,20 @@ glabels::LabelEditor Move - + + Delete - + 삭제 glabels::MainWindow Welcome - + + Edit @@ -1303,19 +1260,19 @@ Undo - + 되돌리기 Redo - + 재실행 Cut - + 잘라내기 Cut the selection - + 선택한것 잘라내기 &Copy @@ -1323,7 +1280,7 @@ Copy the selection - + 선택 복사 &Paste @@ -1331,7 +1288,7 @@ Paste the clipboard - + 클립보드에 붙이기 &Delete @@ -1339,7 +1296,7 @@ Delete the selected objects - + 선택한 개체 삭제 Select &All @@ -1347,23 +1304,23 @@ Select all objects - + 모든 개체 선택 Un-select All - + 모든 선택 해제 Remove all selections - + 모든 선택사항 삭제 Preferences - + 설정 Configure the application - + gLabel 구성 File @@ -1383,7 +1340,7 @@ Grid - + 그리드(_G) Change visibility of the grid in current window @@ -1391,7 +1348,7 @@ Markup - + 마크업 Change visibility of markup lines in current window @@ -1403,7 +1360,7 @@ Increase magnification - + 상승 확대 Zoom &Out @@ -1411,7 +1368,7 @@ Decrease magnification - + 확대 감소 Zoom &1 to 1 @@ -1419,7 +1376,7 @@ Restore scale to 100% - + 100%크기로 복구 Zoom to &Fit @@ -1427,63 +1384,63 @@ Set scale to fit window - + 윈도우에 맞춰서 확대 Select Mode - + 모드 선택(_S) Select, move and modify objects - + 선택, 개체 이동과 수정 Text - + 글자 Create text object - + 글자 개체 만들기 Box - + 사각형(_B) Create box object - + 글자 개체 만들기 Line - + Create line object - + 선 개체 만들기 Ellipse - + 타원(_E) Create ellipse/circle object - + 타원/원형 개체 만들기 Image - + 그림 Create image object - + 그림 개체 만들기 Barcode - + 바코드(_C) Create barcode object - + 바코드 개체 만들기 Bring To Front @@ -1539,7 +1496,7 @@ Align objects to left edges - + 개체 좌측 가장자리로 정렬 Align Center @@ -1547,7 +1504,7 @@ Align objects to horizontal centers - + 개체 세로 중앙으로 정렬 Align Right @@ -1555,7 +1512,7 @@ Align objects to right edges - + 개체 우측 가장자리로 정렬 Align Top @@ -1563,7 +1520,7 @@ Align objects to top edges - + 개체 좌측 가장자리로 정렬 Align Middle @@ -1571,7 +1528,7 @@ Align objects to vertical centers - + 개체 수평 중앙으로 정렬 Align Bottom @@ -1579,7 +1536,7 @@ Align objects to bottom edges - + 개체 아래로 정렬 Center Horizontally @@ -1659,7 +1616,7 @@ (modified) - + (수정됨) Save changes to project "%1" before closing? @@ -1667,7 +1624,7 @@ Your changes will be lost if you don't save them. - + 저장하지 않으면, 바뀐부분을 잃어버리게 됩니다. Save project? @@ -1675,11 +1632,11 @@ Paste - + 붙이기 Delete - + 삭제 Create Text @@ -1733,7 +1690,7 @@ Default - + 기본 Insert Field @@ -1749,7 +1706,7 @@ Box object properties - + 사각형 개체 속성 line/fill @@ -1765,11 +1722,11 @@ Ellipse object properties - + 타원 개체 속성 Image object properties - + 그림 개체 속성 image @@ -1777,11 +1734,11 @@ Line object properties - + 선 개체 속성 Text object properties - + 글자 개체 속성 text @@ -1789,7 +1746,7 @@ Barcode object properties - + 바코드 개체 속성 barcode @@ -1797,15 +1754,15 @@ Object properties - + 항목 속성 Line - + Fill - + 채우기 Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1818,25 @@ Set image - + 그림크기 재설정 Move - + + Size - + 크기 Text - + 글자 Shadow - + + @@ -1910,7 +1869,8 @@ glabels::SimplePreview Up - + + @@ -1919,13 +1879,9 @@ Product Template Designer - - Roll - - Copy - + 복사 @@ -1958,17 +1914,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1929,8 @@ glabels::TemplateDesignerIntroPage Welcome - + + Welcome to the gLabels Product Template Designer. @@ -1995,7 +1941,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + 레이아웃 선택 Please select the number of layouts required. @@ -2006,7 +1952,7 @@ glabels::TemplateDesignerNamePage Name and Description - + 이름과 설명 Please enter the following identifying information about the product. @@ -2032,7 +1978,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + 용지 크기 Please select the product page size. @@ -2040,22 +1986,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + 직접지정 @@ -2106,39 +2037,40 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (임의) POSTNET-5 (ZIP only) - + POSTNET-5 (ZIP만) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + + USPS Intelligent Mail @@ -2146,15 +2078,16 @@ IEC16022 (DataMatrix) - + + EAN (any) - + EAN (임의) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,151 +2107,158 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A 또는 UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Interleaved 2 of 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 39 IEC18004 (QRCode) - - - - Australia Post Standard - + + Australia Post Reply Paid - + + Australia Post Route Code - + + Australia Post Redirect - + + Aztec Code - + + Aztec Rune - + + Code One - + Code 39 Code 11 - + Code 128 Code 16K - + Code 128 Code 2 of 5 Matrix - + + Code 2 of 5 IATA - + + Code 2 of 5 Data Logic - + + Code 32 (Italian Pharmacode) - + + Code 49 - - - - Code 128 (Mode C suppression) - + Code 39 DAFT Code - + + Data Matrix - + + Deutsche Post Leitcode - + + Deutsche Post Identcode - + + Dutch Post KIX Code - + + EAN @@ -2326,71 +2266,86 @@ Grid Matrix - + + GS1-128 - + + GS1 DataBar-14 - + + GS1 DataBar-14 Stacked - + + GS1 DataBar-14 Stacked Omni. - + + GS1 DataBar Extended Stacked - + + HIBC Code 128 - + Code 128 HIBC Code 39 - + Code 39 HIBC Data Matrix - + + HIBC QR Code - + + HIBC PDF417 - + + HIBC Micro PDF417 - + + HIBC Aztec Code - + + ITF-14 - + + Japanese Postal - + + Korean Postal - + + LOGMARS - + + Maxicode @@ -2398,70 +2353,90 @@ Micro PDF417 - + + Micro QR Code - + + MSI Plessey - + Plessey NVE-18 - + + PDF417 - + + PDF417 Truncated - + + PLANET - + + PostNet - + 붙이기 Pharmacode - + 바코드(_C) Pharmacode 2-track - + + Pharmazentral Nummer (PZN) - + + QR Code - + + Royal Mail 4-State - + + Telepen - + 삭제 Telepen Numeric - + + USPS One Code - + + UK Plessey + Plessey + + + Australia Post Standard + + + + Code 128 (Mode C suppression) @@ -2469,7 +2444,7 @@ glabels::model::Model Untitled - + 제목없음 @@ -2480,14 +2455,14 @@ Invalid barcode data - + 잘못된 바코드 데이터 glabels::model::ModelTextObject Text - + 글자 diff --git a/translations/glabels_lv.ts b/translations/glabels_lv.ts index 771ee88..00ec4e6 100644 --- a/translations/glabels_lv.ts +++ b/translations/glabels_lv.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Oranžs Butter @@ -132,7 +132,7 @@ Black - + Melns Very Dark Gray @@ -164,29 +164,25 @@ White - + Balts Db Other - - - - Roll - + Cits Factory None - + Nekas Text: Comma Separated Values (CSV) - + Teksts — ar komatu atdalītas vērtības (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Teksts — ar tabulāciju atdalītas vērtības (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diametrs FrameRound diameter - + diametrs @@ -257,7 +246,7 @@ Source - + Avots Location @@ -265,11 +254,11 @@ Format: - + Formāts: Location: - + Vieta: Records @@ -277,11 +266,11 @@ Select all - + Izvēlēties visu Unselect all - + Neizvēlēties neko @@ -292,11 +281,11 @@ Object properties - + Objekta īpašības Text - + Teksts Layout @@ -304,7 +293,7 @@ Alignment: - + Līdzinājums: Line spacing: @@ -324,7 +313,7 @@ None - + Nekas Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Saime: Size: - + Izmērs: Style: - + Stils: Color: - + Krāsa: Editor @@ -356,11 +345,11 @@ Barcode - + Svītrkods Style - + Stils Type: @@ -372,15 +361,15 @@ Checksum - + Kontrolsumma Barcode data - + Svītrkoda dati Image - + Attēls File @@ -404,15 +393,15 @@ Line - + Līnija Width: - + Platums: Fill - + Aizpildīt Position/Size @@ -420,27 +409,27 @@ Position - + Pozīcija X: - + X: Y: - + Y: Size - + Izmērs Length: - + Garums: Angle: - + Leņķis: Original size: @@ -456,11 +445,11 @@ Height: - + Augstums: Shadow - + Ēna X offset: @@ -472,7 +461,7 @@ Opacity: - + Necaurspīdīgums: @@ -483,19 +472,19 @@ Locale - + Lokāle Select locale specific behavior. - + Izvēlieties lokālei specifisku uzvedību. Units - + Mērvienības Points - + Punkti Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milimetri Inches - + Collas Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Kopijas + + + Copies: + Kopijas: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + drukāt apciršanas zīmes print in reverse (i.e. a mirror image) - + drukāt pretēji (tas ir, attēls ir spoguļskatā) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Ražotājs: TextLabel @@ -589,23 +578,23 @@ Part #: - + Daļas #: Description: - + Apraksts: Page size: - + Lapas izmērs: Label size: - + Etiķetes izmērs: Layout: - + Izkārtojums: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Meklēt visu Search @@ -672,7 +653,7 @@ Other - + Cits Filter by category @@ -692,7 +673,7 @@ Recent - + Nesenās Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. ārējais rādiuss: 4. Clipping height: - + 4. apciršanas augstums: 2. Inner radius: - + 2. iekšējais rādiuss: 3. Clipping width: - + 3. apciršanas platums: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. augstums: 1. Width: - + 1. platums: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Zīmols: Part #: - + Daļas #: Description: - + Apraksts: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Skaits rindā (nx): Number down (ny): - + Skaits kolonnā (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Attālums no kreisās malas (x0): Horizontal pitch (dx): - + Horizontālā novietne (dx): Vertical pitch (dy): - + Vertikālā novietne (dy): Print test sheet + Drukāt testa loksli + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Lapas izmērs: Width: - + Platums: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Augstums: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. augstums: + + + 1. Width: + 1. platums: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. mala 1. Radius: - + 1. rādiuss: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Taisnstūra vai kvadrāta (var būt noapaļoti stūri) Round - + Apaļš Elliptical - + Elipsveida CD/DVD (including credit card CDs) - + CD/DVD (tai skaitā kredītkaršu CD) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Attālums no kreisās malas (x0): Number down (ny): - - - - Distance from top edge (y0): - + Skaits kolonnā (ny): Number across (nx): - + Skaits rindā (nx): Horizontal pitch (dx): - + Horizontālā novietne (dx): Vertical pitch (dy): - + Vertikālā novietne (dy): Print test sheet + Drukāt testa loksli + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + punkti inches - + collas mm - + mm cm - + cm picas - + cicero @@ -1138,7 +1085,7 @@ Custom Color - + Izvēlētā krāsa Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Pārvietot Delete - + Dzēst glabels::MainWindow Welcome - + Laipni lūdzam Edit @@ -1303,19 +1250,19 @@ Undo - + Atsaukt Redo - + Atatsaukt Cut - + Izgriezt Cut the selection - + Izgriezt izvēlēto &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Kopēt izvēlēto &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Ielīmēt starpliktuvi &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Dzēst izvēlētos objektus Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Meklēt visus objektus Un-select All - + Neizvēlēties neko Remove all selections - + Izņemt visu izvēli Preferences - + Iestatījumi Configure the application - + Konfigurēt lietotni File @@ -1383,7 +1330,7 @@ Grid - + Režģis Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Marķējums Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Palielināt mērogu Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Samazināt mērogu Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Atjaunot mērogu uz 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Iestatīt mērogu, lai iekļautos logā Select Mode - + Izvēles režīms Select, move and modify objects - + Izvēlēties, pārvietot un modificēt objektus Text - + Teksts Create text object - + Izveidot teksta objektu Box - + Kaste Create box object - + Izveidot kastes objektu Line - + Līnija Create line object - + Izveidot līnijas objektu Ellipse - + Elipse Create ellipse/circle object - + Izveidot elipses/apļa objektu Image - + Attēls Create image object - + Izveidot attēla objektu Barcode - + Svītrkods Create barcode object - + Izveidot svītrkoda objekt Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Līdzināt objektu pie kreisās malas Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Līdzināt objektu pie horizontālā centra Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Līdzināt objektu pie labās malas Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Līdzināt objektu pie augšējās malas Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Līdzināt objektu pie vertikālā centra Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Līdzināt objektu pie apakšējās malas Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (izmainīts) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Ja nesaglabāsiet, izmaiņas tiks zaudētas. Save project? @@ -1675,11 +1622,11 @@ Paste - + Ielīmēt Delete - + Dzēst Create Text @@ -1733,7 +1680,7 @@ Default - + Noklusējuma Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Kastes objekta īpašības line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Elipses objekta īpašības Image object properties - + Attēla objekta īpašības image @@ -1777,11 +1724,11 @@ Line object properties - + Līnijas objekta īpašības Text object properties - + Teksta objekta īpašības text @@ -1789,7 +1736,7 @@ Barcode object properties - + Svītrkoda objekta īpašības barcode @@ -1797,15 +1744,15 @@ Object properties - + Objekta īpašības Line - + Līnija Fill - + Aizpildīt Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Iestatīt attēlu Move - + Pārvietot Size - + Izmērs Text - + Teksts Shadow - + Ēna @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Augšup @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Kopēt @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Laipni lūdzam Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Izkārtojumu skaits Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nosaukums un apraksts Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Lappuses izmērs Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Cits @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Kods 39 Code 39 Extended - + Kods 39 paplašināts UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (jebkurš) POSTNET-5 (ZIP only) - + POSTNET-5 (tikai ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (datu matrica) EAN (any) - + EAN (jebkurš) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A vai UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Kods 128 Code 128C - + Kods 128C Code 128B - + Kods 128B Interleaved 2 of 5 - + Starplikām 2 no 5 Codabar - + Svītrkods MSI - + MSI Plessey - + Plessey Code 93 - + Kods 93 IEC18004 (QRCode) - + IEC18004 (QR kods) + + + Australia Post Reply Paid + Austrālijas pasts, atbilde apmaksāta + + + Australia Post Route Code + Austrālijas pasts, maršruta kods + + + Australia Post Redirect + Austrālijas pasts, pārsūtīts + + + Aztec Code + Acteku kods + + + Aztec Rune + Acteku rūna + + + Code One + Kods viens + + + Code 11 + Kods 11 + + + Code 16K + Kods 16K + + + Code 2 of 5 Matrix + Kods 2 no 5 matrica + + + Code 2 of 5 IATA + Kods 2 no 5 IATA + + + Code 2 of 5 Data Logic + Kods 2 no 5 datu loģika + + + Code 32 (Italian Pharmacode) + Kods 32 (itāļu pharma kods) + + + Code 49 + Kods 49 + + + DAFT Code + DAFT kods + + + Data Matrix + Datu matrica + + + Deutsche Post Leitcode + Vācu pasta maršruta kods + + + Deutsche Post Identcode + Vācu pasta identitātes kods + + + Dutch Post KIX Code + Holandiešu pasta KIX kods + + + EAN + EAN + + + Grid Matrix + Režģa matrica + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 datu josla 14 + + + GS1 DataBar-14 Stacked + GS1 datu josla 14 kaudzē + + + GS1 DataBar-14 Stacked Omni. + GS1 datu josla 14 kaudzē Omni. + + + GS1 DataBar Extended Stacked + GS1 datu josla paplašināti kaudzē + + + HIBC Code 128 + HIBC kods 128 + + + HIBC Code 39 + HIBC kods 39 + + + HIBC Data Matrix + HIBC datu matrica + + + HIBC QR Code + HIBC QR kods + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC mikro PDF417 + + + HIBC Aztec Code + HIBC acteku kods + + + ITF-14 + ITF-14 + + + Japanese Postal + Japāņu pasta + + + Korean Postal + Korejiešu pasta + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Mikro PDF417 + + + Micro QR Code + Mikro QR kods + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 aprauts + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharma kods + + + Pharmacode 2-track + Pharma kods 2 celiņu + + + Pharmazentral Nummer (PZN) + Pharmazentral numurs (PZN) + + + QR Code + QR kods + + + Royal Mail 4-State + Karaliskā pasta 4 štatu + + + Telepen + Telepen + + + Telepen Numeric + Telepen ciparu + + + USPS One Code + USPS viens kods + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Nenosaukts @@ -2480,14 +2397,14 @@ Invalid barcode data - + Nederīgi svītrkoda dati glabels::model::ModelTextObject Text - + Teksts diff --git a/translations/glabels_nb.ts b/translations/glabels_nb.ts index 98b79c2..2116c87 100644 --- a/translations/glabels_nb.ts +++ b/translations/glabels_nb.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Oransje Butter @@ -132,7 +132,7 @@ Black - + Sort Very Dark Gray @@ -164,29 +164,25 @@ White - + Hvit Db Other - - - - Roll - + Øvrige Factory None - + Ingen Text: Comma Separated Values (CSV) - + Tekst: kommaseparerte verdier (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,8 @@ Text: Tab Separated Values (TSV) - + + Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +229,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diameter FrameRound diameter - + diameter @@ -257,7 +247,7 @@ Source - + Kilde Location @@ -265,11 +255,11 @@ Format: - + Format: Location: - + Lokasjon: Records @@ -277,11 +267,11 @@ Select all - + Velg alle Unselect all - + Velg bort alle @@ -292,11 +282,11 @@ Object properties - + Egenskaper for objekt Text - + Tekst Layout @@ -304,7 +294,7 @@ Alignment: - + Justering: Line spacing: @@ -324,7 +314,7 @@ None - + Ingen Allow printing to shrink text to fit object @@ -336,19 +326,19 @@ Family: - + Familie: Size: - + Størrelse: Style: - + Stil: Color: - + Farge: Editor @@ -356,11 +346,11 @@ Barcode - + Strekkode Style - + Stil Type: @@ -372,15 +362,15 @@ Checksum - + Sjekksum Barcode data - + Strekkodedata Image - + Bilde File @@ -404,15 +394,15 @@ Line - + Linje Width: - + Bredde: Fill - + Fyll Position/Size @@ -420,27 +410,27 @@ Position - + Posisjon X: - + X: Y: - + Y: Size - + Størrelse Length: - + Lengde: Angle: - + Vinkel: Original size: @@ -456,11 +446,11 @@ Height: - + Høyde: Shadow - + Skygge X offset: @@ -472,7 +462,8 @@ Opacity: - + + @@ -483,19 +474,20 @@ Locale - + Lokalitet Select locale specific behavior. - + + Units - + Enheter Points - + Punkter Centimeters @@ -503,11 +495,11 @@ Millimeters - + Millimeter Inches - + Tommer Picas @@ -521,13 +513,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Kopier + + + Copies: + Kopier: + Start on position: @@ -546,28 +550,18 @@ print crop marks - + + print in reverse (i.e. a mirror image) - + + Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +575,7 @@ Vendor: - + Forhandler: TextLabel @@ -589,23 +583,23 @@ Part #: - + Del #: Description: - + Beskrivelse: Page size: - + Sidestørrelse: Label size: - + Størrelse på etikett: Layout: - + Utforming: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +609,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +638,7 @@ Search all - + Søk i alle Search @@ -672,7 +658,7 @@ Other - + Øvrige Filter by category @@ -692,7 +678,7 @@ Recent - + Nylig Select from recently used products. @@ -757,36 +743,29 @@ 1. Outer radius: - + + 4. Clipping height: - + + 2. Inner radius: - + + 3. Clipping width: - + + 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +774,13 @@ 2. Height: - + + 1. Width: - + + 3. Waste: @@ -880,15 +861,16 @@ Brand: - + + Part #: - + Del #: Description: - + Beskrivelse: (e.g. 8163A) @@ -907,30 +889,35 @@ Number across (nx): - + + Number down (ny): - + + Distance from left edge (x0): - - - - Distance from top edge (y0): - + + Horizontal pitch (dx): - + + Vertical pitch (dy): - + + Print test sheet + Skriv ut testark + + + Distance from top edge (y0): @@ -941,31 +928,16 @@ - Roll width: - - - - Height: - + Page size: + Sidestørrelse: Width: - + Bredde: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Høyde: @@ -974,6 +946,16 @@ Form + + 2. Height: + + + + + 1. Width: + + + 4. Horizontal waste: @@ -983,29 +965,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +981,12 @@ 3. Margin - + 3. Marg 1. Radius: - + + 2. Waste: @@ -1034,19 +1001,22 @@ Rectangular or square (can have rounded corners) - + + Round - + + Elliptical - + Eliptisk CD/DVD (including credit card CDs) - + + @@ -1057,30 +1027,35 @@ Distance from left edge (x0): - + + Number down (ny): - - - - Distance from top edge (y0): - + + Number across (nx): - + + Horizontal pitch (dx): - + + Vertical pitch (dy): - + + Print test sheet + Skriv ut testark + + + Distance from top edge (y0): @@ -1088,23 +1063,23 @@ Units points - + punkter inches - + tommer mm - + mm cm - + cm picas - + picas @@ -1138,7 +1113,7 @@ Custom Color - + Egendefinert farge Custom color #%1 @@ -1184,18 +1159,18 @@ glabels::LabelEditor Move - + Flytt Delete - + Slett glabels::MainWindow Welcome - + Velkommen Edit @@ -1303,19 +1278,19 @@ Undo - + Angre Redo - + Gjenopprett Cut - + Klipp ut Cut the selection - + Klipp ut utvalget &Copy @@ -1323,7 +1298,7 @@ Copy the selection - + Kopier utvalget &Paste @@ -1331,7 +1306,7 @@ Paste the clipboard - + Lim inn utklippstavlen &Delete @@ -1339,7 +1314,7 @@ Delete the selected objects - + Slett valgte objekter Select &All @@ -1347,23 +1322,23 @@ Select all objects - + Velg alle objekter Un-select All - + Velg bort alle Remove all selections - + Fjern alle utvalg Preferences - + Brukervalg Configure the application - + Konfigurer programmet File @@ -1383,7 +1358,7 @@ Grid - + Rutenett Change visibility of the grid in current window @@ -1391,7 +1366,8 @@ Markup - + + Change visibility of markup lines in current window @@ -1403,7 +1379,7 @@ Increase magnification - + Øk forstørrelse Zoom &Out @@ -1411,7 +1387,7 @@ Decrease magnification - + Minsk forstørrelse Zoom &1 to 1 @@ -1419,7 +1395,7 @@ Restore scale to 100% - + Gjenopprett skalering til 100% Zoom to &Fit @@ -1427,63 +1403,66 @@ Set scale to fit window - + Sett skalering til å passe i vinduet Select Mode - + Velg modus Select, move and modify objects - + Velg, flytt og endre objekter Text - + Tekst Create text object - + Lag tekstobjekt Box - + Boks Create box object - + + Line - + Linje Create line object - + Lag linjeobjekt Ellipse - + Ellipse Create ellipse/circle object - + + Image - + Bilde Create image object - + Lag bildeobjekt Barcode - + Strekkode Create barcode object - + + Bring To Front @@ -1539,7 +1518,7 @@ Align objects to left edges - + Juster objekter til venstre kant Align Center @@ -1547,7 +1526,8 @@ Align objects to horizontal centers - + + Align Right @@ -1555,7 +1535,8 @@ Align objects to right edges - + + Align Top @@ -1563,7 +1544,8 @@ Align objects to top edges - + + Align Middle @@ -1571,7 +1553,8 @@ Align objects to vertical centers - + + Align Bottom @@ -1579,7 +1562,8 @@ Align objects to bottom edges - + + Center Horizontally @@ -1659,7 +1643,7 @@ (modified) - + (endret) Save changes to project "%1" before closing? @@ -1667,7 +1651,7 @@ Your changes will be lost if you don't save them. - + Endringene dine vil gå tapt hvis du ikke lagrer dem. Save project? @@ -1675,11 +1659,11 @@ Paste - + Lim inn Delete - + Slett Create Text @@ -1733,7 +1717,7 @@ Default - + Forvalgt Insert Field @@ -1749,7 +1733,7 @@ Box object properties - + Egenskaper for boksobjekt line/fill @@ -1765,11 +1749,11 @@ Ellipse object properties - + Egenskaper for ellipseobjekt Image object properties - + Egenskaper for bildeobjekt image @@ -1777,11 +1761,11 @@ Line object properties - + Egenskaper for linjeobjekt Text object properties - + Egenskaper for tekstobjekt text @@ -1789,7 +1773,7 @@ Barcode object properties - + Egenskaper for strekkodeobjekt barcode @@ -1797,15 +1781,15 @@ Object properties - + Egenskaper for objekt Line - + Linje Fill - + Fyll Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1845,23 @@ Set image - + Sett bilde Move - + Flytt Size - + Størrelse Text - + Tekst Shadow - + Skygge @@ -1910,7 +1894,7 @@ glabels::SimplePreview Up - + Opp @@ -1919,13 +1903,9 @@ Product Template Designer - - Roll - - Copy - + Kopier @@ -1958,17 +1938,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1953,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Velkommen Welcome to the gLabels Product Template Designer. @@ -1995,7 +1964,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Antall utforminger Please select the number of layouts required. @@ -2006,7 +1975,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Navn og beskrivelse Please enter the following identifying information about the product. @@ -2032,7 +2001,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Sidestørrelse Please select the product page size. @@ -2040,22 +2009,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Øvrige @@ -2106,39 +2060,47 @@ glabels::barcode::Backends Code 39 - + + Code 39 Extended - + + UPC-A - + + EAN-13 - + + POSTNET (any) - + POSTNET (alle) POSTNET-5 (ZIP only) - + + POSTNET-9 (ZIP+4) - + + POSTNET-11 (DPBC) - + + CEPNET - + + USPS Intelligent Mail @@ -2146,15 +2108,18 @@ IEC16022 (DataMatrix) - + + EAN (any) - + + EAN-8 - + + EAN-8+2 @@ -2174,302 +2139,365 @@ UPC (UPC-A or UPC-E) - + + UPC-A +2 - + + UPC-A +5 - + + UPC-E - + + UPC-E +2 - + + UPC-E +5 - + + ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + + Code 128C - + + Code 128B - + + Interleaved 2 of 5 - + + Codabar - + + MSI - + MSI Plessey - + + Code 93 - + + IEC18004 (QRCode) - + + + + + Australia Post Reply Paid + + + + + Australia Post Route Code + + + + + Australia Post Redirect + + + + + Aztec Code + + + + + Aztec Rune + + + + + Code One + + + + + Code 11 + + + + + Code 16K + + + + + Code 2 of 5 Matrix + + + + + Code 2 of 5 IATA + + + + + Code 2 of 5 Data Logic + + + + + Code 32 (Italian Pharmacode) + + + + + Code 49 + + + + + DAFT Code + + + + + Data Matrix + + + + + Deutsche Post Leitcode + + + + + Deutsche Post Identcode + + + + + Dutch Post KIX Code + + + + + EAN + + + + + Grid Matrix + + + + + GS1-128 + + + + + GS1 DataBar-14 + + + + + GS1 DataBar-14 Stacked + + + + + GS1 DataBar-14 Stacked Omni. + + + + + GS1 DataBar Extended Stacked + + + + + HIBC Code 128 + + + + + HIBC Code 39 + + + + + HIBC Data Matrix + + + + + HIBC QR Code + + + + + HIBC PDF417 + + + + + HIBC Micro PDF417 + + + + + HIBC Aztec Code + + + + + ITF-14 + + + + + Japanese Postal + + + + + Korean Postal + + + + + LOGMARS + + + + + Maxicode + Strekkode + + + Micro PDF417 + + + + + Micro QR Code + + + + + MSI Plessey + + + + + NVE-18 + + + + + PDF417 + + + + + PDF417 Truncated + + + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Strekkode + + + Pharmacode 2-track + + + + + Pharmazentral Nummer (PZN) + + + + + QR Code + + + + + Royal Mail 4-State + + + + + Telepen + Slett + + + Telepen Numeric + + + + + USPS One Code + + + + + UK Plessey + + Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Uten navn @@ -2480,14 +2508,15 @@ Invalid barcode data - + + glabels::model::ModelTextObject Text - + Tekst diff --git a/translations/glabels_nl.ts b/translations/glabels_nl.ts index 982bcef..b5f323b 100644 --- a/translations/glabels_nl.ts +++ b/translations/glabels_nl.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Oranje Butter @@ -132,7 +132,7 @@ Black - + Zwart Very Dark Gray @@ -164,29 +164,25 @@ White - + Wit Db Other - - - - Roll - + Overig Factory None - + Geen Text: Comma Separated Values (CSV) - + Tekst: Waarden gescheiden door komma's (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Waarden gescheiden door tabs (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + Diameter FrameRound diameter - + Diameter @@ -257,7 +246,7 @@ Source - + Bron Location @@ -265,11 +254,11 @@ Format: - + Formaat: Location: - + Locatie: Records @@ -277,11 +266,11 @@ Select all - + Alles selecteren Unselect all - + Alles deselecteren @@ -292,11 +281,11 @@ Object properties - + Object eigenschappen Text - + Tekst Layout @@ -304,7 +293,7 @@ Alignment: - + Uitlijning: Line spacing: @@ -324,7 +313,7 @@ None - + Geen Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Familie: Size: - + Grootte: Style: - + Stijl: Color: - + Kleur: Editor @@ -356,11 +345,11 @@ Barcode - + Streepjescode Style - + Stijl Type: @@ -372,15 +361,15 @@ Checksum - + Controlesom Barcode data - + Streepjescodedata Image - + Afbeelding File @@ -404,15 +393,15 @@ Line - + Lijn Width: - + Breedte: Fill - + Vullen Position/Size @@ -420,27 +409,27 @@ Position - + Positie X: - + X: Y: - + Y: Size - + Grootte Length: - + Lengte: Angle: - + Hoek: Original size: @@ -456,11 +445,11 @@ Height: - + Hoogte: Shadow - + Schaduw X offset: @@ -472,7 +461,7 @@ Opacity: - + Doorschijnendheid: @@ -483,19 +472,19 @@ Locale - + Taalinstelling Select locale specific behavior. - + Taalspecifieke gegevens kiezen. Units - + Eenheden Points - + Punten Centimeters @@ -503,11 +492,11 @@ Millimeters - + Millimeter Inches - + Duim Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Kopieën + + + Copies: + Kopieën: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + Snijmarkeringen printen print in reverse (i.e. a mirror image) - + achteruit printen (d.w.z. in spiegelbeeld) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Leverancier: TextLabel @@ -589,23 +578,23 @@ Part #: - + Bestelnummer: Description: - + Beschrijving: Page size: - + Paginagrootte: Label size: - + Labelgrootte: Layout: - + Lay-out: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Alles doorzoeken Search @@ -672,7 +653,7 @@ Other - + Overig Filter by category @@ -692,7 +673,7 @@ Recent - + Recent Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Buitenradius: 4. Clipping height: - + 4. Kniphoogte: 2. Inner radius: - + 2. Binnenradius: 3. Clipping width: - + 3. Knipbreedte: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Hoogte: 1. Width: - + 1. Breedte: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Merk: Part #: - + Bestelnummer: Description: - + Beschrijving: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Aantal horizontaal Number down (ny): - + Aantal verticaal Distance from left edge (x0): - - - - Distance from top edge (y0): - + Afstand van het linkerrand (x0): Horizontal pitch (dx): - + Horizontale afstand (dx): Vertical pitch (dy): - + Verticale afstand (dy): Print test sheet + Testpagina afdrukken + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Paginagrootte: Width: - + Breedte: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Hoogte: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Hoogte: + + + 1. Width: + 1. Breedte: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Rand 1. Radius: - + 1. Radius: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Rechthoekig of vierkant (kan afgeronde hoeken hebben) Round - + Rond Elliptical - + Elliptisch CD/DVD (including credit card CDs) - + CD/DVD (ook credit card CDs) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Afstand van het linkerrand (x0): Number down (ny): - - - - Distance from top edge (y0): - + Aantal verticaal Number across (nx): - + Aantal horizontaal Horizontal pitch (dx): - + Horizontale afstand (dx): Vertical pitch (dy): - + Verticale afstand (dy): Print test sheet + Testpagina afdrukken + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + punten inches - + duimen mm - + mm cm - + cm picas - + picas @@ -1138,7 +1085,7 @@ Custom Color - + Aangepaste kleur Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Verplaatsen Delete - + Verwijderen glabels::MainWindow Welcome - + Welkom Edit @@ -1303,19 +1250,19 @@ Undo - + Ongedaan maken Redo - + Opnieuw Cut - + Knippen Cut the selection - + De selectie knippen &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + De selectie kopiëren &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Het klembord plakken &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Geselecteerde objecten verwijderen Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Alle objecten selecteren Un-select All - + Alles deselecteren Remove all selections - + Alle selecties verwijderen Preferences - + Voorkeuren Configure the application - + Toepassing configureren File @@ -1383,7 +1330,7 @@ Grid - + Rooster Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Markering Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Vergroten Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Verkleinen Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + 100% zoomen Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Inpassen in venster Select Mode - + Modus kiezen Select, move and modify objects - + Objecten selecteren, bewegen en veranderen Text - + Tekst Create text object - + Tekst-object aanmaken Box - + Blok Create box object - + Blok-object aanmaken Line - + Lijn Create line object - + Lijn-object aanmaken Ellipse - + Ellips Create ellipse/circle object - + Ellips/circle-object aanmaken Image - + Afbeelding Create image object - + Beeld-object aanmaken Barcode - + Streepjescode Create barcode object - + Streepjescode-object aanmaken Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Objecten aan het linkerrand uitlijnen Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Objecten horizontaal in het midden uitlijnen Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Objecten aan het rechterrand uitlijnen Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Objecten aan de bovenrand uitlijnen Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Objecten verticaal in het midden uitlijnen Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Objecten aan de onderrand uitlijnen Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (gewijzigd) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Als u niet opslaat, gaan alle wijzingen verloren. Save project? @@ -1675,11 +1622,11 @@ Paste - + Plakken Delete - + Verwijderen Create Text @@ -1733,7 +1680,7 @@ Default - + Standaard Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Eigenschappen van blok-object line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Eigenschappen van ellips-object Image object properties - + Eigenschappen van beeld-object image @@ -1777,11 +1724,11 @@ Line object properties - + Eigenschappen van lijn-object Text object properties - + Eigenschappen van tekst-object text @@ -1789,7 +1736,7 @@ Barcode object properties - + Eigenschappen van streepjescode-object barcode @@ -1797,15 +1744,15 @@ Object properties - + Object eigenschappen Line - + Lijn Fill - + Vullen Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Beeld instellen Move - + Verplaatsen Size - + Grootte Text - + Tekst Shadow - + Schaduw @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Omhoog @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Kopiëren @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Welkom Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Aantal layouts Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Beschrijving en naam Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Pagina-afmeting Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Overig @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 Uitgebreid UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (willekeurig) POSTNET-5 (ZIP only) - + POSTNET-5 (alleen ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (willekeurig) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A of UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Interleaved 2 van 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Australia Post Antwoord betaald + + + Australia Post Route Code + Australia Post Route Code + + + Australia Post Redirect + Australia Post Redirect + + + Aztec Code + Aztec Code + + + Aztec Rune + Aztec Rune + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + Code 2 van 5 Matrix + + + Code 2 of 5 IATA + Code 2 van 5 IATA + + + Code 2 of 5 Data Logic + Code 2 van 5 Data Logic + + + Code 32 (Italian Pharmacode) + Code 32 (Italiaanse Pharmacode) + + + Code 49 + Code 49 + + + DAFT Code + DAFT Code + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + Nederlandse post KIX Code + + + EAN + EAN + + + Grid Matrix + Rastermatrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Stacked + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Stacked Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar Uitgebreid Stacked + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + HIBC Data Matrix + + + HIBC QR Code + HIBC QR Code + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + Japanse Post + + + Korean Postal + Koreaanse Post + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 Truncated + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR Code + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen Numeriek + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Naamloos @@ -2480,14 +2397,14 @@ Invalid barcode data - + Ongeldige streepjescode-data glabels::model::ModelTextObject Text - + Tekst diff --git a/translations/glabels_oc.ts b/translations/glabels_oc.ts index 6ce0aee..304b91d 100644 --- a/translations/glabels_oc.ts +++ b/translations/glabels_oc.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Iranjat Butter @@ -132,7 +132,7 @@ Black - + Negre Very Dark Gray @@ -164,29 +164,25 @@ White - + Blanc Db Other - - - - Roll - + Autre Factory None - + Pas cap Text: Comma Separated Values (CSV) - + Tèxte : valors separadas per de virgulas (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Tèxte : valors separadas per de tabulacions (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diamètre FrameRound diameter - + diamètre @@ -257,7 +246,7 @@ Source - + Font Location @@ -265,11 +254,11 @@ Format: - + Format : Location: - + Emplaçament : Records @@ -277,11 +266,11 @@ Select all - + Seleccionar tot Unselect all - + Deseleccionar tout @@ -292,11 +281,11 @@ Object properties - + Proprietats de l'objècte Text - + Tèxte Layout @@ -304,7 +293,7 @@ Alignment: - + Alinhament : Line spacing: @@ -324,7 +313,7 @@ None - + Pas cap Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Familha : Size: - + Talha : Style: - + Estil : Color: - + Color : Editor @@ -356,11 +345,11 @@ Barcode - + Còdi barras Style - + Estil Type: @@ -372,15 +361,15 @@ Checksum - + Soma de contraròtle Barcode data - + Donadas de còdi barras Image - + Imatge File @@ -404,15 +393,15 @@ Line - + Linha Width: - + Largor : Fill - + Emplenatge Position/Size @@ -420,27 +409,27 @@ Position - + Posicion X: - + X : Y: - + Y : Size - + Talha Length: - + Longor : Angle: - + Angle : Original size: @@ -456,11 +445,11 @@ Height: - + Nautor : Shadow - + Ombra X offset: @@ -472,7 +461,7 @@ Opacity: - + Opacitat : @@ -483,19 +472,19 @@ Locale - + Paramètres regionals Select locale specific behavior. - + Seleccionatz los paramètres correspondents a vòstra region. Units - + Unitats Points - + Punts Centimeters @@ -503,11 +492,11 @@ Millimeters - + Millimètres Inches - + Poces Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Còpias + + + Copies: + Còpias : + Start on position: @@ -546,28 +547,16 @@ print crop marks - + imprimir los guidas de talh print in reverse (i.e. a mirror image) - + imprimir a l'envèrs (i.e. un imatge miralh) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Fabricant : TextLabel @@ -589,23 +578,23 @@ Part #: - + N° Ref : Description: - + Descripcion : Page size: - + Talha de pagina : Label size: - + Talha d'etiqueta : Layout: - + Disposicion : <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Recèrca globala Search @@ -672,7 +653,7 @@ Other - + Autre Filter by category @@ -692,7 +673,7 @@ Recent - + Utilizacion recenta Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Rai exterior : 4. Clipping height: - + 4. Nautor de decopa : 2. Inner radius: - + 2. Rai interior : 3. Clipping width: - + 3. Largor de decopa : 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Nautor : 1. Width: - + 1. Largor : 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Marca : Part #: - + N° Ref : Description: - + Descripcion : (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Nombre sus la largor (nx) : Number down (ny): - + Nombre sus la nautor (ny) : Distance from left edge (x0): - - - - Distance from top edge (y0): - + Distància per rapòrt al bòrd esquèrra (x0) : Horizontal pitch (dx): - + Espaçament orizontal (dx) : Vertical pitch (dy): - + Espaçament vertical (dy) : Print test sheet + Imprimir una pagina tèst + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Talha de pagina : Width: - + Largor : - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Nautor : @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Nautor : + + + 1. Width: + 1. Largor : + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Marge 1. Radius: - + 1. Rai : 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Rectangular o carrat (eventualament amb bòrds arredondits) Round - + Circular Elliptical - + Elliptic CD/DVD (including credit card CDs) - + CD/DVD (incluses CD al format carta de crèdit) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Distància per rapòrt al bòrd esquèrra (x0) : Number down (ny): - - - - Distance from top edge (y0): - + Nombre sus la nautor (ny) : Number across (nx): - + Nombre sus la largor (nx) : Horizontal pitch (dx): - + Espaçament orizontal (dx) : Vertical pitch (dy): - + Espaçament vertical (dy) : Print test sheet + Imprimir una pagina tèst + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + punts inches - + poces mm - + mm cm - + cm picas - + picas @@ -1138,7 +1085,7 @@ Custom Color - + Color personalizada Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Desplaçar Delete - + Suprimir glabels::MainWindow Welcome - + Benvenguda Edit @@ -1303,19 +1250,19 @@ Undo - + Anullar Redo - + Restablir Cut - + Talhar Cut the selection - + Talha la seleccion &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Còpia la seleccion &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Pega lo quichapapièrs &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Suprimís los objèctes seleccionats Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Selecciona totes los objèctes Un-select All - + Deseleccionar tot Remove all selections - + Anulla totas las seleccions Preferences - + Preferéncias Configure the application - + Configura lo logicial File @@ -1383,7 +1330,7 @@ Grid - + Grasilha Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Marges Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Aumenta la talha Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Demesís la talha Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Remet l'escala a 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Adapta l'escala a la talha de la fenèstra Select Mode - + Mòde seleccion Select, move and modify objects - + Selecciona, desplaça e modifica los objèctes Text - + Tèxte Create text object - + Crèa un objècte tèxte Box - + Bóstia Create box object - + Crear un objècte bóstia Line - + Linha Create line object - + Crèa un objècte linha Ellipse - + Ellipsa Create ellipse/circle object - + Crèa un objècte ellipsa/cercle Image - + Imatge Create image object - + Crèa un objècte imatge Barcode - + Còdi barras Create barcode object - + Crèa un objècte còdi barras Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Alinha los costats d'esquèrra dels objèctes Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Alinha orizontalament los centres dels objèctes Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Alinha los costats de dreita dels objèctes Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Alinha los soms dels objèctes Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Alinha verticalament los centres dels objèctes Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Alinha las basas dels objèctes Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (modificat) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Vòstres cambiaments seràn perduts se los enregistratz pas. Save project? @@ -1675,11 +1622,11 @@ Paste - + Pegar Delete - + Suprimir Create Text @@ -1733,7 +1680,7 @@ Default - + Per defaut Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Proprietats de l'objècte bóstia line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Proprietats de l'objècte ellipse Image object properties - + Proprietats de l'objècte imatge image @@ -1777,11 +1724,11 @@ Line object properties - + Proprietats de l'objècte linha Text object properties - + Proprietats de l'objècte tèxte text @@ -1789,7 +1736,7 @@ Barcode object properties - + Proprietats de l'objècte còdi barras barcode @@ -1797,15 +1744,15 @@ Object properties - + Proprietats de l'objècte Line - + Linha Fill - + Emplenatge Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Definir l'imatge Move - + Desplaçar Size - + Talha Text - + Tèxte Shadow - + Ombra @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Naut @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Copiar @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Benvenguda Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Nombre de disposicions Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nom e descripcion Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Talha de pagina Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Autre @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Còdi 39 Code 39 Extended - + Còdi 39 Espandit UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (tous) POSTNET-5 (ZIP only) - + POSTNET-5 (solament ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (totes) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A o UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Còdi 128 Code 128C - + Còdi 128C Code 128B - + Còdi 128B Interleaved 2 of 5 - + Entrelaçat 2 de 5 Codabar - + Còdi barras MSI - + MSI Plessey - + Plessey Code 93 - + Còdi 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Pòsta australiana Reply Paid + + + Australia Post Route Code + Còdi australian Post Route + + + Australia Post Redirect + Pòsta australiana Redirect + + + Aztec Code + Còdi Aztèc + + + Aztec Rune + Runa Aztèc + + + Code One + Còdi One + + + Code 11 + Còdi 11 + + + Code 16K + Còdi 16K + + + Code 2 of 5 Matrix + Còdi 2 per 5 Matrix + + + Code 2 of 5 IATA + Còdi 2 per 5 IATA + + + Code 2 of 5 Data Logic + Còdi 2 per 5 Data Logic + + + Code 32 (Italian Pharmacode) + Còdi 32 (Farmacòdi italian) + + + Code 49 + Còdi 49 + + + DAFT Code + Còdi DAFT + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Pòsta alemanda Leitcode + + + Deutsche Post Identcode + Pòsta alemanda Identcode + + + Dutch Post KIX Code + Còdi postal neerlandés KIX + + + EAN + EAN + + + Grid Matrix + Grid Matrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 empilat + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 empilat omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar empilat espandit + + + HIBC Code 128 + Còdi 128 HIBC + + + HIBC Code 39 + Còdi 39 HIBC + + + HIBC Data Matrix + Data Matrix HIBC + + + HIBC QR Code + Còdi HIBC QR + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + Còdi Aztèc HIBC + + + ITF-14 + ITF-14 + + + Japanese Postal + Pòsta japonesa + + + Korean Postal + Pòsta coreana + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 troncat + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Farmacòdi + + + Pharmacode 2-track + Farmacòdi 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + Còdi QR + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen Numeric + + + USPS One Code + Còdi USPS One + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Sens títol @@ -2480,14 +2397,14 @@ Invalid barcode data - + Donadas de còdi barras invalidas glabels::model::ModelTextObject Text - + Tèxte diff --git a/translations/glabels_pt.ts b/translations/glabels_pt.ts index 6235f59..3dc9e95 100644 --- a/translations/glabels_pt.ts +++ b/translations/glabels_pt.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Laranja Butter @@ -132,7 +132,7 @@ Black - + Preto Very Dark Gray @@ -164,29 +164,25 @@ White - + Branco Db Other - - - - Roll - + Outro Factory None - + Nenhum Text: Comma Separated Values (CSV) - + Texto: valores separados por vírgulas (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Texto: valores separados por tabulações (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diâmetro FrameRound diameter - + diâmetro @@ -257,7 +246,7 @@ Source - + Origem Location @@ -265,11 +254,11 @@ Format: - + Formato: Location: - + Localização: Records @@ -277,11 +266,11 @@ Select all - + Selecionar tudo Unselect all - + Remover todas as seleções @@ -292,11 +281,11 @@ Object properties - + Propriedades de objeto Text - + Texto Layout @@ -304,7 +293,7 @@ Alignment: - + Alinhamento: Line spacing: @@ -324,7 +313,7 @@ None - + Nenhum Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Família: Size: - + Tamanho: Style: - + Estilo: Color: - + Cor: Editor @@ -356,11 +345,11 @@ Barcode - + Código de barras Style - + Estilo Type: @@ -372,15 +361,15 @@ Checksum - + Soma de verificação Barcode data - + Dados do código de barras Image - + Imagem File @@ -404,15 +393,15 @@ Line - + Linha Width: - + Largura: Fill - + Preencher Position/Size @@ -420,27 +409,27 @@ Position - + Posição X: - + X: Y: - + Y: Size - + Tamanho Length: - + Comprimento: Angle: - + Ângulo: Original size: @@ -456,11 +445,11 @@ Height: - + Altura: Shadow - + Sombra X offset: @@ -472,7 +461,7 @@ Opacity: - + Opacidade: @@ -483,19 +472,19 @@ Locale - + Configuração regional Select locale specific behavior. - + Selecione comportamento específico regional. Units - + Unidades Points - + Pontos Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milímetros Inches - + Polegadas Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Cópias: + + + Copies: + Cópias: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + imprimir marcas de cortes print in reverse (i.e. a mirror image) - + imprimir ao contrário (como uma imagem de espelho) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Vendedor: TextLabel @@ -589,23 +578,23 @@ Part #: - + Série #: Description: - + Descrição: Page size: - + Tamanho da página: Label size: - + Tamanho da etiqueta: Layout: - + Disposição: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Procurar todos Search @@ -672,7 +653,7 @@ Other - + Outro Filter by category @@ -692,7 +673,7 @@ Recent - + Recente Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Raio exterior: 4. Clipping height: - + 4. Altura de corte: 2. Inner radius: - + 2. Raio interior: 3. Clipping width: - + 3. Largura de corte: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Altura: 1. Width: - + 1. Largura: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Marca: Part #: - + Série #: Description: - + Descrição: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Número de colunas (nx): Number down (ny): - + Número de linhas (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Distância da margem esquerda (x0): Horizontal pitch (dx): - + Espaçamento horizontal (dx): Vertical pitch (dy): - + Espaçamento vertical (dy): Print test sheet + Imprimir folha de teste + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Tamanho da página: Width: - + Largura: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Altura: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Altura: + + + 1. Width: + 1. Largura: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Margem 1. Radius: - + 1. Raio: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Retangular ou quadrado (pode ter cantos redondos) Round - + Redondo Elliptical - + Elíptico CD/DVD (including credit card CDs) - + CD/DVD (incluindo mini CDs) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Distância da margem esquerda (x0): Number down (ny): - - - - Distance from top edge (y0): - + Número de linhas (ny): Number across (nx): - + Número de colunas (nx): Horizontal pitch (dx): - + Espaçamento horizontal (dx): Vertical pitch (dy): - + Espaçamento vertical (dy): Print test sheet + Imprimir folha de teste + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + pontos inches - + polegadas mm - + mm cm - + cm picas - + picas @@ -1138,7 +1085,7 @@ Custom Color - + Cor personalizada Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Mover Delete - + Eliminar glabels::MainWindow Welcome - + Bem-vindo Edit @@ -1303,19 +1250,19 @@ Undo - + Desfazer Redo - + Refazer Cut - + Cortar Cut the selection - + Corta a seleção &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Copia a seleção &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Colar a área de transferência &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Elimina os objetos selecionados Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Seleciona todos os objetos Un-select All - + Remover todas as seleções Remove all selections - + Remove todas as seleções Preferences - + Preferências Configure the application - + Configurar a aplicação File @@ -1383,7 +1330,7 @@ Grid - + Grelha Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Marcação Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Aumentar ampliação Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Diminuir ampliação Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Restaura escala para 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Definir a escala para caber na janela Select Mode - + Selecionar modo Select, move and modify objects - + Seleciona, move e modifica objetos Text - + Texto Create text object - + Criar objeto de texto Box - + Caixa Create box object - + Criar objeto de caixa Line - + Linha Create line object - + Criar objeto de linha Ellipse - + Elipse Create ellipse/circle object - + Criar objeto elipse/círculo Image - + Imagem Create image object - + Criar objeto de imagem Barcode - + Código de barras Create barcode object - + Criar código de barras Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Alinhar pela margem esquerda Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Alinhar objetos pelos centros horizontais Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Alinhar pela margem direita Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Alinhar objetos pela margem superior Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Alinhar objetos pelos centros verticais Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Alinhar objetos pela margem inferior Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (modificado) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + As suas modificações serão perdidas se não as gravar. Save project? @@ -1675,11 +1622,11 @@ Paste - + Colar Delete - + Eliminar Create Text @@ -1733,7 +1680,7 @@ Default - + Predefinição Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Propriedades do objeto caixa line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Propriedades do objeto elipse Image object properties - + Propriedades do objeto imagem image @@ -1777,11 +1724,11 @@ Line object properties - + Propriedades do objeto linha Text object properties - + Propriedades do objeto texto text @@ -1789,7 +1736,7 @@ Barcode object properties - + Propriedades do objeto código de barras barcode @@ -1797,15 +1744,15 @@ Object properties - + Propriedades de objeto Line - + Linha Fill - + Preencher Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Definir imagem Move - + Mover Size - + Tamanho Text - + Texto Shadow - + Sombra @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Acima @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Copiar @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Bem-vindo Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Número de disposições Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nome e descrição Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Tamanho da página Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Outro @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Código 39 Code 39 Extended - + Código 39 estendido UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (qualquer) POSTNET-5 (ZIP only) - + POSTNET-5 (só ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (qualquer) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A ou UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Código 128 Code 128C - + Código 128C Code 128B - + Código 128B Interleaved 2 of 5 - + Interleaved 2 of 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Código 39 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Australia Post resposta paga + + + Australia Post Route Code + Australia Post código de estrada + + + Australia Post Redirect + Australia Post redirecionado + + + Aztec Code + Código Azteca + + + Aztec Rune + Runa Azteca + + + Code One + Código um + + + Code 11 + Código 11 + + + Code 16K + Código 16K + + + Code 2 of 5 Matrix + Código matriz 2 de 5 + + + Code 2 of 5 IATA + 2 de 5 IATA + + + Code 2 of 5 Data Logic + Código 2 de 5 Data Logic + + + Code 32 (Italian Pharmacode) + Código 32 (Pharmacode italiano) + + + Code 49 + Código 49 + + + DAFT Code + Código DAFT + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + Dutch Post KIX Code + + + EAN + EAN + + + Grid Matrix + Matriz de grelha + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 empilhado + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 empilhado Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar empilhado estendido + + + HIBC Code 128 + Código 128 HIBC + + + HIBC Code 39 + Código 39 HIBC + + + HIBC Data Matrix + HIBC Data Matrix + + + HIBC QR Code + Código QR HIBC + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + Código Azteca HIBC + + + ITF-14 + ITF-14 + + + Japanese Postal + Postal Japonês + + + Korean Postal + Postal Coreano + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Código Micro QR + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 truncado + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + Código QR + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen numérico + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Sem título @@ -2480,14 +2397,14 @@ Invalid barcode data - + Dados do código de barras inválidos glabels::model::ModelTextObject Text - + Texto diff --git a/translations/glabels_pt_BR.ts b/translations/glabels_pt_BR.ts index 6235f59..147a118 100644 --- a/translations/glabels_pt_BR.ts +++ b/translations/glabels_pt_BR.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Laranja Butter @@ -132,7 +132,7 @@ Black - + Preto Very Dark Gray @@ -164,29 +164,25 @@ White - + Branco Db Other - - - - Roll - + Outro Factory None - + Nenhum Text: Comma Separated Values (CSV) - + Texto: valores separados por vírgula (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Texto: valores separados por tabulação (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diâmetro FrameRound diameter - + diâmetro @@ -257,7 +246,7 @@ Source - + Fonte Location @@ -265,11 +254,11 @@ Format: - + Formato: Location: - + Localização: Records @@ -277,11 +266,11 @@ Select all - + Selecionar tudo Unselect all - + Desmarcar tudo @@ -292,11 +281,11 @@ Object properties - + Propriedades do objeto Text - + Texto Layout @@ -304,7 +293,7 @@ Alignment: - + Alinhamento: Line spacing: @@ -324,7 +313,7 @@ None - + Nenhum Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Família: Size: - + Tamanho: Style: - + Estilo: Color: - + Cor: Editor @@ -356,11 +345,11 @@ Barcode - + Código de barras Style - + Estilo Type: @@ -372,15 +361,15 @@ Checksum - + Soma de verificação Barcode data - + Dados do código de barras Image - + Imagem File @@ -404,15 +393,15 @@ Line - + Linha Width: - + Largura: Fill - + Preencher Position/Size @@ -420,27 +409,27 @@ Position - + Posição X: - + X: Y: - + Y: Size - + Tamanho Length: - + Comprimento: Angle: - + Ângulo: Original size: @@ -456,11 +445,11 @@ Height: - + Altura: Shadow - + Sombra X offset: @@ -472,7 +461,7 @@ Opacity: - + Opacidade: @@ -483,19 +472,19 @@ Locale - + Localidade Select locale specific behavior. - + Selecione comportamento específico do localidade. Units - + Unidades Points - + Pontos Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milímetros Inches - + Polegadas Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Cópias + + + Copies: + Cópias: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + imprime marcas de corte print in reverse (i.e. a mirror image) - + imprimir ao contrário (como uma imagem de espelho) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Fabricante: TextLabel @@ -589,23 +578,23 @@ Part #: - + Parte #: Description: - + Descrição: Page size: - + Tamanho da página: Label size: - + Tamanho da etiqueta: Layout: - + Disposição: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Buscar todos Search @@ -672,7 +653,7 @@ Other - + Outro Filter by category @@ -692,7 +673,7 @@ Recent - + Recente Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Raio externo: 4. Clipping height: - + 4. Altura do corte: 2. Inner radius: - + 2. Raio interno: 3. Clipping width: - + 3. Largura do corte: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Altura: 1. Width: - + 1. Largura: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Marca: Part #: - + Parte #: Description: - + Descrição: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Número de colunas (nx): Number down (ny): - + Número de linhas (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Distância da borda esquerda (x0): Horizontal pitch (dx): - + Deslocamento horizontal (dx): Vertical pitch (dy): - + Deslocamento vertical (dy): Print test sheet + Imprime folha de teste + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Tamanho da página: Width: - + Largura: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Altura: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Altura: + + + 1. Width: + 1. Largura: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Margem 1. Radius: - + 1. Raio: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Retangular ou quadrado (pode possuir bordas arredondadas) Round - + Arredondado Elliptical - + Elíptico CD/DVD (including credit card CDs) - + CD/DVD (incluindo CDs cartões de crédito) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Distância da borda esquerda (x0): Number down (ny): - - - - Distance from top edge (y0): - + Número de linhas (ny): Number across (nx): - + Número de colunas (nx): Horizontal pitch (dx): - + Deslocamento horizontal (dx): Vertical pitch (dy): - + Deslocamento vertical (dy): Print test sheet + Imprime folha de teste + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + pontos inches - + polegadas mm - + mm cm - + cm picas - + paicas @@ -1138,7 +1085,7 @@ Custom Color - + Cor personalizada Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Mover Delete - + Excluir glabels::MainWindow Welcome - + Bem-vindo Edit @@ -1303,19 +1250,19 @@ Undo - + Desfazer Redo - + Refazer Cut - + Cortar Cut the selection - + Corta a seleção &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Copia a seleção &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Cola a área de transferência &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Apaga os objetos selecionados Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Seleciona todos os objetos Un-select All - + Desmarcar tudo Remove all selections - + Remover todas as seleções Preferences - + Preferências Configure the application - + Configurar o aplicativo File @@ -1383,7 +1330,7 @@ Grid - + Grade Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Marcação Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Aumentar ampliação Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Diminuir ampliação Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Restaurar escala para 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Definir a escala para caber na janela Select Mode - + Selecionar modo Select, move and modify objects - + Seleciona, movimenta e modifica objetos Text - + Texto Create text object - + Criar objeto texto Box - + Caixa Create box object - + Criar objeto caixa Line - + Linha Create line object - + Criar objeto linha Ellipse - + Elipse Create ellipse/circle object - + Criar objeto elipse/círculo Image - + Imagem Create image object - + Criar objeto imagem Barcode - + Código de barras Create barcode object - + Criar objeto código de barras Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Alinha objetos pelas bordas esquerdas Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Alinha objetos pelos centros horizontais Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Alinha objetos pelas bordas direitas Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Alinha objetos pelas bordas superiores Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Alinha objetos pelos centros verticais Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Alinha objetos pelas bordas inferiores Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (modificado) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Suas modificações serão perdidas se você não salvá-las. Save project? @@ -1675,11 +1622,11 @@ Paste - + Colar Delete - + Excluir Create Text @@ -1733,7 +1680,7 @@ Default - + Padrão Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Propriedades do objeto caixa line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Propriedades do objeto elipse Image object properties - + Propriedades do objeto imagem image @@ -1777,11 +1724,11 @@ Line object properties - + Propriedades do objeto linha Text object properties - + Propriedades do objeto texto text @@ -1789,7 +1736,7 @@ Barcode object properties - + Propriedades do objeto código de barras barcode @@ -1797,15 +1744,15 @@ Object properties - + Propriedades do objeto Line - + Linha Fill - + Preencher Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Define a imagem Move - + Mover Size - + Tamanho Text - + Texto Shadow - + Sombra @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Acima @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Copiar @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Bem-vindo Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Número de disposições Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nome e descrição Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Tamanho da página Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Outro @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 Estendido UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (qualquer) POSTNET-5 (ZIP only) - + POSTNET-5 (somente ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (qualquer) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A ou UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + 2 de 5 intercalado Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Postagem Reply Paid da Austrália + + + Australia Post Route Code + Postagem Route Code da Austrália + + + Australia Post Redirect + Postagem Redirect da Austrália + + + Aztec Code + Código Aztec + + + Aztec Rune + Rune Aztec + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + Code 2 de 5 Matrix + + + Code 2 of 5 IATA + Code 2 de 5 IATA + + + Code 2 of 5 Data Logic + Code 2 de 5 Data Logic + + + Code 32 (Italian Pharmacode) + Code 32 (Pharmacode italiano) + + + Code 49 + Code 49 + + + DAFT Code + Code DAFT + + + Data Matrix + Matriz de dados + + + Deutsche Post Leitcode + Postagem Leitcode alemão + + + Deutsche Post Identcode + Postagem Identcode alemão + + + Dutch Post KIX Code + Code KIX de postagem holandês + + + EAN + EAN + + + Grid Matrix + Matriz de grade + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Empilhada + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Empilhada Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar Estendida Empilhada + + + HIBC Code 128 + Code HIBC 128 + + + HIBC Code 39 + Code HIBC 39 + + + HIBC Data Matrix + Data Matrix HIBC + + + HIBC QR Code + QR Code HIBC + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + Código Aztec HIBC + + + ITF-14 + ITF-14 + + + Japanese Postal + Postal japonês + + + Korean Postal + Postal Coreano + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 Truncado + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-faixas + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR Code + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen numérico + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Sem_título @@ -2480,14 +2397,14 @@ Invalid barcode data - + Dados do código de barras inválidos glabels::model::ModelTextObject Text - + Texto diff --git a/translations/glabels_ro.ts b/translations/glabels_ro.ts index 570ee80..4afd024 100644 --- a/translations/glabels_ro.ts +++ b/translations/glabels_ro.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Portocaliu Butter @@ -132,7 +132,7 @@ Black - + Negru Very Dark Gray @@ -164,29 +164,25 @@ White - + Alb Db Other - - - - Roll - + Altele Factory None - + Niciunul Text: Comma Separated Values (CSV) - + Text: Valori separate de virgulă (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Text: Valori separate de tab (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diametru FrameRound diameter - + diametru @@ -257,7 +246,7 @@ Source - + Sursă Location @@ -265,11 +254,11 @@ Format: - + Format: Location: - + Locație: Records @@ -277,11 +266,11 @@ Select all - + Selectează tot Unselect all - + Deselectează tot @@ -292,11 +281,11 @@ Object properties - + Proprietățile obiectului Text - + Text Layout @@ -304,7 +293,7 @@ Alignment: - + Aliniere: Line spacing: @@ -324,7 +313,7 @@ None - + Niciunul Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Familie: Size: - + Dimensiune: Style: - + Stil: Color: - + Culoare: Editor @@ -356,11 +345,11 @@ Barcode - + Cod de bare Style - + Stil Type: @@ -372,15 +361,15 @@ Checksum - + Sumă de control Barcode data - + Datele codului de bare Image - + Imagine File @@ -404,15 +393,15 @@ Line - + Linie Width: - + Lățime: Fill - + Umple Position/Size @@ -420,27 +409,27 @@ Position - + Poziție: X: - + X: Y: - + Y: Size - + Dimensiune Length: - + Lungime: Angle: - + Unghi: Original size: @@ -456,11 +445,11 @@ Height: - + Înălțime: Shadow - + Umbră X offset: @@ -472,7 +461,7 @@ Opacity: - + Opacitate: @@ -483,19 +472,19 @@ Locale - + Local Select locale specific behavior. - + Alegeți comportamentul local specific. Units - + Unități Points - + Puncte Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milimetrii Inches - + Țoli Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Cópii + + + Copies: + Cópii: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + tipărește marginile de decupare print in reverse (i.e. a mirror image) - + tipărește în revers (ex. o imagine în oglindă) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Vânzător: TextLabel @@ -589,23 +578,23 @@ Part #: - + Partea #: Description: - + Descriere: Page size: - + Dimensiune pagină: Label size: - + Dimensiunea etichetei: Layout: - + Aranjament: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Caută tot Search @@ -672,7 +653,7 @@ Other - + Altele Filter by category @@ -692,7 +673,7 @@ Recent - + Recent Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Raza exterioară: 4. Clipping height: - + 4. Înălțimea perforării: 2. Inner radius: - + 2. Raza interioară: 3. Clipping width: - + 3. Lățimea perforării: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Înălțime: 1. Width: - + 1. Lățime: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Tip: Part #: - + Partea #: Description: - + Descriere: (e.g. 8163A) @@ -907,30 +877,32 @@ Number across (nx): - + + Number down (ny): - + + Distance from left edge (x0): - - - - Distance from top edge (y0): - + Distanța de la marginea stângă (x0): Horizontal pitch (dx): - + Înălțimea orizontală (dx): Vertical pitch (dy): - + Înălțime verticală (dy): Print test sheet + Tipărește foaie de test + + + Distance from top edge (y0): @@ -941,31 +913,16 @@ - Roll width: - - - - Height: - + Page size: + Dimensiune pagină: Width: - + Lățime: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Înălțime: @@ -974,6 +931,14 @@ Form + + 2. Height: + 2. Înălțime: + + + 1. Width: + 1. Lățime: + 4. Horizontal waste: @@ -983,29 +948,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +964,11 @@ 3. Margin - + 3. Margine 1. Radius: - + 1. Rază: 2. Waste: @@ -1034,19 +983,19 @@ Rectangular or square (can have rounded corners) - + Dreptunghiular sau pătrat (poate avea colțuri rotunjite) Round - + Rotund Elliptical - + Eliptic CD/DVD (including credit card CDs) - + CD/DVD (incluzând CD-uri - cărți de credit ) @@ -1057,30 +1006,32 @@ Distance from left edge (x0): - + Distanța de la marginea stângă (x0): Number down (ny): - - - - Distance from top edge (y0): - + + Number across (nx): - + + Horizontal pitch (dx): - + Înălțimea orizontală (dx): Vertical pitch (dy): - + Înălțime verticală (dy): Print test sheet + Tipărește foaie de test + + + Distance from top edge (y0): @@ -1088,23 +1039,23 @@ Units points - + puncte inches - + țoli mm - + mm cm - + cm picas - + picas @@ -1138,7 +1089,7 @@ Custom Color - + Culoare personalizată Custom color #%1 @@ -1184,18 +1135,18 @@ glabels::LabelEditor Move - + Mută Delete - + Șterge glabels::MainWindow Welcome - + Bine ați venit Edit @@ -1303,19 +1254,19 @@ Undo - + Anulează Redo - + Refă Cut - + Decupează Cut the selection - + Decupează selecția &Copy @@ -1323,7 +1274,7 @@ Copy the selection - + Lipește selecția &Paste @@ -1331,7 +1282,7 @@ Paste the clipboard - + Lipește clipboard-ul &Delete @@ -1339,7 +1290,7 @@ Delete the selected objects - + Șterge obiectele selectate Select &All @@ -1347,23 +1298,23 @@ Select all objects - + Selectează toate obiectele Un-select All - + Deselectează tot Remove all selections - + Elimină toate selecțiile Preferences - + Preferințe Configure the application - + Configurați aplicația File @@ -1383,7 +1334,7 @@ Grid - + Grilă Change visibility of the grid in current window @@ -1391,7 +1342,7 @@ Markup - + Marcare Change visibility of markup lines in current window @@ -1403,7 +1354,7 @@ Increase magnification - + Mărește amplificarea Zoom &Out @@ -1411,7 +1362,7 @@ Decrease magnification - + Micșorează amplificarea Zoom &1 to 1 @@ -1419,7 +1370,7 @@ Restore scale to 100% - + Restabilește scalarea la 100% Zoom to &Fit @@ -1427,63 +1378,63 @@ Set scale to fit window - + Stabilește scalarea pentru a se potrivi ferestrei Select Mode - + Selectați modul Select, move and modify objects - + Selectați, mișcați și modificați obiecte Text - + Text Create text object - + Crează obiect text Box - + Cutie Create box object - + Crează obiect cutie Line - + Linie Create line object - + Crează obiect liniar Ellipse - + Elipsă Create ellipse/circle object - + Crează obiect elipsă/cerc Image - + Imagine Create image object - + Crează obiect imagine Barcode - + Cod de bare Create barcode object - + Crează obiect cod de bare Bring To Front @@ -1539,7 +1490,7 @@ Align objects to left edges - + Aliniază obiecte la marginile stângi Align Center @@ -1547,7 +1498,7 @@ Align objects to horizontal centers - + Aliniază obiecte la centrul orizontal Align Right @@ -1555,7 +1506,7 @@ Align objects to right edges - + Aliniază obiecte la marginile drepte Align Top @@ -1563,7 +1514,7 @@ Align objects to top edges - + Aliniază obiecte la marginile superioare Align Middle @@ -1571,7 +1522,7 @@ Align objects to vertical centers - + Aliniază obiecte la centrele verticale Align Bottom @@ -1579,7 +1530,7 @@ Align objects to bottom edges - + Aliniază obiecte la marginile de la bază Center Horizontally @@ -1659,7 +1610,7 @@ (modified) - + (modificat) Save changes to project "%1" before closing? @@ -1667,7 +1618,7 @@ Your changes will be lost if you don't save them. - + Schimbările vor fi pierdute dacă nu le salvați. Save project? @@ -1675,11 +1626,11 @@ Paste - + Lipește Delete - + Șterge Create Text @@ -1733,7 +1684,7 @@ Default - + Implicit Insert Field @@ -1749,7 +1700,7 @@ Box object properties - + Proprietățile obiectului cutie line/fill @@ -1765,11 +1716,11 @@ Ellipse object properties - + Proprietățile obiectului elipsă Image object properties - + Proprietățile obiectului imagine image @@ -1777,11 +1728,11 @@ Line object properties - + Proprietățile obiectului liniar Text object properties - + Proprietățile obiectului text text @@ -1789,7 +1740,7 @@ Barcode object properties - + Proprietățile obiectului cod de bare barcode @@ -1797,15 +1748,15 @@ Object properties - + Proprietățile obiectului Line - + Linie Fill - + Umple Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1812,23 @@ Set image - + Stabilește imagine Move - + Mută Size - + Dimensiune Text - + Text Shadow - + Umbră @@ -1910,7 +1861,7 @@ glabels::SimplePreview Up - + Sus @@ -1919,13 +1870,9 @@ Product Template Designer - - Roll - - Copy - + Lipește @@ -1958,17 +1905,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1920,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Bine ați venit Welcome to the gLabels Product Template Designer. @@ -1995,7 +1931,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Număr de straturi Please select the number of layouts required. @@ -2006,7 +1942,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Nume și descriere Please enter the following identifying information about the product. @@ -2032,7 +1968,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Dimensiunea paginii Please select the product page size. @@ -2040,22 +1976,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Altele @@ -2106,39 +2027,39 @@ glabels::barcode::Backends Code 39 - + Cod 39 Code 39 Extended - + Cod 39 extins UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (oricare) POSTNET-5 (ZIP only) - + POSTNET-5 (doar ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2067,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (oricare) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2095,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A sau UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Cod 128 Code 128C - + Cod 128C Code 128B - + Cod 128B Interleaved 2 of 5 - + Intercalate 2 din 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Cod 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Australia Post Reply Paid + + + Australia Post Route Code + Australia Post Route Code + + + Australia Post Redirect + Australia Post Redirect + + + Aztec Code + Cod aztec + + + Aztec Rune + Aztec Rune + + + Code One + Cod unu + + + Code 11 + Cod 11 + + + Code 16K + Cod 16k + + + Code 2 of 5 Matrix + Cod 2 din 5 Matrix + + + Code 2 of 5 IATA + Cod 2 of 5 IATA + + + Code 2 of 5 Data Logic + Cod 2 of 5 Data Logic + + + Code 32 (Italian Pharmacode) + Cod 32 (Italian Pharmacode) + + + Code 49 + Cod 49 + + + DAFT Code + Cod DAFT + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + Dutch Post KIX Code + + + EAN + EAN + + + Grid Matrix + Grid Matrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Stacked + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Stacked Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar Extended Stacked + + + HIBC Code 128 + HIBC Cod 128 + + + HIBC Code 39 + HIBC Cod 39 + + + HIBC Data Matrix + HIBC Data Matrix + + + HIBC QR Code + Cod HIBC QR + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + Japanese Postal + + + Korean Postal + Korean Postal + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 Truncated + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + Cod QR + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen numeric + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Fără nume @@ -2480,14 +2401,14 @@ Invalid barcode data - + Date invalide de cod de bare glabels::model::ModelTextObject Text - + Text diff --git a/translations/glabels_ru.ts b/translations/glabels_ru.ts index b7dbe7b..10469e5 100644 --- a/translations/glabels_ru.ts +++ b/translations/glabels_ru.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Оранжевый Butter @@ -132,7 +132,7 @@ Black - + Чёрный Very Dark Gray @@ -164,29 +164,25 @@ White - + Белый Db Other - - - - Roll - + Другой Factory None - + Нет Text: Comma Separated Values (CSV) - + Текст: значения, разделённые запятой (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Текст: значения, разделённые табуляцией (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + диаметр FrameRound diameter - + диаметр @@ -257,7 +246,7 @@ Source - + Источник Location @@ -265,11 +254,11 @@ Format: - + Формат: Location: - + Расположение: Records @@ -277,11 +266,11 @@ Select all - + Выделить все Unselect all - + Снять выделение @@ -292,11 +281,11 @@ Object properties - + Свойства объекта Text - + Текст Layout @@ -304,7 +293,7 @@ Alignment: - + Горизонтальное выравнивание: Line spacing: @@ -324,7 +313,7 @@ None - + Нет Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Семейство: Size: - + Размер: Style: - + Стиль: Color: - + Цвет: Editor @@ -356,11 +345,11 @@ Barcode - + Штрих-код Style - + Стиль Type: @@ -372,15 +361,15 @@ Checksum - + Контрольная сумма Barcode data - + Данные штрих-кода Image - + Изображение File @@ -404,15 +393,15 @@ Line - + Обводка Width: - + Ширина: Fill - + Заливка Position/Size @@ -420,27 +409,27 @@ Position - + Расположение X: - + X: Y: - + Y: Size - + Размер Length: - + Длина: Angle: - + Угол: Original size: @@ -456,11 +445,11 @@ Height: - + Высота: Shadow - + Тень X offset: @@ -472,7 +461,7 @@ Opacity: - + Непрозрачность: @@ -483,19 +472,19 @@ Locale - + Местные параметры Select locale specific behavior. - + Укажите местные параметры Units - + Единица измерения Points - + Пункт Centimeters @@ -503,11 +492,11 @@ Millimeters - + Миллиметр Inches - + Дюйм Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Копий + + + Copies: + Копий: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + печатать метки под обрез print in reverse (i.e. a mirror image) - + печатать в зеркальном отображении Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Производитель: TextLabel @@ -589,23 +578,23 @@ Part #: - + Часть №: Description: - + Описание: Page size: - + Формат страницы: Label size: - + Размер этикетки: Layout: - + Формат: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Поиск по всем вариантам Search @@ -672,7 +653,7 @@ Other - + Другой Filter by category @@ -692,7 +673,7 @@ Recent - + Недавние Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Наружный радиус: 4. Clipping height: - + 4. Высота обрезки: 2. Inner radius: - + 2. Внутренний радиус: 3. Clipping width: - + 3. Ширина для обрезки: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Высота: 1. Width: - + 1. Ширина: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Марка: Part #: - + Часть №: Description: - + Описание: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + По горизонтали (nx): Number down (ny): - + По вертикали (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Расстояние от левого угла (x0): Horizontal pitch (dx): - + Интервал по горизонтали (dx): Vertical pitch (dy): - + Интервал по вертикали (dy): Print test sheet + Напечатать тестовую страницу + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Формат страницы: Width: - + Ширина: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Высота: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Высота: + + + 1. Width: + 1. Ширина: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Поле 1. Radius: - + 1. Радиус: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Прямоугольник или квадрат (может иметь скруглённые края) Round - + Круг Elliptical - + Эллипс CD/DVD (including credit card CDs) - + CD/DVD (включая CD размером с визитку) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Расстояние от левого угла (x0): Number down (ny): - - - - Distance from top edge (y0): - + По вертикали (ny): Number across (nx): - + По горизонтали (nx): Horizontal pitch (dx): - + Интервал по горизонтали (dx): Vertical pitch (dy): - + Интервал по вертикали (dy): Print test sheet + Напечатать тестовую страницу + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + пунктов inches - + дюймов mm - + мм cm - + см picas - + цицеро @@ -1138,7 +1085,7 @@ Custom Color - + Другой цвет Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Переместить Delete - + Удалить glabels::MainWindow Welcome - + Добро пожаловать Edit @@ -1303,19 +1250,19 @@ Undo - + Отменить Redo - + Вернуть Cut - + Вырезать Cut the selection - + Вырезать выделенное &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Скопировать выделенное &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Вставить из буфера &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Удалить выбранные объекты Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Выделить все объекты Un-select All - + Снять выделение Remove all selections - + Снять выделение со всех объектов Preferences - + Параметры Configure the application - + Настроить программу File @@ -1383,7 +1330,7 @@ Grid - + Сетка Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Разметка Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Уменьшить масштаб Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Увеличить масштаб Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Восстановить масштаб 1:1 Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Изменить масштаб, чтобы изображение было видно полностью Select Mode - + Режим выбора Select, move and modify objects - + Выбрать, переместить или изменить объекты Text - + Текст Create text object - + Добавить текст Box - + Прямоугольник Create box object - + Создать прямоугольный объект Line - + Обводка Create line object - + Добавить линию Ellipse - + Эллипс Create ellipse/circle object - + Добавить эллипс/круг Image - + Изображение Create image object - + Добавить растровое изображение Barcode - + Штрих-код Create barcode object - + Добавить штрих-код Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Выровнять объекты по левому краю Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Выровнять объекты по горизонтальным центрам Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Выровнять объекты по правому краю Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Выровнять объекты по верхним краям Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Выровнять объекты по вертикальным центрам Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Выровнять объекты по нижним краям Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (изменено) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Все несохранённые изменения будут потеряны. Save project? @@ -1675,11 +1622,11 @@ Paste - + Вставить Delete - + Удалить Create Text @@ -1733,7 +1680,7 @@ Default - + По умолчанию Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Свойства прямоугольника line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Свойства эллипса Image object properties - + Свойства изображения image @@ -1777,11 +1724,11 @@ Line object properties - + Свойства линии Text object properties - + Свойства текста text @@ -1789,7 +1736,7 @@ Barcode object properties - + Свойства объекта типа штрих-код barcode @@ -1797,15 +1744,15 @@ Object properties - + Свойства объекта Line - + Обводка Fill - + Заливка Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Установить изображение Move - + Переместить Size - + Размер Text - + Текст Shadow - + Тень @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Вверх @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Копировать @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Добро пожаловать Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Количество макетов Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Название и описание Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Формат страницы Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Другой @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39, расширенный UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (любой) POSTNET-5 (ZIP only) - + POSTNET-5 (только почтовый индекс) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (любой) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A или UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Interleaved 2 of 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Австралийская почта (с ответом) + + + Australia Post Route Code + Австралийская почта (код маршрута) + + + Australia Post Redirect + Австралийская почта (обратная отправка) + + + Aztec Code + Aztec Code + + + Aztec Rune + Aztec Rune + + + Code One + Code 1 + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + Code 2 of 5 Matrix + + + Code 2 of 5 IATA + Code 2 of 5 IATA + + + Code 2 of 5 Data Logic + Code 2 of 5 Data Logic + + + Code 32 (Italian Pharmacode) + Code 32 (Italian Pharmacode) + + + Code 49 + Code 49 + + + DAFT Code + DAFT Code + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + Dutch Post KIX Code + + + EAN + EAN + + + Grid Matrix + Grid Matrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 (составной) + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 (составной всенаправленный) + + + GS1 DataBar Extended Stacked + GS1 DataBar (составной расширенный) + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + HIBC Data Matrix + + + HIBC QR Code + HIBC QR Code + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + Японская почта + + + Korean Postal + Корейская почта + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 (усечённый) + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR Code + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen (числовой) + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Без названия @@ -2480,14 +2397,14 @@ Invalid barcode data - + Неверные данные штрих-кода glabels::model::ModelTextObject Text - + Текст diff --git a/translations/glabels_sk.ts b/translations/glabels_sk.ts index bae8e56..1286ef4 100644 --- a/translations/glabels_sk.ts +++ b/translations/glabels_sk.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Oranžová Butter @@ -132,7 +132,7 @@ Black - + Čierna Very Dark Gray @@ -164,29 +164,25 @@ White - + Biela Db Other - - - - Roll - + Ostatné Factory None - + Žiadny Text: Comma Separated Values (CSV) - + Text: Čiarkou oddelené hodnoty (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Text: Tabulátorom oddelené hodnoty (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + priemer FrameRound diameter - + priemer @@ -257,7 +246,7 @@ Source - + Zdroj Location @@ -265,11 +254,11 @@ Format: - + Formát: Location: - + Umiestnenie: Records @@ -277,11 +266,11 @@ Select all - + Vybrať všetko Unselect all - + Zrušiť výber @@ -292,11 +281,11 @@ Object properties - + Vlastnosti objektu Text - + Text Layout @@ -304,7 +293,7 @@ Alignment: - + Zarovnanie: Line spacing: @@ -324,7 +313,7 @@ None - + Žiadny Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Rodina: Size: - + Veľkosť: Style: - + Štýl: Color: - + Farba: Editor @@ -356,11 +345,11 @@ Barcode - + Čiarový kód Style - + Štýl Type: @@ -372,15 +361,15 @@ Checksum - + Kontrolný medzisúčet Barcode data - + Údaje čiarového kódu Image - + Obrázok File @@ -404,15 +393,15 @@ Line - + Čiara Width: - + Šírka: Fill - + Výplň Position/Size @@ -420,27 +409,27 @@ Position - + Pozícia X: - + X: Y: - + Y: Size - + Veľkosť Length: - + Dĺžka: Angle: - + Uhol: Original size: @@ -456,11 +445,11 @@ Height: - + Výška: Shadow - + Tieň X offset: @@ -472,7 +461,7 @@ Opacity: - + Krytie: @@ -483,19 +472,19 @@ Locale - + Miestne nastavenia Select locale specific behavior. - + Vyberte správanie špecifické miestnym nastavením. Units - + Jednotky Points - + Body Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milimetre Inches - + Palce Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Kópie + + + Copies: + Kópie: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + tlačiť orezávacie značky print in reverse (i.e. a mirror image) - + tlačiť obrátene (napr. zrkadlový obrázok) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Výrobca: TextLabel @@ -589,23 +578,23 @@ Part #: - + Výrobné číslo: Description: - + Popis: Page size: - + Veľkosť papiera: Label size: - + Veľkosť štítku: Layout: - + Rozloženie: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Vyhľadať všetky Search @@ -672,7 +653,7 @@ Other - + Ostatné Filter by category @@ -692,7 +673,7 @@ Recent - + Nedávne Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Vonkajší polomer: 4. Clipping height: - + 4. Výška orezania: 2. Inner radius: - + 2. Vnútorný polomer: 3. Clipping width: - + 3. Šírka orezania: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Výška: 1. Width: - + 1. Šírka: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Značka: Part #: - + Výrobné číslo: Description: - + Popis: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Počet vodorovne (nx): Number down (ny): - + Počet zvislo (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Vzdialenosť od ľavej hrany (x0): Horizontal pitch (dx): - + Vodorovný rozstup (dx): Vertical pitch (dy): - + Zvislý rozstup (dy): Print test sheet + Vytlačiť skúšobný list + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Veľkosť papiera: Width: - + Šírka: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Výška: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Výška: + + + 1. Width: + 1. Šírka: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Okraj 1. Radius: - + 1. Polomer: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Obdĺžnikový alebo štvorcový (môže mať zaoblené rohy) Round - + Oblý Elliptical - + Elipsový CD/DVD (including credit card CDs) - + CD/DVD (vrátane CD o veľkosti kreditnej karty) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Vzdialenosť od ľavej hrany (x0): Number down (ny): - - - - Distance from top edge (y0): - + Počet zvislo (ny): Number across (nx): - + Počet vodorovne (nx): Horizontal pitch (dx): - + Vodorovný rozstup (dx): Vertical pitch (dy): - + Zvislý rozstup (dy): Print test sheet + Vytlačiť skúšobný list + + + Distance from top edge (y0): @@ -1088,23 +1035,24 @@ Units points - + bodov inches - + palcov mm - + mm cm - + cm picas - + + @@ -1138,7 +1086,7 @@ Custom Color - + Vlastná farba Custom color #%1 @@ -1184,18 +1132,18 @@ glabels::LabelEditor Move - + Presunúť Delete - + Odstrániť glabels::MainWindow Welcome - + Vitajte Edit @@ -1303,19 +1251,19 @@ Undo - + Vrátiť späť Redo - + Zopakovať Cut - + Vystrihnúť Cut the selection - + Vystrihne výber &Copy @@ -1323,7 +1271,7 @@ Copy the selection - + Skopíruje výber &Paste @@ -1331,7 +1279,7 @@ Paste the clipboard - + Vloží obsah schránky &Delete @@ -1339,7 +1287,7 @@ Delete the selected objects - + Odstráni vybrané objekty Select &All @@ -1347,23 +1295,23 @@ Select all objects - + Vyberie všetky objekty Un-select All - + Odznačiť výber Remove all selections - + Odstráni všetky označenia Preferences - + Nastavenia Configure the application - + Nastaví aplikáciu File @@ -1383,7 +1331,7 @@ Grid - + Mriežka Change visibility of the grid in current window @@ -1391,7 +1339,7 @@ Markup - + Značky Change visibility of markup lines in current window @@ -1403,7 +1351,7 @@ Increase magnification - + Zvýši zväčšenie Zoom &Out @@ -1411,7 +1359,7 @@ Decrease magnification - + Zníži zväčšenie Zoom &1 to 1 @@ -1419,7 +1367,7 @@ Restore scale to 100% - + Obnoví mierku na 100% Zoom to &Fit @@ -1427,63 +1375,63 @@ Set scale to fit window - + Nastaví mierku podľa veľkosti okna Select Mode - + Režim výberu Select, move and modify objects - + Vyberie, presunie a upraví objekty Text - + Text Create text object - + Vytvoriť textový objekt Box - + Štvorec Create box object - + Vytvoriť štvorcový objekt Line - + Čiara Create line object - + Vytvoriť čiarový objekt Ellipse - + Elipsa Create ellipse/circle object - + Vytvorí eliptický/okrúhly objekt Image - + Obrázok Create image object - + Vytvoriť objekt s obrázkom Barcode - + Čiarový kód Create barcode object - + Vytvoriť objekt s čiarovým kódom Bring To Front @@ -1539,7 +1487,7 @@ Align objects to left edges - + Zarovná objekty k ľavému okraju Align Center @@ -1547,7 +1495,7 @@ Align objects to horizontal centers - + Zarovná objekty k stredu vodorovne Align Right @@ -1555,7 +1503,7 @@ Align objects to right edges - + Zarovná objekty k pravému okraju Align Top @@ -1563,7 +1511,7 @@ Align objects to top edges - + Zarovná objekty k hornému okraju Align Middle @@ -1571,7 +1519,7 @@ Align objects to vertical centers - + Zarovná objekty k zvislému stredu Align Bottom @@ -1579,7 +1527,7 @@ Align objects to bottom edges - + Zarovná objekty k spodnému okraju Center Horizontally @@ -1659,7 +1607,7 @@ (modified) - + (upravené) Save changes to project "%1" before closing? @@ -1667,7 +1615,7 @@ Your changes will be lost if you don't save them. - + Vaše zmeny sa stratia, ak ich neuložíte. Save project? @@ -1675,11 +1623,11 @@ Paste - + Vložiť Delete - + Odstrániť Create Text @@ -1733,7 +1681,7 @@ Default - + Predvolené Insert Field @@ -1749,7 +1697,7 @@ Box object properties - + Vlastnosti objektu so štvorcom line/fill @@ -1765,11 +1713,11 @@ Ellipse object properties - + Vlastnosti objektu s elipsou Image object properties - + Vlastnosti objektu s obrázkom image @@ -1777,11 +1725,11 @@ Line object properties - + Vlastnosti objektu s čiarou Text object properties - + Vlastnosti objektu s textom text @@ -1789,7 +1737,7 @@ Barcode object properties - + Vlastnosti objektu s čiarovým kódom barcode @@ -1797,15 +1745,15 @@ Object properties - + Vlastnosti objektu Line - + Čiara Fill - + Výplň Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1809,23 @@ Set image - + Nastaviť obrázok Move - + Presunúť Size - + Veľkosť Text - + Text Shadow - + Tieň @@ -1910,7 +1858,7 @@ glabels::SimplePreview Up - + Vrch @@ -1919,13 +1867,9 @@ Product Template Designer - - Roll - - Copy - + Kopírovať @@ -1958,17 +1902,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1917,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Vitajte Welcome to the gLabels Product Template Designer. @@ -1995,7 +1928,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Počet rozložení Please select the number of layouts required. @@ -2006,7 +1939,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Názov a popis Please enter the following identifying information about the product. @@ -2032,7 +1965,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Veľkosť papiera Please select the product page size. @@ -2040,22 +1973,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Ostatné @@ -2106,39 +2024,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 rozšírený UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (akýkoľvek) POSTNET-5 (ZIP only) - + POSTNET-5 (iba PSČ) POSTNET-9 (ZIP+4) - + POSTNET-9 (PSČ+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2064,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (akýkoľvek) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2092,303 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A alebo UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Prekladaný 2 z 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Austrálsky poštový odpovedajúci + + + Australia Post Route Code + Austrálsky poštový smerový kód + + + Australia Post Redirect + Austrálsky poštový presmerovaný + + + Aztec Code + Aztec Code + + + Aztec Rune + Aztec Rune + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + Code 2 z 5 Matrix + + + Code 2 of 5 IATA + Code 2 z 5 IATA + + + Code 2 of 5 Data Logic + Code 2 z 5 Data Logic + + + Code 32 (Italian Pharmacode) + Code 32 (taliansky Pharmacode) + + + Code 49 + Code 49 + + + DAFT Code + DAFT Code + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Nemecký poštový Leitcode + + + Deutsche Post Identcode + Nemecký poštový Identcode + + + Dutch Post KIX Code + Dánsky poštový KIX Code + + + EAN + EAN + + + Grid Matrix + Grid Matrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 vrstvený + + + GS1 DataBar-14 Stacked Omni. + + + + + GS1 DataBar Extended Stacked + GS1 DataBar rozšírený vrstvený + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + HIBC Data Matrix + + + HIBC QR Code + HIBC QR kód + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + Japonský poštový + + + Korean Postal + Kórejský poštový + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 skrátený + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode binárny + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR kód + + + Royal Mail 4-State + Royal Mail 4-stavový + + + Telepen + Telepen + + + Telepen Numeric + Telepen číselný + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Nepomenovaný @@ -2480,14 +2399,14 @@ Invalid barcode data - + Neplatné údaje čiarového kódu glabels::model::ModelTextObject Text - + Text diff --git a/translations/glabels_sl.ts b/translations/glabels_sl.ts index 58447cf..b7f7d77 100644 --- a/translations/glabels_sl.ts +++ b/translations/glabels_sl.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Oranžna Butter @@ -132,7 +132,7 @@ Black - + Črna Very Dark Gray @@ -164,29 +164,25 @@ White - + Bela Db Other - - - - Roll - + Drugo Factory None - + Brez Text: Comma Separated Values (CSV) - + Besedilo: z vejico ločene vrednosti (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Besedilo: s tabulatorjem ločene vrednosti (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + premer FrameRound diameter - + premer @@ -257,7 +246,7 @@ Source - + Vir Location @@ -265,11 +254,11 @@ Format: - + Zapis: Location: - + Mesto: Records @@ -277,11 +266,11 @@ Select all - + Izberi vse Unselect all - + Prekliči izbor vsega @@ -292,11 +281,11 @@ Object properties - + Lastnosti predmeta Text - + Besedilo Layout @@ -304,7 +293,7 @@ Alignment: - + Poravnava: Line spacing: @@ -324,7 +313,7 @@ None - + Brez Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Družina: Size: - + Velikost: Style: - + Slog: Color: - + Barva: Editor @@ -356,11 +345,11 @@ Barcode - + Črtna koda Style - + Slog Type: @@ -372,15 +361,15 @@ Checksum - + Nadzorna vsota Barcode data - + Podatki črtne kode Image - + Slika File @@ -404,15 +393,15 @@ Line - + Črta Width: - + Širina: Fill - + Polnilo Position/Size @@ -420,27 +409,27 @@ Position - + Položaj X: - + X: Y: - + Y: Size - + Velikost Length: - + Dolžina: Angle: - + Kot: Original size: @@ -456,11 +445,11 @@ Height: - + Višina: Shadow - + Senca X offset: @@ -472,7 +461,7 @@ Opacity: - + Prekrivnost: @@ -483,19 +472,19 @@ Locale - + Jezikovna oznaka Select locale specific behavior. - + Izberite z jezikovno oznako določeno obnašanje. Units - + Enote Points - + Točke Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milimetri Inches - + Palci Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Kopije + + + Copies: + Kopije: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + natisni oznake obrezave print in reverse (i.e. a mirror image) - + natisni obrnjeno (to je zrcalna slika) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Ponudnik: TextLabel @@ -589,23 +578,23 @@ Part #: - + Del št: Description: - + Opis: Page size: - + Velikost strani: Label size: - + Velikost nalepke: Layout: - + Razpored: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Išči vse Search @@ -672,7 +653,7 @@ Other - + Drugo Filter by category @@ -692,7 +673,7 @@ Recent - + Nedavno Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Zunanji polmer: 4. Clipping height: - + 4. Višina odreza: 2. Inner radius: - + 2. Notranji polmer: 3. Clipping width: - + 3. Širina odreza: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Višina: 1. Width: - + 1. Širina 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Znamka: Part #: - + Del št: Description: - + Opis: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Vodoravno število (nx): Number down (ny): - + Navpično število (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Razdalja od levega roba (x0): Horizontal pitch (dx): - + Vodoravna razdalja (dx): Vertical pitch (dy): - + Navpična razdalja (dy): Print test sheet + Natisni preizkusni list + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Velikost strani: Width: - + Širina: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Višina: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Višina: + + + 1. Width: + 1. Širina + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Obroba 1. Radius: - + 1. Polmer: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Kvadrat ali pravokotnik (lahko ima zaokrožene robove) Round - + Krog Elliptical - + Eliptično CD/DVD (including credit card CDs) - + CD/DVD (vključujoč CD-je v obliki kreditnih kartic) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Razdalja od levega roba (x0): Number down (ny): - - - - Distance from top edge (y0): - + Navpično število (ny): Number across (nx): - + Vodoravno število (nx): Horizontal pitch (dx): - + Vodoravna razdalja (dx): Vertical pitch (dy): - + Navpična razdalja (dy): Print test sheet + Natisni preizkusni list + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + točke inches - + palci mm - + mm cm - + cm picas - + pic @@ -1138,7 +1085,7 @@ Custom Color - + Barva po meri Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Premakni Delete - + Izbriši glabels::MainWindow Welcome - + Dobrodošli Edit @@ -1303,19 +1250,19 @@ Undo - + Razveljavi Redo - + Uveljavi Cut - + Izreži Cut the selection - + Izrez izbora &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Kopiranje izbora &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Prilepi iz odložišča &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Izbriši izbrane predmete Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Izbor vseh predmetov Un-select All - + Odstrani izbor vsega Remove all selections - + Odstrani vse izbore Preferences - + Možnosti Configure the application - + Nastavi program File @@ -1383,7 +1330,7 @@ Grid - + Mreža Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Označeno Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Približa predmet Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Oddalji predmet Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Obnavljanje velikosti na 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Prilagodi velikost oknu Select Mode - + Način izbiranja Select, move and modify objects - + Izbor, premikanje in spreminjanje predmetov Text - + Besedilo Create text object - + Ustvari besedilni predmet Box - + Okvir Create box object - + Ustvari okvir Line - + Črta Create line object - + Ustvari črto Ellipse - + Elipsa Create ellipse/circle object - + Ustvari elipso/krog Image - + Slika Create image object - + Ustvari slikovni predmet Barcode - + Črtna koda Create barcode object - + Ustvarjanje predmeta črtne kode Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Poravnava predmetov na levi rob Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Poravnava predmetov na vodoravno središče Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Poravnava predmetov na desni rob Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Poravnava predmetov na zgornji rob Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Poravnava predmetov na navpično središče Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Poravnava predmetov na spodnji rob Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (spremenjeno) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + V primeru, da sprememb na shranite, bodo trajno izgubljene. Save project? @@ -1675,11 +1622,11 @@ Paste - + Prilepi Delete - + Izbriši Create Text @@ -1733,7 +1680,7 @@ Default - + Privzeto Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Lastnosti okvirja line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Lastnosti elipse Image object properties - + Lastnosti slike image @@ -1777,11 +1724,11 @@ Line object properties - + Lastnosti črte Text object properties - + Lastnosti besedila text @@ -1789,7 +1736,7 @@ Barcode object properties - + Lastnosti črtne kode barcode @@ -1797,15 +1744,15 @@ Object properties - + Lastnosti predmeta Line - + Črta Fill - + Polnilo Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Nastavi sliko Move - + Premakni Size - + Velikost Text - + Besedilo Shadow - + Senca @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Navzgor @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Kopiraj @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Dobrodošli Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Število razporeditev Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Ime in opis Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Velikost strani Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Drugo @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Koda 39 Code 39 Extended - + Koda 39 razpirejan UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (any) POSTNET-5 (ZIP only) - + POSTNET-5 (ZIP only) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (Podatkovna matrika) EAN (any) - + EAN (katerakoli) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A or UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Koda 128 Code 128C - + Koda 128C Code 128B - + Koda 128B Interleaved 2 of 5 - + Prepleteno 2 od 5 Codabar - + Številka črtne kode MSI - + MSI Plessey - + Plessey Code 93 - + Koda 93 IEC18004 (QRCode) - + IEC18004 (QRKoda) + + + Australia Post Reply Paid + Avstralska pošta plačan odgovor + + + Australia Post Route Code + Avstralska pošta koda poti + + + Australia Post Redirect + Avstralska pošta preusmeritev + + + Aztec Code + Azteška koda + + + Aztec Rune + Azteška runa + + + Code One + Koda ena + + + Code 11 + Koda 11 + + + Code 16K + Koda 16K + + + Code 2 of 5 Matrix + Koda 2 od 5 matrika + + + Code 2 of 5 IATA + Koda 2 od 5 IATA + + + Code 2 of 5 Data Logic + Koda 2 od 5 podatkovna logika + + + Code 32 (Italian Pharmacode) + Koda 32 (Italijanska Pharmakoda) + + + Code 49 + Koda 49 + + + DAFT Code + DAFT koda + + + Data Matrix + Podatkovna matrika + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + KIX koda nizozemske pošte + + + EAN + EAN + + + Grid Matrix + Mrežna matrika + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Stacked + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Stacked Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar Extended Stacked + + + HIBC Code 128 + HIBC koda 128 + + + HIBC Code 39 + HIBC koda 39 + + + HIBC Data Matrix + HIBC podatkovna matrika + + + HIBC QR Code + HIBC QR koda + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC azteška koda + + + ITF-14 + ITF-14 + + + Japanese Postal + Japonska pošta + + + Korean Postal + Korejska pošta + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 obrezano + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode dvosledna + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR koda + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen številčna + + + USPS One Code + USPS ena koda + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Brez naslova @@ -2480,14 +2397,14 @@ Invalid barcode data - + Neveljavni podatki črtne kode glabels::model::ModelTextObject Text - + Besedilo diff --git a/translations/glabels_sr.ts b/translations/glabels_sr.ts index aeb930f..484c1ed 100644 --- a/translations/glabels_sr.ts +++ b/translations/glabels_sr.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Наранџаста Butter @@ -132,7 +132,7 @@ Black - + Црна Very Dark Gray @@ -164,29 +164,25 @@ White - + Бела Db Other - - - - Roll - + Друга Factory None - + Ништа Text: Comma Separated Values (CSV) - + Текст: Вредности раздвојене зарезом (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Текст: Вредности раздвојене табулатором (CSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + пречник FrameRound diameter - + пречник @@ -257,7 +246,7 @@ Source - + Извор Location @@ -265,11 +254,11 @@ Format: - + Облик: Location: - + Место: Records @@ -277,11 +266,11 @@ Select all - + Изабери све Unselect all - + Одзначи све @@ -292,11 +281,11 @@ Object properties - + Својства објекта Text - + Текст Layout @@ -304,7 +293,7 @@ Alignment: - + Поравнање: Line spacing: @@ -324,7 +313,7 @@ None - + Ништа Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Породица: Size: - + Величина: Style: - + Стил: Color: - + Боја: Editor @@ -356,11 +345,11 @@ Barcode - + Тракаста шифра Style - + Стил Type: @@ -372,15 +361,15 @@ Checksum - + Сума провере Barcode data - + Подаци баркôда Image - + Слика File @@ -404,15 +393,15 @@ Line - + Линија Width: - + Ширина: Fill - + Попуна Position/Size @@ -420,27 +409,27 @@ Position - + Положај X: - + Водоравно: Y: - + Усправно: Size - + Величина Length: - + Дужина: Angle: - + Угао: Original size: @@ -456,11 +445,11 @@ Height: - + Висина: Shadow - + Сенка X offset: @@ -472,7 +461,7 @@ Opacity: - + Непровидност: @@ -483,19 +472,19 @@ Locale - + Локалитет Select locale specific behavior. - + Изаберите нарочито понашање локалитета. Units - + Јединице Points - + Тачке Centimeters @@ -503,11 +492,11 @@ Millimeters - + Милиметри Inches - + Инчи Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Примерака + + + Copies: + Примерака: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + штампа ознаке исецања print in reverse (i.e. a mirror image) - + штампа обрнуто (нпр. одраз у огледалу) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Продавац: TextLabel @@ -589,23 +578,23 @@ Part #: - + Део #: Description: - + Опис: Page size: - + Величина странице Label size: - + Величина налепнице: Layout: - + Распоред: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Тражи све Search @@ -672,7 +653,7 @@ Other - + Друга Filter by category @@ -692,7 +673,7 @@ Recent - + Скорашње Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Спољни полупречник: 4. Clipping height: - + 4. Висина отсецања: 2. Inner radius: - + 1. Унутрашњи полупречник: 3. Clipping width: - + 3. Ширина отсецања: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Висина: 1. Width: - + 1. Ширина: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Марка: Part #: - + Део #: Description: - + Опис: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Број по ширини (nx): Number down (ny): - + Број по висини (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Одстојање од леве ивице (x0): Horizontal pitch (dx): - + Водоравни међуразмак (dx): Vertical pitch (dy): - + Усправни међуразмак (dy): Print test sheet + Штампај пробни лист + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Величина странице Width: - + Ширина: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Висина: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Висина: + + + 1. Width: + 1. Ширина: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Маргина 1. Radius: - + 1. Полупречник: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Правоугаона или четвртаста (може да има заобљене углове) Round - + Округла Elliptical - + Елипсоидна CD/DVD (including credit card CDs) - + ЦД/ДВД (укључујући ЦД-ове кредитних картица) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Одстојање од леве ивице (x0): Number down (ny): - - - - Distance from top edge (y0): - + Број по висини (ny): Number across (nx): - + Број по ширини (nx): Horizontal pitch (dx): - + Водоравни међуразмак (dx): Vertical pitch (dy): - + Усправни међуразмак (dy): Print test sheet + Штампај пробни лист + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + тачака inches - + инча mm - + mm cm - + cm picas - + цицера @@ -1138,7 +1085,7 @@ Custom Color - + Произвољна боја Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Премести Delete - + Обриши glabels::MainWindow Welcome - + Добродошли Edit @@ -1303,19 +1250,19 @@ Undo - + Опозови Redo - + Поврати Cut - + Исеци Cut the selection - + Исеците изабрано &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Умножите изабрано &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Убаците из оставе &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Обришите изабране објекте Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Изаберите све објекте Un-select All - + Поништи избор Remove all selections - + Уклоните све изборе Preferences - + Поставке Configure the application - + Подесите програм File @@ -1383,7 +1330,7 @@ Grid - + Мрежа Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Означавање Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Повећајте увеличање Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Умањите увеличање Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Повратите размеру на 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Подесите размеру да испуни прозор Select Mode - + Изабери режим Select, move and modify objects - + Изаберите, преместите и измените објекте Text - + Текст Create text object - + Направите текстуални објекат Box - + Квадрат Create box object - + Направите четворострани објекат Line - + Линија Create line object - + Направите линијски објекат Ellipse - + Елипса Create ellipse/circle object - + Направите елипсоидни/кружни објекат Image - + Слика Create image object - + Направите сликовни објекат Barcode - + Тракаста шифра Create barcode object - + Направите баркодни објекат Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Поравнајте објекте на леву ивицу Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Поравнајте објекте на водоравно средиште Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Поравнајте објекте на десну ивицу Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Поравнајте објекте на горњу ивицу Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Поравнајте објекте на усправна средишта Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Поравнајте објекте на доњу ивицу Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (измењено) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Измене ће бити изгубљене ако их не сачувате. Save project? @@ -1675,11 +1622,11 @@ Paste - + Убаци Delete - + Обриши Create Text @@ -1733,7 +1680,7 @@ Default - + Основно Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Својства објекта квадрата line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Својства објекта елипсе Image object properties - + Својства објекта слике image @@ -1777,11 +1724,11 @@ Line object properties - + Својства објекта линије Text object properties - + Својства објекта текста text @@ -1789,7 +1736,7 @@ Barcode object properties - + Својства објекта квадрата barcode @@ -1797,15 +1744,15 @@ Object properties - + Својства објекта Line - + Линија Fill - + Попуна Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Подеси слику Move - + Премести Size - + Величина Text - + Текст Shadow - + Сенка @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Горе @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Умножи @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Добродошли Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Број распореда Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Назив и опис Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Величина странице Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Друга @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Шифра 39 Code 39 Extended - + Шифра 39 проширено UPC-A - + УПЦ-А EAN-13 - + ЕАН-13 POSTNET (any) - + ПОСТНЕТ (било који) POSTNET-5 (ZIP only) - + ПОСТНЕТ-5 (ЗИП само) POSTNET-9 (ZIP+4) - + ПОСТНЕТ-9 (ЗИП+4) POSTNET-11 (DPBC) - + ПОСТНЕТ-11 (ДПБЦ) CEPNET - + ЦЕПНЕТ USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + ИЕЦ16022 (Матрица података) EAN (any) - + ЕАН (било који) EAN-8 - + ЕАН-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + УПЦ (УПЦ-А или УПЦ-Е) UPC-A +2 - + УПЦ-А +2 UPC-A +5 - + УПЦ-А +5 UPC-E - + УПЦ-Е UPC-E +2 - + УПЦ-Е +2 UPC-E +5 - + УПЦ-Е +5 ISBN - + ИСБН ISBN +5 - + ИСБН +5 Code 128 - + Шифра 128 Code 128C - + Шифра 128Ц Code 128B - + Шифра 128Б Interleaved 2 of 5 - + Преплетено 2 од 5 Codabar - + Кодабар MSI - + МСИ Plessey - + Плеси Code 93 - + Шифра 93 IEC18004 (QRCode) - + ИЕЦ18004 (КуР шифра) + + + Australia Post Reply Paid + Плаћен одговор аустралијске поште + + + Australia Post Route Code + Шифра достављања аустралијске поште + + + Australia Post Redirect + Преусмеравање аустралијске поште + + + Aztec Code + Астешка шифра + + + Aztec Rune + Астешке руне + + + Code One + Шифра један + + + Code 11 + Шифра 11 + + + Code 16K + Шифра 16К + + + Code 2 of 5 Matrix + Шифра 2 од 5 матрица + + + Code 2 of 5 IATA + Шифра 2 од 5 ИАТА + + + Code 2 of 5 Data Logic + Шифра 2 од 5 логичких података + + + Code 32 (Italian Pharmacode) + Шифра 32 (шифра италијанске фармације) + + + Code 49 + Шифра 49 + + + DAFT Code + Шифра ДАФТ + + + Data Matrix + Матрица података + + + Deutsche Post Leitcode + Шифра вођења немачке поште + + + Deutsche Post Identcode + Шифра препознавања немачке поште + + + Dutch Post KIX Code + Шифра КИКс немачке поште + + + EAN + ЕАН + + + Grid Matrix + Матрица мреже + + + GS1-128 + ГС1-128 + + + GS1 DataBar-14 + ГС1 Траке података-14 + + + GS1 DataBar-14 Stacked + ГС1 Траке података-14 наслагано + + + GS1 DataBar-14 Stacked Omni. + ГС1 Траке података-14 наслагано омни. + + + GS1 DataBar Extended Stacked + ГС1 Траке података проширено наслагано + + + HIBC Code 128 + ХИБЦ шифра 128 + + + HIBC Code 39 + ХИБЦ шифра 39 + + + HIBC Data Matrix + ХИБЦ матрица података + + + HIBC QR Code + ХИБЦ шифра КуР + + + HIBC PDF417 + ХИБЦ ПДФ417 + + + HIBC Micro PDF417 + ХИБЦ Микро ПДФ417 + + + HIBC Aztec Code + ХИБЦ астешка шифра + + + ITF-14 + ИТФ-14 + + + Japanese Postal + Јапанска поштанска + + + Korean Postal + Корејанска поштанска + + + LOGMARS + ЛОГМАРС + + + Maxicode + Максишифра + + + Micro PDF417 + Микро ПДФ417 + + + Micro QR Code + Микро КуР шифра + + + MSI Plessey + МСИ Плеси + + + NVE-18 + НВЕ-18 + + + PDF417 + ПДФ417 + + + PDF417 Truncated + ПДФ417 скраћени + + + PLANET + ПЛАНЕТ + + + PostNet + ПостНет + + + Pharmacode + Фармацеутска шифра + + + Pharmacode 2-track + Фармацеутска шифра 2-трага + + + Pharmazentral Nummer (PZN) + Фармацеутски средишњи број (ПЗН) + + + QR Code + КуР шифра + + + Royal Mail 4-State + Шифра Краљевске поште са 4-стања + + + Telepen + Телепен + + + Telepen Numeric + Телепен бројевни + + + USPS One Code + Шифра УСПС један + + + UK Plessey + Британски Плеси Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Без наслова @@ -2480,14 +2397,14 @@ Invalid barcode data - + Неисправни подаци баркода glabels::model::ModelTextObject Text - + Текст diff --git a/translations/glabels_sr@latin.ts b/translations/glabels_sr@latin.ts index aeb930f..bec69bd 100644 --- a/translations/glabels_sr@latin.ts +++ b/translations/glabels_sr@latin.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Narandžasta Butter @@ -132,7 +132,7 @@ Black - + Crna Very Dark Gray @@ -164,29 +164,25 @@ White - + Bela Db Other - - - - Roll - + Druga Factory None - + Ništa Text: Comma Separated Values (CSV) - + Tekst: Vrednosti razdvojene zarezom (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Tekst: Vrednosti razdvojene tabulatorom (CSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + prečnik FrameRound diameter - + prečnik @@ -257,7 +246,7 @@ Source - + Izvor Location @@ -265,11 +254,11 @@ Format: - + Oblik: Location: - + Mesto: Records @@ -277,11 +266,11 @@ Select all - + Izaberi sve Unselect all - + Odznači sve @@ -292,11 +281,11 @@ Object properties - + Svojstva objekta Text - + Tekst Layout @@ -304,7 +293,7 @@ Alignment: - + Poravnanje: Line spacing: @@ -324,7 +313,7 @@ None - + Ništa Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Porodica: Size: - + Veličina: Style: - + Stil: Color: - + Boja: Editor @@ -356,11 +345,11 @@ Barcode - + Trakasta šifra Style - + Stil Type: @@ -372,15 +361,15 @@ Checksum - + Suma provere Barcode data - + Podaci barkôda Image - + Slika File @@ -404,15 +393,15 @@ Line - + Linija Width: - + Širina: Fill - + Popuna Position/Size @@ -420,27 +409,27 @@ Position - + Položaj X: - + Vodoravno: Y: - + Uspravno: Size - + Veličina Length: - + Dužina: Angle: - + Ugao: Original size: @@ -456,11 +445,11 @@ Height: - + Visina: Shadow - + Senka X offset: @@ -472,7 +461,7 @@ Opacity: - + Neprovidnost: @@ -483,19 +472,19 @@ Locale - + Lokalitet Select locale specific behavior. - + Izaberite naročito ponašanje lokaliteta. Units - + Jedinice Points - + Tačke Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milimetri Inches - + Inči Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Primeraka + + + Copies: + Primeraka: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + štampa oznake isecanja print in reverse (i.e. a mirror image) - + štampa obrnuto (npr. odraz u ogledalu) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Prodavac: TextLabel @@ -589,23 +578,23 @@ Part #: - + Deo #: Description: - + Opis: Page size: - + Veličina stranice Label size: - + Veličina nalepnice: Layout: - + Raspored: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Traži sve Search @@ -672,7 +653,7 @@ Other - + Druga Filter by category @@ -692,7 +673,7 @@ Recent - + Skorašnje Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Spoljni poluprečnik: 4. Clipping height: - + 4. Visina otsecanja: 2. Inner radius: - + 1. Unutrašnji poluprečnik: 3. Clipping width: - + 3. Širina otsecanja: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Visina: 1. Width: - + 1. Širina: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Marka: Part #: - + Deo #: Description: - + Opis: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Broj po širini (nx): Number down (ny): - + Broj po visini (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Odstojanje od leve ivice (x0): Horizontal pitch (dx): - + Vodoravni međurazmak (dx): Vertical pitch (dy): - + Uspravni međurazmak (dy): Print test sheet + Štampaj probni list + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Veličina stranice Width: - + Širina: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Visina: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Visina: + + + 1. Width: + 1. Širina: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Margina 1. Radius: - + 1. Poluprečnik: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Pravougaona ili četvrtasta (može da ima zaobljene uglove) Round - + Okrugla Elliptical - + Elipsoidna CD/DVD (including credit card CDs) - + CD/DVD (uključujući CD-ove kreditnih kartica) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Odstojanje od leve ivice (x0): Number down (ny): - - - - Distance from top edge (y0): - + Broj po visini (ny): Number across (nx): - + Broj po širini (nx): Horizontal pitch (dx): - + Vodoravni međurazmak (dx): Vertical pitch (dy): - + Uspravni međurazmak (dy): Print test sheet + Štampaj probni list + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + tačaka inches - + inča mm - + mm cm - + cm picas - + cicera @@ -1138,7 +1085,7 @@ Custom Color - + Proizvoljna boja Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Premesti Delete - + Obriši glabels::MainWindow Welcome - + Dobrodošli Edit @@ -1303,19 +1250,19 @@ Undo - + Opozovi Redo - + Povrati Cut - + Iseci Cut the selection - + Isecite izabrano &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Umnožite izabrano &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Ubacite iz ostave &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Obrišite izabrane objekte Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Izaberite sve objekte Un-select All - + Poništi izbor Remove all selections - + Uklonite sve izbore Preferences - + Postavke Configure the application - + Podesite program File @@ -1383,7 +1330,7 @@ Grid - + Mreža Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Označavanje Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Povećajte uveličanje Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Umanjite uveličanje Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Povratite razmeru na 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Podesite razmeru da ispuni prozor Select Mode - + Izaberi režim Select, move and modify objects - + Izaberite, premestite i izmenite objekte Text - + Tekst Create text object - + Napravite tekstualni objekat Box - + Kvadrat Create box object - + Napravite četvorostrani objekat Line - + Linija Create line object - + Napravite linijski objekat Ellipse - + Elipsa Create ellipse/circle object - + Napravite elipsoidni/kružni objekat Image - + Slika Create image object - + Napravite slikovni objekat Barcode - + Trakasta šifra Create barcode object - + Napravite barkodni objekat Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Poravnajte objekte na levu ivicu Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Poravnajte objekte na vodoravno središte Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Poravnajte objekte na desnu ivicu Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Poravnajte objekte na gornju ivicu Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Poravnajte objekte na uspravna središta Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Poravnajte objekte na donju ivicu Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (izmenjeno) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Izmene će biti izgubljene ako ih ne sačuvate. Save project? @@ -1675,11 +1622,11 @@ Paste - + Ubaci Delete - + Obriši Create Text @@ -1733,7 +1680,7 @@ Default - + Osnovno Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Svojstva objekta kvadrata line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Svojstva objekta elipse Image object properties - + Svojstva objekta slike image @@ -1777,11 +1724,11 @@ Line object properties - + Svojstva objekta linije Text object properties - + Svojstva objekta teksta text @@ -1789,7 +1736,7 @@ Barcode object properties - + Svojstva objekta kvadrata barcode @@ -1797,15 +1744,15 @@ Object properties - + Svojstva objekta Line - + Linija Fill - + Popuna Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Podesi sliku Move - + Premesti Size - + Veličina Text - + Tekst Shadow - + Senka @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Gore @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Umnoži @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Dobrodošli Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Broj rasporeda Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Naziv i opis Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Veličina stranice Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Druga @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Šifra 39 Code 39 Extended - + Šifra 39 prošireno UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (bilo koji) POSTNET-5 (ZIP only) - + POSTNET-5 (ZIP samo) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (Matrica podataka) EAN (any) - + EAN (bilo koji) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A ili UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Šifra 128 Code 128C - + Šifra 128C Code 128B - + Šifra 128B Interleaved 2 of 5 - + Prepleteno 2 od 5 Codabar - + Kodabar MSI - + MSI Plessey - + Plesi Code 93 - + Šifra 93 IEC18004 (QRCode) - + IEC18004 (KuR šifra) + + + Australia Post Reply Paid + Plaćen odgovor australijske pošte + + + Australia Post Route Code + Šifra dostavljanja australijske pošte + + + Australia Post Redirect + Preusmeravanje australijske pošte + + + Aztec Code + Asteška šifra + + + Aztec Rune + Asteške rune + + + Code One + Šifra jedan + + + Code 11 + Šifra 11 + + + Code 16K + Šifra 16K + + + Code 2 of 5 Matrix + Šifra 2 od 5 matrica + + + Code 2 of 5 IATA + Šifra 2 od 5 IATA + + + Code 2 of 5 Data Logic + Šifra 2 od 5 logičkih podataka + + + Code 32 (Italian Pharmacode) + Šifra 32 (šifra italijanske farmacije) + + + Code 49 + Šifra 49 + + + DAFT Code + Šifra DAFT + + + Data Matrix + Matrica podataka + + + Deutsche Post Leitcode + Šifra vođenja nemačke pošte + + + Deutsche Post Identcode + Šifra prepoznavanja nemačke pošte + + + Dutch Post KIX Code + Šifra KIKs nemačke pošte + + + EAN + EAN + + + Grid Matrix + Matrica mreže + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 Trake podataka-14 + + + GS1 DataBar-14 Stacked + GS1 Trake podataka-14 naslagano + + + GS1 DataBar-14 Stacked Omni. + GS1 Trake podataka-14 naslagano omni. + + + GS1 DataBar Extended Stacked + GS1 Trake podataka prošireno naslagano + + + HIBC Code 128 + HIBC šifra 128 + + + HIBC Code 39 + HIBC šifra 39 + + + HIBC Data Matrix + HIBC matrica podataka + + + HIBC QR Code + HIBC šifra KuR + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Mikro PDF417 + + + HIBC Aztec Code + HIBC asteška šifra + + + ITF-14 + ITF-14 + + + Japanese Postal + Japanska poštanska + + + Korean Postal + Korejanska poštanska + + + LOGMARS + LOGMARS + + + Maxicode + Maksišifra + + + Micro PDF417 + Mikro PDF417 + + + Micro QR Code + Mikro KuR šifra + + + MSI Plessey + MSI Plesi + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 skraćeni + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Farmaceutska šifra + + + Pharmacode 2-track + Farmaceutska šifra 2-traga + + + Pharmazentral Nummer (PZN) + Farmaceutski središnji broj (PZN) + + + QR Code + KuR šifra + + + Royal Mail 4-State + Šifra Kraljevske pošte sa 4-stanja + + + Telepen + Telepen + + + Telepen Numeric + Telepen brojevni + + + USPS One Code + Šifra USPS jedan + + + UK Plessey + Britanski Plesi Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Bez naslova @@ -2480,14 +2397,14 @@ Invalid barcode data - + Neispravni podaci barkoda glabels::model::ModelTextObject Text - + Tekst diff --git a/translations/glabels_sv.ts b/translations/glabels_sv.ts index 5fb4056..17fb60c 100644 --- a/translations/glabels_sv.ts +++ b/translations/glabels_sv.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Orange Butter @@ -132,7 +132,7 @@ Black - + Svart Very Dark Gray @@ -164,29 +164,25 @@ White - + Vit Db Other - - - - Roll - + Annat Factory None - + Ingen Text: Comma Separated Values (CSV) - + Text: Kommaseparerade värden (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Text: Tabulatorseparerade värden (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + diameter FrameRound diameter - + diameter @@ -257,7 +246,7 @@ Source - + Källa Location @@ -265,11 +254,11 @@ Format: - + Format: Location: - + Plats: Records @@ -277,11 +266,11 @@ Select all - + Markera alla Unselect all - + Avmarkera alla @@ -292,11 +281,11 @@ Object properties - + Objektegenskaper Text - + Text Layout @@ -304,7 +293,7 @@ Alignment: - + Justering: Line spacing: @@ -324,7 +313,7 @@ None - + Ingen Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Familj: Size: - + Storlek: Style: - + Stil: Color: - + Färg: Editor @@ -356,11 +345,11 @@ Barcode - + Streckkod Style - + Stil Type: @@ -372,15 +361,15 @@ Checksum - + Kontrollsumma Barcode data - + Streckkodsdata Image - + Bild File @@ -404,15 +393,15 @@ Line - + Linje Width: - + Bredd: Fill - + Fyll Position/Size @@ -420,27 +409,27 @@ Position - + Position X: - + X: Y: - + Y: Size - + Storlek Length: - + Längd: Angle: - + Vinkel: Original size: @@ -456,11 +445,11 @@ Height: - + Höjd: Shadow - + Skugga X offset: @@ -472,7 +461,7 @@ Opacity: - + Opacitet: @@ -483,19 +472,19 @@ Locale - + Lokalt Select locale specific behavior. - + Välj lokalt standardbeteende. Units - + Enheter Points - + Punkter Centimeters @@ -503,11 +492,11 @@ Millimeters - + Millimeter Inches - + Tum Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Kopior + + + Copies: + Kopior: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + Skriv ut markeringar för beskärning print in reverse (i.e. a mirror image) - + Omvänd utskrift (spegelvänd bild) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Leverantör: TextLabel @@ -589,23 +578,23 @@ Part #: - + Artikel #: Description: - + Beskrivning: Page size: - + Sidstorlek: Label size: - + Etikettstorlek: Layout: - + Layout: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Sök alla Search @@ -672,7 +653,7 @@ Other - + Annat Filter by category @@ -692,7 +673,7 @@ Recent - + Tidigare Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Ytterradie: 4. Clipping height: - + 4. Klipphöjd: 2. Inner radius: - + 2. Innerradie: 3. Clipping width: - + 3. Klippbredd: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Höjd: 1. Width: - + 1. Bredd: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Märke: Part #: - + Artikel #: Description: - + Beskrivning: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Antal horisontellt (nx): Number down (ny): - + Antal vertikalt (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Avstånd från vänsterkant (x0): Horizontal pitch (dx): - + Horis. delningsmått (dx): Vertical pitch (dy): - + Vert. delningsmått (dy): Print test sheet + Skriv ut testblad + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Sidstorlek: Width: - + Bredd: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Höjd: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Höjd: + + + 1. Width: + 1. Bredd: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Marginal 1. Radius: - + 1. Radie: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Rektangulär eller fyrkantig (kan ha runda hörn) Round - + Rund Elliptical - + Elliptisk CD/DVD (including credit card CDs) - + CD/DVD (inklusive kreditkorts-CD) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Avstånd från vänsterkant (x0): Number down (ny): - - - - Distance from top edge (y0): - + Antal vertikalt (ny): Number across (nx): - + Antal horisontellt (nx): Horizontal pitch (dx): - + Horis. delningsmått (dx): Vertical pitch (dy): - + Vert. delningsmått (dy): Print test sheet + Skriv ut testblad + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + punkter inches - + tum mm - + mm cm - + cm picas - + pica @@ -1138,7 +1085,7 @@ Custom Color - + Anpassad färg Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Flytta Delete - + Ta bort glabels::MainWindow Welcome - + Välkommen Edit @@ -1303,19 +1250,19 @@ Undo - + Ångra Redo - + Upprepa Cut - + Klipp ut Cut the selection - + Klipp ut markeringen &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Kopiera markeringen &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Klistra in urklipp &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Ta bort markerade objekt Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Markera alla objekt Un-select All - + Avmarkera alla Remove all selections - + Ta bort alla markeringar Preferences - + Inställningar Configure the application - + Konfigurera programmet File @@ -1383,7 +1330,7 @@ Grid - + Stödlinjer Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + Marginal Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Öka förstoring Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Minska förstoring Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Återställ skalning till 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Anpassa till fönsterstorlek Select Mode - + Markeringsläge Select, move and modify objects - + Markera, flytta och ändra objekt Text - + Text Create text object - + Skapa textobjekt Box - + Rektangel Create box object - + Skapa rektangulärt objekt Line - + Linje Create line object - + Skapa linje Ellipse - + Ellips Create ellipse/circle object - + Skapa ellips/cirkel Image - + Bild Create image object - + Skapa bild Barcode - + Streckkod Create barcode object - + Skapa streckkod Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Justera objekt mot vänster kant Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Justera objekt horisontellt mot mitten Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Justera objekt mot höger kant Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Justera objekt mot överkant Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Justera objekt vertikalt mot mitten Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Justera objekt mot underkant Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (ändrad) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Dina ändringar kommer att gå förlorade om du inte sparar dem. Save project? @@ -1675,11 +1622,11 @@ Paste - + Klistra in Delete - + Ta bort Create Text @@ -1733,7 +1680,7 @@ Default - + Standard Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Rektangelegenskaper line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Ellipsegenskaper Image object properties - + Bildegenskaper image @@ -1777,11 +1724,11 @@ Line object properties - + Linjeegenskaper Text object properties - + Textegenskaper text @@ -1789,7 +1736,7 @@ Barcode object properties - + Streckkodsegenskaper barcode @@ -1797,15 +1744,15 @@ Object properties - + Objektegenskaper Line - + Linje Fill - + Fyll Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Ange bild Move - + Flytta Size - + Storlek Text - + Text Shadow - + Skugga @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Upp @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Kopiera @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Välkommen Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Antal layouter Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + Namn och beskrivning Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Sidstorlek Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Annat @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 Extended UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (valfri) POSTNET-5 (ZIP only) - + POSTNET-5 (endast ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (valfri) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A eller UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Interleaved 2 av 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Australia Post Reply Paid + + + Australia Post Route Code + Australia Post Route Code + + + Australia Post Redirect + Australia Post Redirect + + + Aztec Code + Aztec Code + + + Aztec Rune + Aztec Rune + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + Code 2 av 5 Matrix + + + Code 2 of 5 IATA + Code 2 av 5 IATA + + + Code 2 of 5 Data Logic + Code 2 av 5 Data Logic + + + Code 32 (Italian Pharmacode) + Code 32 (Italiensk pharmacode) + + + Code 49 + Code 49 + + + DAFT Code + DAFT Code + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + Dutch Post KIX Code + + + EAN + EAN + + + Grid Matrix + Grid Matrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Stacked + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Stacked Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar Extended Stacked + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + HIBC Data Matrix + + + HIBC QR Code + HIBC QR Code + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + Japanese Postal + + + Korean Postal + Korean Postal + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 Truncated + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR Code + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen Numeric + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + Namnlös @@ -2480,14 +2397,14 @@ Invalid barcode data - + Ogiltig streckkodsdata glabels::model::ModelTextObject Text - + Text diff --git a/translations/glabels_tr.ts b/translations/glabels_tr.ts index d1731f8..f8b180e 100644 --- a/translations/glabels_tr.ts +++ b/translations/glabels_tr.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + Turuncu Butter @@ -132,7 +132,7 @@ Black - + Siyah Very Dark Gray @@ -164,29 +164,25 @@ White - + Beyaz Db Other - - - - Roll - + Diğer Factory None - + Hiçbiri Text: Comma Separated Values (CSV) - + Text: Comma Separated Values (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + Text: Tab Separated Values (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + çap FrameRound diameter - + çap @@ -257,7 +246,7 @@ Source - + Kaynak Location @@ -265,11 +254,11 @@ Format: - + Format: Location: - + Konum: Records @@ -277,11 +266,11 @@ Select all - + Tümünü seç Unselect all - + Hiçbirini seçme @@ -292,11 +281,11 @@ Object properties - + Nesne özellikleri Text - + Yazı Layout @@ -304,7 +293,7 @@ Alignment: - + Hizalanma: Line spacing: @@ -324,7 +313,7 @@ None - + Hiçbiri Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + Aile: Size: - + Boyut: Style: - + Sitil: Color: - + Renk: Editor @@ -356,11 +345,11 @@ Barcode - + Barkod Style - + Sitil Type: @@ -372,15 +361,15 @@ Checksum - + Sağlama Barcode data - + Barkod verisi Image - + Resim File @@ -404,15 +393,15 @@ Line - + Çizgi Width: - + Genişlik: Fill - + Dolgu Position/Size @@ -420,27 +409,27 @@ Position - + Pozisyon X: - + X: Y: - + Y: Size - + Boyut Length: - + Uzunluk: Angle: - + Açı: Original size: @@ -456,11 +445,11 @@ Height: - + Yükseklik: Shadow - + Gölge X offset: @@ -472,7 +461,7 @@ Opacity: - + Opaklık: @@ -483,19 +472,19 @@ Locale - + Yerel Select locale specific behavior. - + Yerele özel davranışı seç Units - + Birim Points - + Nokta Centimeters @@ -503,11 +492,11 @@ Millimeters - + Milimetre Inches - + İnç Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + Kopya + + + Copies: + Kopya: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + Kırpa izlerini yazdır print in reverse (i.e. a mirror image) - + Ters yazdır (yani, ayna görüntüsü) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + Üretici: TextLabel @@ -589,23 +578,23 @@ Part #: - + Parça #: Description: - + Tanım: Page size: - + Sayfa boyutu: Label size: - + Etiket boyu: Layout: - + Plan: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + Tümünü ara Search @@ -672,7 +653,7 @@ Other - + Diğer Filter by category @@ -692,7 +673,7 @@ Recent - + Son kullanılan Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. Dış yarıçap: 4. Clipping height: - + 4. Kırpma yüksekliği: 2. Inner radius: - + 2. İç yarıçap: 3. Clipping width: - + 3. Kırpma genişliği: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. Yükseklik: 1. Width: - + 1. Genişlik: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + Marka: Part #: - + Parça #: Description: - + Tanım: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + Genişlik numarası (nx): Number down (ny): - + Aşağı numarası (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + Sol kenardan uzaklık (x0): Horizontal pitch (dx): - + Yatayda aşağı yukarı hareket (dx): Vertical pitch (dy): - + Dikeyde aşağı yukarı hareket (dy): Print test sheet + Deneme çıktısı al + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + Sayfa boyutu: Width: - + Genişlik: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + Yükseklik: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. Yükseklik: + + + 1. Width: + 1. Genişlik: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. Sınır 1. Radius: - + 1. Yarıçap: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + Dikdörtgen veya kare (köşeleri yuvarlak olabilir) Round - + Yuvarlak Elliptical - + Elips şeklinde CD/DVD (including credit card CDs) - + CD/DVD (kredi kartı CD'leri dahil) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + Sol kenardan uzaklık (x0): Number down (ny): - - - - Distance from top edge (y0): - + Aşağı numarası (ny): Number across (nx): - + Genişlik numarası (nx): Horizontal pitch (dx): - + Yatayda aşağı yukarı hareket (dx): Vertical pitch (dy): - + Dikeyde aşağı yukarı hareket (dy): Print test sheet + Deneme çıktısı al + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + nokta inches - + inç mm - + mm cm - + cm picas - + pika @@ -1138,7 +1085,7 @@ Custom Color - + Özel renk Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + Taşı Delete - + Sil glabels::MainWindow Welcome - + Merhaba Edit @@ -1303,19 +1250,19 @@ Undo - + Geri al Redo - + Tekrar yap Cut - + Kes Cut the selection - + Seçimi kes &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + Seçimi kopyala &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + Panodakini yapıştır &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + Seçilen nesneleri sil Select &All @@ -1347,23 +1294,23 @@ Select all objects - + Tüm nesneleri seç Un-select All - + Hiç birini seçme Remove all selections - + Tüm seçimleri bırak Preferences - + Tercihler Configure the application - + Uygulamayı ayarla File @@ -1383,7 +1330,7 @@ Grid - + Kılavuz çizgiler Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + İşaretleme Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + Büyütme oranını arttır Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + Büyütme oranını azalt Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + Ölçüyü %100'e getir Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + Pencereye sığacak şekilde ölçülendir Select Mode - + Seçim modu Select, move and modify objects - + Nesneleri seç, hareket ettir veya düzenle Text - + Yazı Create text object - + Yazı nesnesi oluştur Box - + Kutu Create box object - + Kutu nesnesi oluştur Line - + Çizgi Create line object - + Çizgi nesnesi oluştur Ellipse - + Elips Create ellipse/circle object - + Elips/daire şekilnde nesne oluştur Image - + Resim Create image object - + Resim nesnesi oluştur Barcode - + Barkod Create barcode object - + Barkod nesnesi oluştur Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + Nesnelerin sol kenarlarını hizala Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + Nesnelerin yatay merkezlerini hizala Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + Nesnelerin sağ kenarlarını hizala Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + Nesnelerin üst kenarlarını hizala Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + Nesneleri dikey merkezlerine hizala Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + Nesnelerin alt kenarlarını hizala Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (değiştirilmiş) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + Kaydetmezseniz değişiklikleri kaybedeceksiniz. Save project? @@ -1675,11 +1622,11 @@ Paste - + Yapıştır Delete - + Sil Create Text @@ -1733,7 +1680,7 @@ Default - + Varsayılan Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + Kutu nesnesi özellikleri line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + Elips nesnesi özellikleri Image object properties - + Resim nesnesi özellikleri image @@ -1777,11 +1724,11 @@ Line object properties - + Çizgi nesnesi özellikleri Text object properties - + Yazı nesnesi özellikleri text @@ -1789,7 +1736,7 @@ Barcode object properties - + Barkod nesnesi özellikleri barcode @@ -1797,15 +1744,15 @@ Object properties - + Nesne özellikleri Line - + Çizgi Fill - + Dolgu Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + Resim ata Move - + Taşı Size - + Boyut Text - + Yazı Shadow - + Gölge @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + Yukarı @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + Kopayala @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + Merhaba Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + Düzenleme adeti Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + İsim ve Tanım Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + Sayfa boyutu Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + Diğer @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 Extended UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (any) POSTNET-5 (ZIP only) - + POSTNET-5 (ZIP only) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (any) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2091,302 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A veya UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Interleaved 2 of 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + Australia Post Reply Paid + + + Australia Post Route Code + Australia Post Route Code + + + Australia Post Redirect + Australia Post Redirect + + + Aztec Code + Aztec Code + + + Aztec Rune + Aztec Rune + + + Code One + Code One + + + Code 11 + Code 11 + + + Code 16K + Code 16K + + + Code 2 of 5 Matrix + Code 2 of 5 Matrix + + + Code 2 of 5 IATA + Code 2 of 5 IATA + + + Code 2 of 5 Data Logic + Code 2 of 5 Data Logic + + + Code 32 (Italian Pharmacode) + Code 32 (Italian Pharmacode) + + + Code 49 + Code 49 + + + DAFT Code + DAFT Code + + + Data Matrix + Data Matrix + + + Deutsche Post Leitcode + Deutsche Post Leitcode + + + Deutsche Post Identcode + Deutsche Post Identcode + + + Dutch Post KIX Code + Dutch Post KIX Code + + + EAN + EAN + + + Grid Matrix + Grid Matrix + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + GS1 DataBar-14 + + + GS1 DataBar-14 Stacked + GS1 DataBar-14 Stacked + + + GS1 DataBar-14 Stacked Omni. + GS1 DataBar-14 Stacked Omni. + + + GS1 DataBar Extended Stacked + GS1 DataBar Extended Stacked + + + HIBC Code 128 + HIBC Code 128 + + + HIBC Code 39 + HIBC Code 39 + + + HIBC Data Matrix + HIBC Data Matrix + + + HIBC QR Code + HIBC QR Code + + + HIBC PDF417 + HIBC PDF417 + + + HIBC Micro PDF417 + HIBC Micro PDF417 + + + HIBC Aztec Code + HIBC Aztec Code + + + ITF-14 + ITF-14 + + + Japanese Postal + Japanese Postal + + + Korean Postal + Korean Postal + + + LOGMARS + LOGMARS + + + Maxicode + Maxicode + + + Micro PDF417 + Micro PDF417 + + + Micro QR Code + Micro QR Code + + + MSI Plessey + MSI Plessey + + + NVE-18 + NVE-18 + + + PDF417 + PDF417 + + + PDF417 Truncated + PDF417 Truncated + + + PLANET + PLANET + + + PostNet + PostNet + + + Pharmacode + Pharmacode + + + Pharmacode 2-track + Pharmacode 2-track + + + Pharmazentral Nummer (PZN) + Pharmazentral Nummer (PZN) + + + QR Code + QR Code + + + Royal Mail 4-State + Royal Mail 4-State + + + Telepen + Telepen + + + Telepen Numeric + Telepen Numeric + + + USPS One Code + USPS One Code + + + UK Plessey + UK Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + İsimsiz @@ -2480,14 +2397,14 @@ Invalid barcode data - + Geçersiz barkod verisi glabels::model::ModelTextObject Text - + Yazı diff --git a/translations/glabels_uk.ts b/translations/glabels_uk.ts index e9eb396..a001f9b 100644 --- a/translations/glabels_uk.ts +++ b/translations/glabels_uk.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -173,10 +173,6 @@ Other - - Roll - - Factory @@ -235,13 +231,6 @@ - - FrameContinuous - - wide - - - FrameRound @@ -290,10 +279,6 @@ Form - - Object properties - - Text @@ -318,14 +303,6 @@ Word - - Anywhere - - - - None - - Allow printing to shrink text to fit object @@ -386,6 +363,14 @@ File + + None + + + + Anywhere + + Select File... @@ -474,6 +459,10 @@ Opacity: + + Object properties + + PreferencesDialog @@ -520,6 +509,18 @@ Form + + Page + + + + of + + + + nn + + Copies @@ -556,18 +557,6 @@ Print - - Page - - - - of - - - - nn - - PropertiesView @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -751,14 +732,6 @@ Form - - 6. Margin: - - - - 1. Outer radius: - - 4. Clipping height: @@ -768,22 +741,19 @@ - 3. Clipping width: + 1. Outer radius: 5. Waste: - - - TemplateDesignerContinuousPage - Form + 3. Clipping width: - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> + 6. Margin: @@ -793,6 +763,10 @@ Form + + 3. Waste: + + 2. Height: @@ -801,10 +775,6 @@ 1. Width: - - 3. Waste: - - 4. Margin: @@ -875,27 +845,27 @@ - (e.g. "Mailing Labels," "Business Cards," ...) + Brand: - Brand: + (e.g. Avery, Acme, ...) Part #: - - Description: - - (e.g. 8163A) - (e.g. Avery, Acme, ...) + Description: + + + + (e.g. "Mailing Labels," "Business Cards," ...) @@ -941,11 +911,7 @@ - Roll width: - - - - Height: + Page size: @@ -953,18 +919,7 @@ - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> + Height: @@ -974,36 +929,28 @@ Form - - 4. Horizontal waste: - - - - 3. Corner radius - - 1. Width: - - 5. Vertical waste: - - 2. Height: - 6. Margin (X): + 3. Corner radius - 7. Margin (Y): + 4. Horizontal waste: - in + 5. Vertical waste: + + + + 6. Margin: @@ -1014,7 +961,7 @@ - 3. Margin + 2. Waste: @@ -1022,7 +969,7 @@ - 2. Waste: + 3. Margin @@ -1197,10 +1144,6 @@ Welcome - - Edit - - Properties @@ -1213,6 +1156,10 @@ Print + + Edit + + &New... @@ -1919,10 +1866,6 @@ Product Template Designer - - Roll - - Copy @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -2042,21 +1974,6 @@ Other - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - - glabels::TemplateDesignerRectPage @@ -2240,10 +2157,6 @@ IEC18004 (QRCode) - - Australia Post Standard - - Australia Post Reply Paid @@ -2296,6 +2209,10 @@ Code 49 + + Australia Post Standard + + Code 128 (Mode C suppression) diff --git a/translations/glabels_zh_CN.ts b/translations/glabels_zh_CN.ts index cc6084e..a24debd 100644 --- a/translations/glabels_zh_CN.ts +++ b/translations/glabels_zh_CN.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + 桔红 Butter @@ -132,7 +132,7 @@ Black - + 黑色 Very Dark Gray @@ -164,29 +164,26 @@ White - + 白色 Db Other - - - - Roll - + 其它 Factory None - + Text: Comma Separated Values (CSV) - + + Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +191,7 @@ Text: Tab Separated Values (TSV) - + 文本:制表符分隔的值(TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +229,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + 直径 FrameRound diameter - + 直径 @@ -257,7 +247,7 @@ Source - + 来源 Location @@ -265,11 +255,11 @@ Format: - + 格式: Location: - + 位置: Records @@ -277,11 +267,11 @@ Select all - + 全选 Unselect all - + 取消全选 @@ -292,11 +282,11 @@ Object properties - + 对象属性 Text - + 文字 Layout @@ -304,7 +294,7 @@ Alignment: - + 对齐: Line spacing: @@ -324,7 +314,7 @@ None - + Allow printing to shrink text to fit object @@ -336,19 +326,19 @@ Family: - + 系列: Size: - + 尺寸: Style: - + 规格: Color: - + 颜色: Editor @@ -356,11 +346,11 @@ Barcode - + 条形码 Style - + 规格 Type: @@ -372,15 +362,15 @@ Checksum - + 校验值 Barcode data - + 空条形码数据 Image - + 图片 File @@ -404,15 +394,15 @@ Line - + 线条 Width: - + 宽度: Fill - + 填充 Position/Size @@ -420,27 +410,27 @@ Position - + 位置 X: - + X: Y: - + Y: Size - + 尺寸 Length: - + 长度: Angle: - + 角度: Original size: @@ -456,11 +446,11 @@ Height: - + 高度: Shadow - + 阴影 X offset: @@ -472,7 +462,7 @@ Opacity: - + 不透明: @@ -483,19 +473,19 @@ Locale - + 本地化 Select locale specific behavior. - + 本地化设置 Units - + 单位 Points - + 像素 Centimeters @@ -503,11 +493,11 @@ Millimeters - + 毫米 Inches - + 英寸 Picas @@ -521,13 +511,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + 副本 + + + Copies: + 副本 + Start on position: @@ -546,28 +548,16 @@ print crop marks - + 打印裁剪标记 print in reverse (i.e. a mirror image) - + 反转打印 (例如对称) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +571,7 @@ Vendor: - + 提供商: TextLabel @@ -589,23 +579,23 @@ Part #: - + 规格 #: Description: - + 说明: Page size: - + 纸张大小 Label size: - + 标签大小: Layout: - + 布局: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +605,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +634,7 @@ Search all - + 搜索全部 Search @@ -672,7 +654,7 @@ Other - + 其它 Filter by category @@ -692,7 +674,7 @@ Recent - + 最近 Select from recently used products. @@ -757,36 +739,25 @@ 1. Outer radius: - + 1. 外半径: 4. Clipping height: - + 4. 限高: 2. Inner radius: - + 2. 内半径: 3. Clipping width: - + 3. 限宽: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +766,11 @@ 2. Height: - + 2. 高度: 1. Width: - + 1. 宽度: 3. Waste: @@ -880,15 +851,15 @@ Brand: - + 品牌: Part #: - + 规格 #: Description: - + 说明: (e.g. 8163A) @@ -907,30 +878,30 @@ Number across (nx): - + 数字交叉 (nx): Number down (ny): - + 数字向下 (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + 到左边界的距离 (x0): Horizontal pitch (dx): - + 水平栅距 (dx): Vertical pitch (dy): - + 垂直栅距 (dy): Print test sheet + 打印测试页 + + + Distance from top edge (y0): @@ -941,31 +912,16 @@ - Roll width: - - - - Height: - + Page size: + 纸张大小 Width: - + 宽度: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + 高度: @@ -974,6 +930,14 @@ Form + + 2. Height: + 2. 高度: + + + 1. Width: + 1. 宽度: + 4. Horizontal waste: @@ -983,29 +947,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +963,11 @@ 3. Margin - + 3. 页边 1. Radius: - + 1. 半径: 2. Waste: @@ -1034,19 +982,19 @@ Rectangular or square (can have rounded corners) - + 长方形或正方形(可以倒圆角) Round - + 圆形 Elliptical - + 垂直翻转 CD/DVD (including credit card CDs) - + CD/DVD (包括信用卡CD) @@ -1057,30 +1005,30 @@ Distance from left edge (x0): - + 到左边界的距离 (x0): Number down (ny): - - - - Distance from top edge (y0): - + 数字向下 (ny): Number across (nx): - + 数字交叉 (nx): Horizontal pitch (dx): - + 水平栅距 (dx): Vertical pitch (dy): - + 垂直栅距 (dy): Print test sheet + 打印测试页 + + + Distance from top edge (y0): @@ -1088,23 +1036,24 @@ Units points - + 像素 inches - + 英寸 mm - + mm cm - + cm picas - + + @@ -1138,7 +1087,7 @@ Custom Color - + 自定义颜色 Custom color #%1 @@ -1184,18 +1133,18 @@ glabels::LabelEditor Move - + 移动 Delete - + 删除 glabels::MainWindow Welcome - + 欢迎 Edit @@ -1303,19 +1252,19 @@ Undo - + 撤销 Redo - + 重做 Cut - + 剪切 Cut the selection - + 剪切选中的内容 &Copy @@ -1323,7 +1272,7 @@ Copy the selection - + 复制选中的内容 &Paste @@ -1331,7 +1280,7 @@ Paste the clipboard - + 粘贴到剪贴板 &Delete @@ -1339,7 +1288,7 @@ Delete the selected objects - + 删除选中的对象 Select &All @@ -1347,23 +1296,23 @@ Select all objects - + 选中全部对象 Un-select All - + 取消全选 Remove all selections - + 删除全部选中的内容 Preferences - + 参数 Configure the application - + 对程序进行设置 File @@ -1383,7 +1332,7 @@ Grid - + 单元格 Change visibility of the grid in current window @@ -1391,7 +1340,7 @@ Markup - + 标记 Change visibility of markup lines in current window @@ -1403,7 +1352,7 @@ Increase magnification - + 放大 Zoom &Out @@ -1411,7 +1360,7 @@ Decrease magnification - + 缩小 Zoom &1 to 1 @@ -1419,7 +1368,7 @@ Restore scale to 100% - + 缩放到实际大小的 100% Zoom to &Fit @@ -1427,63 +1376,63 @@ Set scale to fit window - + 缩放到适合窗口 Select Mode - + 模式选择 Select, move and modify objects - + 选择,移动或删除对象 Text - + 文字 Create text object - + 新建文字对象 Box - + 矩形 Create box object - + 新建框对象 Line - + 线条 Create line object - + 新建线条对象 Ellipse - + 椭圆 Create ellipse/circle object - + 新建 椭圆/圆 对象 Image - + 图片 Create image object - + 新建图片对象 Barcode - + 条形码 Create barcode object - + 新建条形码 Bring To Front @@ -1539,7 +1488,7 @@ Align objects to left edges - + 多个对象与左边界对齐 Align Center @@ -1547,7 +1496,7 @@ Align objects to horizontal centers - + 多个对象的水平中心共线 Align Right @@ -1555,7 +1504,7 @@ Align objects to right edges - + 多个对象与左边界对齐 Align Top @@ -1563,7 +1512,7 @@ Align objects to top edges - + 多个对象与上边界对齐 Align Middle @@ -1571,7 +1520,7 @@ Align objects to vertical centers - + 多个对象的垂直中心共线 Align Bottom @@ -1579,7 +1528,7 @@ Align objects to bottom edges - + 多个对象与下边界对齐 Center Horizontally @@ -1659,7 +1608,7 @@ (modified) - + (已修改) Save changes to project "%1" before closing? @@ -1667,7 +1616,7 @@ Your changes will be lost if you don't save them. - + 如果不保存,所做的更改会丢失。 Save project? @@ -1675,11 +1624,11 @@ Paste - + 粘贴 Delete - + 删除 Create Text @@ -1733,7 +1682,7 @@ Default - + 默认值 Insert Field @@ -1749,7 +1698,7 @@ Box object properties - + 矩形属性 line/fill @@ -1765,11 +1714,11 @@ Ellipse object properties - + 椭圆属性 Image object properties - + 图片属性 image @@ -1777,11 +1726,11 @@ Line object properties - + 线条属性 Text object properties - + 文字属性 text @@ -1789,7 +1738,7 @@ Barcode object properties - + 条形码属性 barcode @@ -1797,15 +1746,15 @@ Object properties - + 对象属性 Line - + 线条 Fill - + 填充 Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1810,23 @@ Set image - + 设置图片 Move - + 移动 Size - + 尺寸 Text - + 文字 Shadow - + 阴影 @@ -1910,7 +1859,7 @@ glabels::SimplePreview Up - + 向上 @@ -1919,13 +1868,9 @@ Product Template Designer - - Roll - - Copy - + 复制 @@ -1958,17 +1903,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1918,7 @@ glabels::TemplateDesignerIntroPage Welcome - + 欢迎 Welcome to the gLabels Product Template Designer. @@ -1995,7 +1929,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + 布局个数 Please select the number of layouts required. @@ -2006,7 +1940,7 @@ glabels::TemplateDesignerNamePage Name and Description - + 名称和说明 Please enter the following identifying information about the product. @@ -2032,7 +1966,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + 纸张尺寸 Please select the product page size. @@ -2040,22 +1974,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + 其它 @@ -2106,39 +2025,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (通用) POSTNET-5 (ZIP only) - + POSTNET-5 (用于邮编) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2065,15 @@ IEC16022 (DataMatrix) - + IEC16022 (DataMatrix) EAN (any) - + EAN (通用) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2093,336 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A 或者 UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + Interleaved 2 of 5 Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + IEC18004 (QRCode) + + + Australia Post Reply Paid + + + + + Australia Post Route Code + + + + + Australia Post Redirect + + + + + Aztec Code + + + + + Aztec Rune + + + + + Code One + Code 39 + + + Code 11 + Code 128 + + + Code 16K + Code 128 + + + Code 2 of 5 Matrix + + + + + Code 2 of 5 IATA + + + + + Code 2 of 5 Data Logic + + + + + Code 32 (Italian Pharmacode) + + + + + Code 49 + Code 39 + + + DAFT Code + + + + + Data Matrix + IEC16022 (DataMatrix) + + + Deutsche Post Leitcode + + + + + Deutsche Post Identcode + + + + + Dutch Post KIX Code + + + + + EAN + EAN-8 + + + Grid Matrix + + + + + GS1-128 + GS1-128 + + + GS1 DataBar-14 + + + + + GS1 DataBar-14 Stacked + + + + + GS1 DataBar-14 Stacked Omni. + + + + + GS1 DataBar Extended Stacked + + + + + HIBC Code 128 + Code 128 + + + HIBC Code 39 + Code 39 + + + HIBC Data Matrix + IEC16022 (DataMatrix) + + + HIBC QR Code + IEC18004 (QRCode) + + + HIBC PDF417 + + + + + HIBC Micro PDF417 + + + + + HIBC Aztec Code + + + + + ITF-14 + + + + + Japanese Postal + 日本邮政 + + + Korean Postal + + + + + LOGMARS + + + + + Maxicode + 条形码 + + + Micro PDF417 + + + + + Micro QR Code + + + + + MSI Plessey + Plessey + + + NVE-18 + + + + + PDF417 + + + + + PDF417 Truncated + + + + + PLANET + CEPNET + + + PostNet + 粘贴 + + + Pharmacode + 条形码 + + + Pharmacode 2-track + 空条形码数据 + + + Pharmazentral Nummer (PZN) + + + + + QR Code + + + + + Royal Mail 4-State + + + + + Telepen + 删除 + + + Telepen Numeric + + + + + USPS One Code + + + + + UK Plessey + Plessey Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + 未命名 @@ -2480,14 +2433,14 @@ Invalid barcode data - + 条形码数据无效 glabels::model::ModelTextObject Text - + 文字 diff --git a/translations/glabels_zh_HK.ts b/translations/glabels_zh_HK.ts index 50dd0d8..18d4531 100644 --- a/translations/glabels_zh_HK.ts +++ b/translations/glabels_zh_HK.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + 橙色 Butter @@ -132,7 +132,7 @@ Black - + 黑色 Very Dark Gray @@ -164,29 +164,25 @@ White - + 白色 Db Other - - - - Roll - + 其他 Factory None - + Text: Comma Separated Values (CSV) - + 文字:逗號分隔值 (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + 文字:定位點分隔值 (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + 直徑 FrameRound diameter - + 直徑 @@ -257,7 +246,7 @@ Source - + 來源檔 Location @@ -265,11 +254,11 @@ Format: - + 格式: Location: - + 位置: Records @@ -277,11 +266,11 @@ Select all - + 全選 Unselect all - + 取消全選 @@ -292,11 +281,11 @@ Object properties - + 物件特性 Text - + 文字 Layout @@ -304,7 +293,7 @@ Alignment: - + 對齊方式: Line spacing: @@ -324,7 +313,7 @@ None - + Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + 字族: Size: - + 大小: Style: - + 樣式: Color: - + 顏色: Editor @@ -356,11 +345,11 @@ Barcode - + 條碼 Style - + 樣式 Type: @@ -372,15 +361,15 @@ Checksum - + 校驗碼 Barcode data - + 條碼資料 Image - + 圖像 File @@ -404,15 +393,15 @@ Line - + 線條 Width: - + 闊度: Fill - + 填充 Position/Size @@ -420,27 +409,27 @@ Position - + 位置 X: - + 水平: Y: - + 垂直: Size - + 大小 Length: - + 長度: Angle: - + 角度: Original size: @@ -456,11 +445,11 @@ Height: - + 高度: Shadow - + 陰影 X offset: @@ -472,7 +461,7 @@ Opacity: - + 混濁度: @@ -483,19 +472,19 @@ Locale - + 地域 Select locale specific behavior. - + 選擇針對地域的行為 Units - + 單位 Points - + Centimeters @@ -503,11 +492,11 @@ Millimeters - + 毫米 Inches - + 英吋 Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + 份數 + + + Copies: + 份數: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + 打印戳記 print in reverse (i.e. a mirror image) - + 反方向打印 (如鏡像影像) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + 生產商: TextLabel @@ -589,23 +578,23 @@ Part #: - + 產品號: Description: - + 說明: Page size: - + 頁面尺寸: Label size: - + 標籤大小: Layout: - + 版面: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + 全部搜尋 Search @@ -672,7 +653,7 @@ Other - + 其他 Filter by category @@ -692,7 +673,7 @@ Recent - + 最近使用 Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. 外半徑: 4. Clipping height: - + 4. 夾高度: 2. Inner radius: - + 2. 內半徑: 3. Clipping width: - + 3. 夾闊度: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. 高度: 1. Width: - + 1. 闊度: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + 品牌: Part #: - + 產品號: Description: - + 說明: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + 橫向標籤數 (nx): Number down (ny): - + 直向標籤數 (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + 與左方邊沿距離 (x0): Horizontal pitch (dx): - + 水平間距 (dx): Vertical pitch (dy): - + 垂直間距 (dy): Print test sheet + 打印測試頁 + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + 頁面尺寸: Width: - + 闊度: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + 高度: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. 高度: + + + 1. Width: + 1. 闊度: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. 邊距 1. Radius: - + 1. 半徑: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + 長方形或正方形 (可以是圓角) Round - + 圓形 Elliptical - + 橢圓 CD/DVD (including credit card CDs) - + CD/DVD (包括信用卡型 CD) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + 與左方邊沿距離 (x0): Number down (ny): - - - - Distance from top edge (y0): - + 直向標籤數 (ny): Number across (nx): - + 橫向標籤數 (nx): Horizontal pitch (dx): - + 水平間距 (dx): Vertical pitch (dy): - + 垂直間距 (dy): Print test sheet + 打印測試頁 + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + inches - + 英吋 mm - + 毫米 cm - + 厘米 picas - + 皮卡(pica) @@ -1138,7 +1085,7 @@ Custom Color - + 自選顏色 Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + 移動 Delete - + 刪除 glabels::MainWindow Welcome - + 歡迎 Edit @@ -1303,19 +1250,19 @@ Undo - + 復原 Redo - + 取消復原 Cut - + 剪下 Cut the selection - + 剪下選擇範圍 &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + 複製選擇範圍 &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + 貼上剪貼簿 &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + 刪除所選物件 Select &All @@ -1347,23 +1294,23 @@ Select all objects - + 選取全部物件 Un-select All - + 取消全選 Remove all selections - + 移除所有選擇範圍 Preferences - + 偏好設定 Configure the application - + 設定應用程式 File @@ -1383,7 +1330,7 @@ Grid - + 格線 Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + 標記 Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + 增加放大率 Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + 減少放大率 Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + 縮放至 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + 縮放至適合視窗 Select Mode - + 選取模式 Select, move and modify objects - + 選取、移動及修改物件 Text - + 文字 Create text object - + 建立文字物件 Box - + 方塊 Create box object - + 建立方塊物件 Line - + 線條 Create line object - + 建立線條物件 Ellipse - + 橢圓 Create ellipse/circle object - + 建立橢圓或圓形物件 Image - + 圖像 Create image object - + 建立圖像物件 Barcode - + 條碼 Create barcode object - + 建立條碼物件 Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + 將物件對齊左邊 Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + 將物件對齊水平中心 Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + 將物件對齊右邊 Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + 將物件對齊上邊 Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + 將物件對齊垂直中心 Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + 將物件對齊下邊 Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (已修改) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + 如不儲存,所作之更改會丟失。 Save project? @@ -1675,11 +1622,11 @@ Paste - + 貼上 Delete - + 刪除 Create Text @@ -1733,7 +1680,7 @@ Default - + 預設 Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + 方塊物件特性 line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + 橢圓物件特性 Image object properties - + 圖像物件特性 image @@ -1777,11 +1724,11 @@ Line object properties - + 線條物件特性 Text object properties - + 文字物件特性 text @@ -1789,7 +1736,7 @@ Barcode object properties - + 條碼物件特性 barcode @@ -1797,15 +1744,15 @@ Object properties - + 物件特性 Line - + 線條 Fill - + 填充 Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + 設定圖像 Move - + 移動 Size - + 大小 Text - + 文字 Shadow - + 陰影 @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + 複製 @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + 歡迎 Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + 配置數目 Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + 名稱或說明 Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + 頁面尺寸 Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + 其他 @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 Extended UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (任何) POSTNET-5 (ZIP only) - + POSTNET-5 (僅 ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,16 @@ IEC16022 (DataMatrix) - + + EAN (any) - + EAN (任何) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2092,348 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A 或 UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + + Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + + + + + Australia Post Reply Paid + 澳洲郵政 Reply Paid + + + Australia Post Route Code + 澳洲郵政 Route Code + + + Australia Post Redirect + 澳洲郵政 Redirect + + + Aztec Code + + + + + Aztec Rune + + + + + Code One + + + + + Code 11 + + + + + Code 16K + + + + + Code 2 of 5 Matrix + + + + + Code 2 of 5 IATA + + + + + Code 2 of 5 Data Logic + + + + + Code 32 (Italian Pharmacode) + + + + + Code 49 + + + + + DAFT Code + + + + + Data Matrix + + + + + Deutsche Post Leitcode + 德國郵政 Leitcode + + + Deutsche Post Identcode + 德國郵政 Identcode + + + Dutch Post KIX Code + 荷蘭郵政 KIX Code + + + EAN + EAN + + + Grid Matrix + + + + + GS1-128 + + + + + GS1 DataBar-14 + + + + + GS1 DataBar-14 Stacked + + + + + GS1 DataBar-14 Stacked Omni. + + + + + GS1 DataBar Extended Stacked + + + + + HIBC Code 128 + + + + + HIBC Code 39 + + + + + HIBC Data Matrix + + + + + HIBC QR Code + + + + + HIBC PDF417 + + + + + HIBC Micro PDF417 + + + + + HIBC Aztec Code + + + + + ITF-14 + + + + + Japanese Postal + 日本郵政 + + + Korean Postal + 韓國郵政 + + + LOGMARS + + + + + Maxicode + + + + + Micro PDF417 + + + + + Micro QR Code + + + + + MSI Plessey + + + + + NVE-18 + + + + + PDF417 + + + + + PDF417 Truncated + + + + + PLANET + + + + + PostNet + + + + + Pharmacode + + + + + Pharmacode 2-track + + + + + Pharmazentral Nummer (PZN) + + + + + QR Code + QR 碼 + + + Royal Mail 4-State + + + + + Telepen + + + + + Telepen Numeric + + + + + USPS One Code + + + + + UK Plessey + + Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + 未命名 @@ -2480,14 +2444,14 @@ Invalid barcode data - + 條碼資料無效 glabels::model::ModelTextObject Text - + 文字 diff --git a/translations/glabels_zh_TW.ts b/translations/glabels_zh_TW.ts index a0c7d79..7ac516c 100644 --- a/translations/glabels_zh_TW.ts +++ b/translations/glabels_zh_TW.ts @@ -1,6 +1,6 @@ - + AboutDialog @@ -64,7 +64,7 @@ Orange - + 橙色 Butter @@ -132,7 +132,7 @@ Black - + 黑色 Very Dark Gray @@ -164,29 +164,25 @@ White - + 白色 Db Other - - - - Roll - + 其他 Factory None - + Text: Comma Separated Values (CSV) - + 文字:逗號分隔值 (CSV) Text: Comma Separated Values (CSV), keys on line 1 @@ -194,7 +190,7 @@ Text: Tab Separated Values (TSV) - + 文字:定位點分隔值 (TSV) Text: Tab Separated Values (TSV), keys on line 1 @@ -232,21 +228,14 @@ FrameCd diameter - - - - - FrameContinuous - - wide - + 直徑 FrameRound diameter - + 直徑 @@ -257,7 +246,7 @@ Source - + 來源檔 Location @@ -265,11 +254,11 @@ Format: - + 格式: Location: - + 位置: Records @@ -277,11 +266,11 @@ Select all - + 全選 Unselect all - + 取消全選 @@ -292,11 +281,11 @@ Object properties - + 物件特性 Text - + 文字 Layout @@ -304,7 +293,7 @@ Alignment: - + 對齊方式: Line spacing: @@ -324,7 +313,7 @@ None - + Allow printing to shrink text to fit object @@ -336,19 +325,19 @@ Family: - + 字族: Size: - + 大小: Style: - + 樣式: Color: - + 顏色: Editor @@ -356,11 +345,11 @@ Barcode - + 條碼 Style - + 樣式 Type: @@ -372,15 +361,15 @@ Checksum - + 校驗碼 Barcode data - + 條碼資料 Image - + 圖像 File @@ -404,15 +393,15 @@ Line - + 線條 Width: - + 寬度: Fill - + 填充 Position/Size @@ -420,27 +409,27 @@ Position - + 位置 X: - + 水平: Y: - + 垂直: Size - + 大小 Length: - + 長度: Angle: - + 角度: Original size: @@ -456,11 +445,11 @@ Height: - + 高度: Shadow - + 陰影 X offset: @@ -472,7 +461,7 @@ Opacity: - + 混濁度: @@ -483,19 +472,19 @@ Locale - + 地域 Select locale specific behavior. - + 選擇針對地域的行為 Units - + 單位 Points - + Centimeters @@ -503,11 +492,11 @@ Millimeters - + 公釐(mm) Inches - + 英吋 Picas @@ -521,13 +510,25 @@ - Copies + Page - Copies: + of + + nn + + + + Copies + 份數 + + + Copies: + 份數: + Start on position: @@ -546,28 +547,16 @@ print crop marks - + 列印戳記 print in reverse (i.e. a mirror image) - + 反方向列印 (如鏡像影像) Print - - Page - - - - of - - - - nn - - PropertiesView @@ -581,7 +570,7 @@ Vendor: - + 生產商: TextLabel @@ -589,23 +578,23 @@ Part #: - + 產品號: Description: - + 說明: Page size: - + 頁面尺寸: Label size: - + 標籤大小: Layout: - + 版面: <html><head/><body><p>Select another product for this gLabels project.</p></body></html> @@ -615,14 +604,6 @@ Change product - - Adjustable Parameters - - - - Label length: - - Orientation @@ -652,7 +633,7 @@ Search all - + 全部搜尋 Search @@ -672,7 +653,7 @@ Other - + 其他 Filter by category @@ -692,7 +673,7 @@ Recent - + 最近使用 Select from recently used products. @@ -757,36 +738,25 @@ 1. Outer radius: - + 1. 外半徑: 4. Clipping height: - + 4. 夾高度: 2. Inner radius: - + 2. 內半徑: 3. Clipping width: - + 3. 夾寬度: 5. Waste: - - TemplateDesignerContinuousPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - - - TemplateDesignerEllipsePage @@ -795,11 +765,11 @@ 2. Height: - + 2. 高度: 1. Width: - + 1. 寬度: 3. Waste: @@ -880,15 +850,15 @@ Brand: - + 品牌: Part #: - + 產品號: Description: - + 說明: (e.g. 8163A) @@ -907,30 +877,30 @@ Number across (nx): - + 橫向標籤數 (nx): Number down (ny): - + 縱向標籤數 (ny): Distance from left edge (x0): - - - - Distance from top edge (y0): - + 與左方邊沿距離 (x0): Horizontal pitch (dx): - + 水平間距 (dx): Vertical pitch (dy): - + 垂直間距 (dy): Print test sheet + 列印測試頁 + + + Distance from top edge (y0): @@ -941,31 +911,16 @@ - Roll width: - - - - Height: - + Page size: + 頁面尺寸: Width: - + 寬度: - Page size: - - - - - TemplateDesignerPathPage - - Form - - - - <html><head/><body><p>Click &quot;Cancel&quot; to quit, or click &quot;Back&quot; to begin with a different product.</p></body></html> - + Height: + 高度: @@ -974,6 +929,14 @@ Form + + 2. Height: + 2. 高度: + + + 1. Width: + 1. 寬度: + 4. Horizontal waste: @@ -983,29 +946,13 @@ - 1. Width: + 6. Margin: 5. Vertical waste: - - 2. Height: - - - - 6. Margin (X): - - - - 7. Margin (Y): - - - - in - - TemplateDesignerRoundPage @@ -1015,11 +962,11 @@ 3. Margin - + 3. 邊距 1. Radius: - + 1. 半徑: 2. Waste: @@ -1034,19 +981,19 @@ Rectangular or square (can have rounded corners) - + 長方形或正方形 (可以是圓角) Round - + 圓形 Elliptical - + 橢圓 CD/DVD (including credit card CDs) - + CD/DVD (包括信用卡型 CD) @@ -1057,30 +1004,30 @@ Distance from left edge (x0): - + 與左方邊沿距離 (x0): Number down (ny): - - - - Distance from top edge (y0): - + 縱向標籤數 (ny): Number across (nx): - + 橫向標籤數 (nx): Horizontal pitch (dx): - + 水平間距 (dx): Vertical pitch (dy): - + 垂直間距 (dy): Print test sheet + 列印測試頁 + + + Distance from top edge (y0): @@ -1088,23 +1035,23 @@ Units points - + inches - + 英吋 mm - + 公釐(mm) cm - + 公分(cm) picas - + 皮卡(pica) @@ -1138,7 +1085,7 @@ Custom Color - + 自訂顏色 Custom color #%1 @@ -1184,18 +1131,18 @@ glabels::LabelEditor Move - + 移動 Delete - + 刪除 glabels::MainWindow Welcome - + 歡迎 Edit @@ -1303,19 +1250,19 @@ Undo - + 復原 Redo - + 取消復原 Cut - + 剪下 Cut the selection - + 剪下選擇範圍 &Copy @@ -1323,7 +1270,7 @@ Copy the selection - + 複製選擇範圍 &Paste @@ -1331,7 +1278,7 @@ Paste the clipboard - + 貼上剪貼簿 &Delete @@ -1339,7 +1286,7 @@ Delete the selected objects - + 刪除所選物件 Select &All @@ -1347,23 +1294,23 @@ Select all objects - + 選取全部物件 Un-select All - + 取消全選 Remove all selections - + 移除所有選擇範圍 Preferences - + 偏好設定 Configure the application - + 設定應用程式 File @@ -1383,7 +1330,7 @@ Grid - + 格線 Change visibility of the grid in current window @@ -1391,7 +1338,7 @@ Markup - + 標記 Change visibility of markup lines in current window @@ -1403,7 +1350,7 @@ Increase magnification - + 增加放大率 Zoom &Out @@ -1411,7 +1358,7 @@ Decrease magnification - + 減少放大率 Zoom &1 to 1 @@ -1419,7 +1366,7 @@ Restore scale to 100% - + 縮放至 100% Zoom to &Fit @@ -1427,63 +1374,63 @@ Set scale to fit window - + 縮放至適合視窗 Select Mode - + 選取模式 Select, move and modify objects - + 選取、移動及修改物件 Text - + 文字 Create text object - + 建立文字物件 Box - + 方塊 Create box object - + 建立方塊物件 Line - + 線條 Create line object - + 建立線條物件 Ellipse - + 橢圓 Create ellipse/circle object - + 建立橢圓或圓形物件 Image - + 圖像 Create image object - + 建立圖像物件 Barcode - + 條碼 Create barcode object - + 建立條碼物件 Bring To Front @@ -1539,7 +1486,7 @@ Align objects to left edges - + 將物件對齊左邊 Align Center @@ -1547,7 +1494,7 @@ Align objects to horizontal centers - + 將物件對齊水平中心 Align Right @@ -1555,7 +1502,7 @@ Align objects to right edges - + 將物件對齊右邊 Align Top @@ -1563,7 +1510,7 @@ Align objects to top edges - + 將物件對齊上邊 Align Middle @@ -1571,7 +1518,7 @@ Align objects to vertical centers - + 將物件對齊垂直中心 Align Bottom @@ -1579,7 +1526,7 @@ Align objects to bottom edges - + 將物件對齊下邊 Center Horizontally @@ -1659,7 +1606,7 @@ (modified) - + (已修改) Save changes to project "%1" before closing? @@ -1667,7 +1614,7 @@ Your changes will be lost if you don't save them. - + 如不儲存,所作之變更會丟失。 Save project? @@ -1675,11 +1622,11 @@ Paste - + 貼上 Delete - + 刪除 Create Text @@ -1733,7 +1680,7 @@ Default - + 預設 Insert Field @@ -1749,7 +1696,7 @@ Box object properties - + 方塊物件特性 line/fill @@ -1765,11 +1712,11 @@ Ellipse object properties - + 橢圓物件特性 Image object properties - + 圖像物件特性 image @@ -1777,11 +1724,11 @@ Line object properties - + 線條物件特性 Text object properties - + 文字物件特性 text @@ -1789,7 +1736,7 @@ Barcode object properties - + 條碼物件特性 barcode @@ -1797,15 +1744,15 @@ Object properties - + 物件特性 Line - + 線條 Fill - + 填充 Image files (*.png *.jpg *.jpeg *.gif *.bmp *.pbm *.pgm *.ppm *.xbm *.xpm *.svg) @@ -1861,23 +1808,23 @@ Set image - + 設定圖像 Move - + 移動 Size - + 大小 Text - + 文字 Shadow - + 陰影 @@ -1910,7 +1857,7 @@ glabels::SimplePreview Up - + @@ -1919,13 +1866,9 @@ Product Template Designer - - Roll - - Copy - + 複製 @@ -1958,17 +1901,6 @@ - - glabels::TemplateDesignerContinuousPage - - Unsupported Product Style - - - - Continuous tape product templates are not currently supported by the Product Template Designer. - - - glabels::TemplateDesignerEllipsePage @@ -1984,7 +1916,7 @@ glabels::TemplateDesignerIntroPage Welcome - + 歡迎 Welcome to the gLabels Product Template Designer. @@ -1995,7 +1927,7 @@ glabels::TemplateDesignerNLayoutsPage Number of Layouts - + 配置數目 Please select the number of layouts required. @@ -2006,7 +1938,7 @@ glabels::TemplateDesignerNamePage Name and Description - + 名稱或說明 Please enter the following identifying information about the product. @@ -2032,7 +1964,7 @@ glabels::TemplateDesignerPageSizePage Page Size - + 頁面尺寸 Please select the product page size. @@ -2040,22 +1972,7 @@ Other - - - - Roll - - - - - glabels::TemplateDesignerPathPage - - Unsupported Product Style - - - - Path based product templates are not currently supported by the Product Template Designer. - + 其他 @@ -2106,39 +2023,39 @@ glabels::barcode::Backends Code 39 - + Code 39 Code 39 Extended - + Code 39 Extended UPC-A - + UPC-A EAN-13 - + EAN-13 POSTNET (any) - + POSTNET (任何) POSTNET-5 (ZIP only) - + POSTNET-5 (僅 ZIP) POSTNET-9 (ZIP+4) - + POSTNET-9 (ZIP+4) POSTNET-11 (DPBC) - + POSTNET-11 (DPBC) CEPNET - + CEPNET USPS Intelligent Mail @@ -2146,15 +2063,16 @@ IEC16022 (DataMatrix) - + + EAN (any) - + EAN (任何) EAN-8 - + EAN-8 EAN-8+2 @@ -2174,302 +2092,348 @@ UPC (UPC-A or UPC-E) - + UPC (UPC-A 或 UPC-E) UPC-A +2 - + UPC-A +2 UPC-A +5 - + UPC-A +5 UPC-E - + UPC-E UPC-E +2 - + UPC-E +2 UPC-E +5 - + UPC-E +5 ISBN - + ISBN ISBN +5 - + ISBN +5 Code 128 - + Code 128 Code 128C - + Code 128C Code 128B - + Code 128B Interleaved 2 of 5 - + + Codabar - + Codabar MSI - + MSI Plessey - + Plessey Code 93 - + Code 93 IEC18004 (QRCode) - + + + + + Australia Post Reply Paid + 澳洲郵政 Reply Paid + + + Australia Post Route Code + 澳洲郵政 Route Code + + + Australia Post Redirect + 澳洲郵政 Redirect + + + Aztec Code + + + + + Aztec Rune + + + + + Code One + + + + + Code 11 + + + + + Code 16K + + + + + Code 2 of 5 Matrix + + + + + Code 2 of 5 IATA + + + + + Code 2 of 5 Data Logic + + + + + Code 32 (Italian Pharmacode) + + + + + Code 49 + + + + + DAFT Code + + + + + Data Matrix + + + + + Deutsche Post Leitcode + 德國郵政 Leitcode + + + Deutsche Post Identcode + 德國郵政 Identcode + + + Dutch Post KIX Code + 荷蘭郵政 KIX Code + + + EAN + EAN + + + Grid Matrix + + + + + GS1-128 + + + + + GS1 DataBar-14 + + + + + GS1 DataBar-14 Stacked + + + + + GS1 DataBar-14 Stacked Omni. + + + + + GS1 DataBar Extended Stacked + + + + + HIBC Code 128 + + + + + HIBC Code 39 + + + + + HIBC Data Matrix + + + + + HIBC QR Code + + + + + HIBC PDF417 + + + + + HIBC Micro PDF417 + + + + + HIBC Aztec Code + + + + + ITF-14 + + + + + Japanese Postal + 日本郵政 + + + Korean Postal + 韓國郵政 + + + LOGMARS + + + + + Maxicode + + + + + Micro PDF417 + + + + + Micro QR Code + + + + + MSI Plessey + + + + + NVE-18 + + + + + PDF417 + + + + + PDF417 Truncated + + + + + PLANET + + + + + PostNet + + + + + Pharmacode + + + + + Pharmacode 2-track + + + + + Pharmazentral Nummer (PZN) + + + + + QR Code + QR 碼 + + + Royal Mail 4-State + + + + + Telepen + + + + + Telepen Numeric + + + + + USPS One Code + + + + + UK Plessey + + Australia Post Standard - - Australia Post Reply Paid - - - - Australia Post Route Code - - - - Australia Post Redirect - - - - Aztec Code - - - - Aztec Rune - - - - Code One - - - - Code 11 - - - - Code 16K - - - - Code 2 of 5 Matrix - - - - Code 2 of 5 IATA - - - - Code 2 of 5 Data Logic - - - - Code 32 (Italian Pharmacode) - - - - Code 49 - - Code 128 (Mode C suppression) - - DAFT Code - - - - Data Matrix - - - - Deutsche Post Leitcode - - - - Deutsche Post Identcode - - - - Dutch Post KIX Code - - - - EAN - - - - Grid Matrix - - - - GS1-128 - - - - GS1 DataBar-14 - - - - GS1 DataBar-14 Stacked - - - - GS1 DataBar-14 Stacked Omni. - - - - GS1 DataBar Extended Stacked - - - - HIBC Code 128 - - - - HIBC Code 39 - - - - HIBC Data Matrix - - - - HIBC QR Code - - - - HIBC PDF417 - - - - HIBC Micro PDF417 - - - - HIBC Aztec Code - - - - ITF-14 - - - - Japanese Postal - - - - Korean Postal - - - - LOGMARS - - - - Maxicode - - - - Micro PDF417 - - - - Micro QR Code - - - - MSI Plessey - - - - NVE-18 - - - - PDF417 - - - - PDF417 Truncated - - - - PLANET - - - - PostNet - - - - Pharmacode - - - - Pharmacode 2-track - - - - Pharmazentral Nummer (PZN) - - - - QR Code - - - - Royal Mail 4-State - - - - Telepen - - - - Telepen Numeric - - - - USPS One Code - - - - UK Plessey - - glabels::model::Model Untitled - + 未命名 @@ -2480,14 +2444,14 @@ Invalid barcode data - + 條碼資料無效 glabels::model::ModelTextObject Text - + 文字 diff --git a/translations/templates_C.ts b/translations/templates_C.ts index 7d7d365..5670957 100644 --- a/translations/templates_C.ts +++ b/translations/templates_C.ts @@ -27,14 +27,6 @@ Barcode labels - - Bookplate labels - - - - Bottle/jar labels - - Business card CD labels @@ -71,18 +63,6 @@ CD/DVD center hub labels - - CD/DVD insert - - - - CD/DVD insert (back) - - - - CD/DVD insert (front) - - CD/DVD labels @@ -99,10 +79,6 @@ CD/DVD labels (rectangles) - - CD/DVD labels (spine labels) - - CD/DVD labels (spine only) @@ -115,10 +91,6 @@ CD/DVD tray - - Candle labels - - Candy labels @@ -127,10 +99,6 @@ Cassette labels - - Classification labels - - Coffee and tea labels @@ -143,10 +111,6 @@ DLT labels - - DVD insert - - Digital media labels @@ -159,10 +123,6 @@ Diskette labels - - Divider labels - - Elliptical labels @@ -171,10 +131,6 @@ File folder labels - - File labels - - Filing labels @@ -219,10 +175,6 @@ ID labels - - Index cards - - Labels @@ -231,14 +183,6 @@ Large address labels - - Large arch file labels - - - - Large round labels - - Lever arch file labels @@ -319,14 +263,6 @@ Photo products - - Post cards - - - - Postage stamp labels - - Printable mousepad @@ -363,10 +299,6 @@ Target stickers - - Tent cards - - Trapezoid labels @@ -375,26 +307,6 @@ Triangular labels - - Tube labels - - - - VHS face labels - - - - VHS insert - - - - VHS labels - - - - VHS-C insert - - Video labels (face only) @@ -407,6 +319,94 @@ Video tape spine labels + + Zip disc labels + + + + Bookplate labels + + + + Bottle/jar labels + + + + Candle labels + + + + Classification labels + + + + File labels + + + + VHS face labels + + + + VHS labels + + + + Large arch file labels + + + + Tube labels + + + + CD/DVD insert + + + + CD/DVD insert (back) + + + + CD/DVD insert (front) + + + + CD/DVD labels (spine labels) + + + + DVD insert + + + + Divider labels + + + + Index cards + + + + Large round labels + + + + Post cards + + + + Tent cards + + + + VHS insert + + + + VHS-C insert + + Video-8 insert @@ -420,11 +420,11 @@ - Zip disc labels + Continuous label tape - Continuous label tape + Postage stamp labels diff --git a/translations/templates_ar.ts b/translations/templates_ar.ts index e860ae9..4a1159a 100644 --- a/translations/templates_ar.ts +++ b/translations/templates_ar.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + ملصقات عناوين Any card - + كل البطاقات Any label - + كل الملصقات Arch file inserts @@ -45,7 +45,7 @@ Business cards - + بطاقة رجال الأعمال CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + ملصقات سيدي/دفيدي CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + بطاقات أقراص حاسب CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + ملصقات الأقراص المرنة Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + ملصقات بيضاوية File folder labels @@ -181,19 +181,21 @@ Floppy disk labels - + ملصقات القرص المرن Flyer paper - + + Foldable business cards - + + Foldable cards - + بطاقات مطوية Full face CD/DVD labels @@ -209,7 +211,7 @@ Greeting cards - + بطاقات تهنئة Hanging folder labels @@ -225,7 +227,7 @@ Labels - + الملصقات Large address labels @@ -249,11 +251,11 @@ Mailing labels - + ملصقات بريدية Mailing/shipping products - + مغلفات البريد/الشحن Medical chart labels @@ -261,7 +263,7 @@ Membership cards - + بطاقات عضوية Metal tin container labels @@ -273,7 +275,8 @@ Mini Disc labels - + + Mini address labels @@ -297,7 +300,8 @@ Name plates - + + Nutritional labels @@ -309,31 +313,29 @@ Passport photo labels - + + Photo labels - + ملصقات الصور Photo products - + صور Post cards - - - - Postage stamp labels - + بطاقة بريدية Printable mousepad - + + Rectangular labels - + ملصقات مستطيلة Return address labels @@ -341,11 +343,12 @@ Round labels - + ملصقات دائرية SD card labels - + + Seal labels @@ -353,11 +356,11 @@ Shipping labels - + ملصقات شحن Square labels - + ملصقات مربعة Target stickers @@ -369,11 +372,13 @@ Trapezoid labels - + + Triangular labels - + + Tube labels @@ -421,11 +426,8 @@ Zip disc labels - - - - Continuous label tape - + + diff --git a/translations/templates_bs.ts b/translations/templates_bs.ts index 88fe17d..b19bfe0 100644 --- a/translations/templates_bs.ts +++ b/translations/templates_bs.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Adresne naljepnice Any card - + Bilo koja karta Any label - + Bilo koja oznaka Arch file inserts @@ -45,7 +45,7 @@ Business cards - + Vizit karta CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + CD/DVD naljepnice CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD ili drugi medij CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + Dikseta naljepnice Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + Eliprična oznaka File folder labels @@ -181,19 +181,19 @@ Floppy disk labels - + Floppy disk naljepnice Flyer paper - + Letak papir Foldable business cards - + Sklopive vizit karte Foldable cards - + Sklopive karte Full face CD/DVD labels @@ -209,7 +209,7 @@ Greeting cards - + Čestitke Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Oznake Large address labels @@ -249,11 +249,11 @@ Mailing labels - + Slanje naljepnica Mailing/shipping products - + Slanje/Otpremanje proizvoda Medical chart labels @@ -261,7 +261,7 @@ Membership cards - + Članske kartice Metal tin container labels @@ -273,7 +273,7 @@ Mini Disc labels - + Mini Disk naljepnice Mini address labels @@ -297,7 +297,7 @@ Name plates - + Ploče sa imenima Nutritional labels @@ -309,31 +309,27 @@ Passport photo labels - + Naljepnice za sliku pasoša Photo labels - + Foto naljepnice Photo products - + Foto proizvodi Post cards - - - - Postage stamp labels - + Poštanske karte Printable mousepad - + Pogdloga za miša koja se može štampati Rectangular labels - + Pravougaona oznaka Return address labels @@ -341,11 +337,11 @@ Round labels - + Okrugla oznaka SD card labels - + Naljepnice za SD kartice Seal labels @@ -353,11 +349,11 @@ Shipping labels - + Naljepnice za dostavu Square labels - + Kvadratna oznaka Target stickers @@ -369,11 +365,11 @@ Trapezoid labels - + Trapezoidni naljepnice Triangular labels - + Trougaone naljepnice Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Zip disk naljepnice diff --git a/translations/templates_ca.ts b/translations/templates_ca.ts index cede763..d7d27a9 100644 --- a/translations/templates_ca.ts +++ b/translations/templates_ca.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Etiquetes d'adreça Any card - + Qualsevol targeta Any label - + Qualsevol etiqueta Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Etiquetes de codi de barres Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + Etiquetes de CD de targeta de visita Business card size labels - + Etiquetes de la mida de targeta de visita Business cards - + Targetes de visita CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + Etiquetes de bobina de CD/DVD CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + Etiquetes de CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD o un altre suport CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Etiquetes d'espelma Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Etiquetes de te i de cafè Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Etiquetes de suports digitals Digital video labels - + Etiquetes de vídeo digital Diskette labels - + Etiquetes de disquet Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Etiquetes el·líptiques File folder labels - + Etiquetes d'arxivador File labels @@ -177,27 +177,27 @@ Filing labels - + Etiquetes d'emplenament Floppy disk labels - + Etiquetes de disquets Flyer paper - + Full de mà Foldable business cards - + Targetes de visita plegables Foldable cards - + Targetes plegables Full face CD/DVD labels - + Etiquetes de CD/DVD integrals Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Targetes de felicitació Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Etiquetes Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Etiquetes de correu Mailing/shipping products - + Productes de correu/facturació Medical chart labels - + Etiquetes mèdiques Membership cards - + Targetes d'afiliació Metal tin container labels - + Etiquetes de llauna Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Etiquetes de Mini Disc Mini address labels @@ -297,71 +297,67 @@ Name plates - + Plaques amb nom Nutritional labels - + Etiquetes nutricionals Paper hole reinforcement labels - + Etiquetes per reforçar el paper amb forats Passport photo labels - + Etiquetes de foto del passaport Photo labels - + Etiquetes de fotografia Photo products - + Productes de fotografia Post cards - - - - Postage stamp labels - + Postals Printable mousepad - + Estoreta del ratolí imprimible Rectangular labels - + Etiquetes rectangulars Return address labels - + Etiquetes d'adreça de retorn Round labels - + Etiquetes arrodonides SD card labels - + Etiquetes de targeta SD Seal labels - + Etiquetes de sellat Shipping labels - + Etiquetes d'enviament Square labels - + Etiquetes quadrades Target stickers - + Adhesius de diana Tent cards @@ -369,11 +365,11 @@ Trapezoid labels - + Etiquetes trapezoide Triangular labels - + Etiquetes triangulars Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Etiquetes de discs Zip diff --git a/translations/templates_cs.ts b/translations/templates_cs.ts index e9baf6e..5242b9f 100644 --- a/translations/templates_cs.ts +++ b/translations/templates_cs.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Adresní etikety Any card - + Libovolná karta Any label - + Libovolná etiketa Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Etikety pro čárové kódy Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + Etikety na vizitkové CD Business card size labels - + Etikety na vizitkové CD Business cards - + Vizitky CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + Etikety na střed CD/DVD CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + Etikety na CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD nebo jiná média CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Etikety na cukrovinky Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Etikety na kávy a čaje Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Etikety na digitální média Digital video labels - + Etikety pro digitální video Diskette labels - + Etikety na diskety Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Oválné etikety File folder labels - + Etikety na složky File labels @@ -177,27 +177,27 @@ Filing labels - + Etikety na kartotéky Floppy disk labels - + Etikety na diskety Flyer paper - + Letákový papír Foldable business cards - + Skládací vizitky Foldable cards - + Přání Full face CD/DVD labels - + Etikety na celé CD/DVD Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Pohlednice Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Etikety Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Poštovní etikety Mailing/shipping products - + Poštovní/přepravní produkty Medical chart labels - + Etikety na lékařské záznamy Membership cards - + Členské karty Metal tin container labels - + Etikety na plechové krabičky Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Etikety na Mini disky Mini address labels @@ -297,71 +297,67 @@ Name plates - + Cedule Nutritional labels - + Etikety na složení potravin Paper hole reinforcement labels - + Zpevnění pořadačových děr v papíru Passport photo labels - + Fotografické etikety na průkazy Photo labels - + Fotografické etikety Photo products - + Fotografické produkty Post cards - - - - Postage stamp labels - + Pohlednice Printable mousepad - + Potisknutelná podložka pod myš Rectangular labels - + Obdélníkové etikety Return address labels - + Etikety pro zpáteční adresu Round labels - + Kulaté etikety SD card labels - + Etikety na karty SD Seal labels - + Bezpečnostní etikety Shipping labels - + Přepravní etikety Square labels - + Čtvercové etikety Target stickers - + Samolepky na terče Tent cards @@ -369,11 +365,11 @@ Trapezoid labels - + Lichoběžníkové etikety Triangular labels - + Trojúhelníkové etikety Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Etikety na diskety ZIP diff --git a/translations/templates_da.ts b/translations/templates_da.ts index 672bede..213ff2f 100644 --- a/translations/templates_da.ts +++ b/translations/templates_da.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Adresseetiketter Any card - + Ethvert kort Any label - + Enhver etiket Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Stregkodeetiketter Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + Etiketter til forretningskort-cd'er Business card size labels - + Etiketter til forretningskort Business cards - + Visitkort CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + Etiketter til cd-/dvd-center hub CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + Cd-/dvd-etiketter CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + Cd/dvd eller andet medie CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Sliketiketter Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Kaffe- og teetiketter Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Digitale medieetiketter Digital video labels - + Digitale videoetiketter Diskette labels - + Disketteetiketter Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Elliptiske etiketter File folder labels - + Filmappeetiketter File labels @@ -177,27 +177,27 @@ Filing labels - + Arkiveringsetiketter Floppy disk labels - + Etiketter til disketter Flyer paper - + Folder Foldable business cards - + Foldbare visitkort Foldable cards - + Foldbare kort Full face CD/DVD labels - + Cd-/dvd-etiketter med fuld front Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Lykønskningskort Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Etiketter Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Postetiketter Mailing/shipping products - + Post-/forsendelsesprodukter Medical chart labels - + Medicinske diagrametiketter Membership cards - + Medlemskort Metal tin container labels - + Etiketter for konservesdåser Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Minidisketiketter Mini address labels @@ -297,71 +297,67 @@ Name plates - + Navneskilte Nutritional labels - + Ernæringsmæssige etiketter Paper hole reinforcement labels - + Papirhulforstærkningsetiketter Passport photo labels - + Pasfotoetiketter Photo labels - + Fotoetiketter Photo products - + Billedprodukter Post cards - - - - Postage stamp labels - + Postkort Printable mousepad - + Udskrivbar musemåtte Rectangular labels - + Rektangulære etiketter Return address labels - + Returadresseetiketter Round labels - + Afrundede etiketter SD card labels - + SD-kort-etiketter Seal labels - + Segletiketter Shipping labels - + Forsendelsesetiketter Square labels - + Firkantede etiketter Target stickers - + Klistermærker med skydeskiver Tent cards @@ -369,11 +365,11 @@ Trapezoid labels - + Trapezetiketter Triangular labels - + Trekantede etiketter Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Zipdisk-etiketter diff --git a/translations/templates_de.ts b/translations/templates_de.ts index 1faff6a..74d218a 100644 --- a/translations/templates_de.ts +++ b/translations/templates_de.ts @@ -1,431 +1,423 @@ - + XmlStrings Address labels - + Adressaufkleber Any card - + Alle Karten Any label - + Alle Etiketten Arch file inserts - + Ordner-Einsteckschilder Arch file labels - + Etiketten für Archivierungsordner Barcode labels - - - - Bookplate labels - - - - Bottle/jar labels - + Strichcode-Etiketten Business card CD labels - + Etiketten für Visitenkarten-CDs Business card size labels - + Etiketten in Visitenkartengröße Business cards - + Visitenkarten CD/DVD booklet - + CD/DVD-Einleger CD/DVD case (rightside up) - + CD/DVD-Einleger (rechte Seite oben) CD/DVD case (upside down) - + CD/DVD-Einleger (umgedreht) CD/DVD case booklet - + CD/DVD-Einleger CD/DVD case labels - + CD/DVD-Box-Etiketten CD/DVD center hub labels - - - - CD/DVD insert - - - - CD/DVD insert (back) - - - - CD/DVD insert (front) - + CD/DVD-Etiketten, verkleinert CD/DVD labels - + CD/DVD-Etiketten CD/DVD labels (disc labels) - + CD/DVD-Etiketten (Disk-Aufkleber) CD/DVD labels (disc only) - + CD/DVD-Etiketten (nur Disk) CD/DVD labels (rectangles) - - - - CD/DVD labels (spine labels) - + CD/DVD-Etiketten (Disk-rechteckig) CD/DVD labels (spine only) - + CD/DVD-Etiketten (nur Box-Schmalseite) CD/DVD or other media - + CD/DVD oder andere Medien CD/DVD tray - - - - Candle labels - + CD/DVD-Einleger Candy labels - + Etiketten für Süßigkeiten Cassette labels - - - - Classification labels - + Kassettenaufkleber Coffee and tea labels - + Kaffee-und-Tee-Etiketten Correction labels - + Korrekturaufkleber DLT labels - - - - DVD insert - + DLT Etiketten Digital media labels - + Etiketten für digitale Medien Digital video labels - + Etiketten für Digitalvideo-Medien Diskette labels - - - - Divider labels - + Diskettenaufkleber Elliptical labels - + Elliptische Etiketten File folder labels - - - - File labels - + Aktenordner-Etiketten Filing labels - + Ordneretiketten Floppy disk labels - + Diskettenaufkleber Flyer paper - + Flyer-Papier Foldable business cards - + Faltbare Visitenkarten Foldable cards - + Faltkarten Full face CD/DVD labels - + Vollflächige CD/DVD-Etiketten Full-page labels - + Ganzseitige Etiketten Full-page labels with back slit - + Ganzseitige Etiketten mit geteiltem Trägermaterial Greeting cards - + Grußkarten Hanging folder labels - + Etiketten für Hängeordner ID labels - - - - Index cards - + Etiketten für Archivierungsordner Labels - + Etiketten Large address labels - - - - Large arch file labels - - - - Large round labels - + Große Adressaufkleber Lever arch file labels - + Lever-Etiketten für Archivierungsordner Magnet stickers - + Aufkleber für Magnete Mailing labels - + Adressaufkleber Mailing/shipping products - + Adressierungs- und Versandprodukte Medical chart labels - + Patientenkarten-Etiketten Membership cards - + Mitgliedsausweise Metal tin container labels - + Blechdosenetiketten Mini CD/DVD labels - + Mini-CD-Etiketten Mini Disc labels - + MiniDisc-Etiketten Mini address labels - + Mini-Adressetiketten Mini labels - + Mini-Etiketten Multipurpose labels - + Mehrzwecketiketten Name badge labels - + Namensschilder-Etiketten Name badges - + Namensschilder Name plates - + Namensschilder Nutritional labels - + Ernährungsinfo-Etiketten Paper hole reinforcement labels - + Lochverstärkungsringe Passport photo labels - + Passbild-Etiketten Photo labels - + Fotoetiketten Photo products - - - - Post cards - - - - Postage stamp labels - + Fotoprodukte Printable mousepad - + Bedruckbares Mauspad Rectangular labels - + Rechteckige Etiketten Return address labels - + Rückantwort-Adressaufkleber Round labels - + Runde Etiketten SD card labels - + SD-Karten-Etiketten Seal labels - + Siegelaufkleber Shipping labels - + Versandaufkleber Square labels - + Quadratische Etiketten Target stickers - - - - Tent cards - + Zielscheiben Trapezoid labels - + Trapezförmige Etiketten Triangular labels - - - - Tube labels - - - - VHS face labels - - - - VHS insert - - - - VHS labels - - - - VHS-C insert - + Dreieckige Etiketten Video labels (face only) - + Video-Etiketten (nur Vorderseite) Video tape face labels - + Etiketten für Videokassetten (Vorderseite) Video tape spine labels - - - - Video-8 insert - - - - Window stickers - - - - Zip disc insert - + Etiketten für Videokassetten (Schmalseite) Zip disc labels - + Zip-Diskettenaufkleber - Continuous label tape - + Bookplate labels + Exlibris-Aufkleber + + + Bottle/jar labels + Flaschen-/Gefäßetiketten + + + Candle labels + Kerzenetiketten + + + Classification labels + Klassifizierungsetiketten + + + File labels + Etiketten für Ordner + + + VHS face labels + VHS-Etiketten, Vorderseite + + + VHS labels + VHS-Etiketten + + + Large arch file labels + Große Etiketten für Archivierungsordner + + + Tube labels + Tubenetiketten + + + CD/DVD insert + + + + CD/DVD insert (back) + CD/DVD-Einleger (hinten) + + + CD/DVD insert (front) + CD/DVD-Einleger (vorn) + + + CD/DVD labels (spine labels) + CD/DVD-Etiketten (Box-Schmalseite) + + + DVD insert + DVD-Einleger + + + Divider labels + Etiketten für Trennblätter + + + Index cards + Indexkarten + + + Large round labels + Große runde Eitiketten + + + Post cards + Postkarten + + + Tent cards + Klappkarten + + + VHS insert + VHS-Einleger + + + VHS-C insert + VHS-C-Einleger + + + Video-8 insert + Video8-Einleger + + + Window stickers + Scheibenaufkleber (innen) + + + Zip disc insert + Zip-Disketteneinleger diff --git a/translations/templates_el.ts b/translations/templates_el.ts index 26924e5..9ac9e84 100644 --- a/translations/templates_el.ts +++ b/translations/templates_el.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Ετικέτες διευθύνσεων Any card - + Οποιαδήποτε κάρτα Any label - + Οποιαδήποτε ετικέτα Arch file inserts @@ -45,7 +45,7 @@ Business cards - + Επαγγελματικές κάρτες CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + Ετικέτες CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD ή άλλα πολυμέσα CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + Ετικέτες δισκετών Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + Ελλειπτικές ετικέτες File folder labels @@ -181,19 +181,19 @@ Floppy disk labels - + Ετικέτες δισκετών Flyer paper - + Χαρτί φυλλαδίου Foldable business cards - + Διπλώσιμες επαγγελματικές κάρτες Foldable cards - + Κάρτες που διπλώνουν Full face CD/DVD labels @@ -209,7 +209,7 @@ Greeting cards - + Ευχετήριες κάρτες Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Ετικέτες Large address labels @@ -249,11 +249,11 @@ Mailing labels - + Ετικέτες αλληλογραφίας Mailing/shipping products - + Προϊόντα ταχυδρομείου/αποστολής Medical chart labels @@ -261,7 +261,7 @@ Membership cards - + Κάρτες μέλους Metal tin container labels @@ -273,7 +273,7 @@ Mini Disc labels - + Μικρές ετικέτες δίσκου Mini address labels @@ -297,7 +297,7 @@ Name plates - + Όνομα πλακών Nutritional labels @@ -309,31 +309,27 @@ Passport photo labels - + Ετικέτες φωτογραφιών διαβατηρίου Photo labels - + Ετικέτες φωτογραφιών Photo products - + Προϊόντα φωτογραφίας Post cards - - - - Postage stamp labels - + Ταχυδρομικές κάρτες Printable mousepad - + Εκτυπώσιμο mousepad Rectangular labels - + Ορθογώνιες ετικέτες Return address labels @@ -341,11 +337,11 @@ Round labels - + Στρογγυλές ετικέτες SD card labels - + Ετικέτες καρτών SD Seal labels @@ -353,11 +349,11 @@ Shipping labels - + Ετικέτες αποστολής Square labels - + Τετράγωνες ετικέτες Target stickers @@ -369,11 +365,11 @@ Trapezoid labels - + Τραπεζοειδείς ετικέτες Triangular labels - + Τριγωνικές ετικέτες Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Ετικέτες δίσκων Zip diff --git a/translations/templates_en_GB.ts b/translations/templates_en_GB.ts index f861f5b..7081597 100644 --- a/translations/templates_en_GB.ts +++ b/translations/templates_en_GB.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Address labels Any card - + Any card Any label - + Any label Arch file inserts @@ -45,7 +45,7 @@ Business cards - + Business cards CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + CD/DVD labels CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD or other media CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + Diskette labels Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + Elliptical labels File folder labels @@ -181,19 +181,19 @@ Floppy disk labels - + Floppy disk labels Flyer paper - + Flyer paper Foldable business cards - + Foldable business cards Foldable cards - + Foldable cards Full face CD/DVD labels @@ -209,7 +209,7 @@ Greeting cards - + Greeting cards Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Labels Large address labels @@ -249,11 +249,11 @@ Mailing labels - + Mailing labels Mailing/shipping products - + Mailing/shipping products Medical chart labels @@ -261,7 +261,7 @@ Membership cards - + Membership cards Metal tin container labels @@ -273,7 +273,7 @@ Mini Disc labels - + Mini Disc labels Mini address labels @@ -297,7 +297,7 @@ Name plates - + Name plates Nutritional labels @@ -309,31 +309,27 @@ Passport photo labels - + Passport photo labels Photo labels - + Photo labels Photo products - + Photo products Post cards - - - - Postage stamp labels - + Post cards Printable mousepad - + Printable mousepad Rectangular labels - + Rectangular labels Return address labels @@ -341,11 +337,11 @@ Round labels - + Round labels SD card labels - + SD card labels Seal labels @@ -353,11 +349,11 @@ Shipping labels - + Shipping labels Square labels - + Square labels Target stickers @@ -369,11 +365,11 @@ Trapezoid labels - + Trapezoid labels Triangular labels - + Triangular labels Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Zip disc labels diff --git a/translations/templates_eo.ts b/translations/templates_eo.ts index 7d7d365..74db916 100644 --- a/translations/templates_eo.ts +++ b/translations/templates_eo.ts @@ -1,19 +1,20 @@ - + XmlStrings Address labels - + Etikedoj por adreso Any card - + + Any label - + Iu etikedo Arch file inserts @@ -25,7 +26,7 @@ Barcode labels - + Kvardaj etikedoj Bookplate labels @@ -37,15 +38,15 @@ Business card CD labels - + Vizitkarto KD Business card size labels - + Vizitkartoj Business cards - + Vizitkartoj CD/DVD booklet @@ -69,7 +70,7 @@ CD/DVD center hub labels - + Etikedoj por KD/DVD CD/DVD insert @@ -85,7 +86,7 @@ CD/DVD labels - + Etikedoj por KD/DVD CD/DVD labels (disc labels) @@ -109,7 +110,8 @@ CD/DVD or other media - + + CD/DVD tray @@ -121,7 +123,7 @@ Candy labels - + Iu etikedo Cassette labels @@ -133,7 +135,7 @@ Coffee and tea labels - + Plenrondaj etikedoj Correction labels @@ -149,15 +151,15 @@ Digital media labels - + Etikedoj por disketoj Digital video labels - + Video-etikedoj Diskette labels - + Etikedoj por disketoj Divider labels @@ -165,11 +167,11 @@ Elliptical labels - + Etikedo por ekspedo File folder labels - + Arkaj etikedoj por dosieroj File labels @@ -177,27 +179,28 @@ Filing labels - + Etikedoj por poŝto Floppy disk labels - + Etikedoj por disketoj Flyer paper - + + Foldable business cards - + Vizitkartoj Foldable cards - + Vizitkartoj Full face CD/DVD labels - + Etikedoj por KD/DVD Full-page labels @@ -209,7 +212,8 @@ Greeting cards - + + Hanging folder labels @@ -225,7 +229,7 @@ Labels - + Etikedoj Large address labels @@ -249,23 +253,25 @@ Mailing labels - + Etikedoj por poŝto Mailing/shipping products - + + Medical chart labels - + Rektangulaj etikedoj Membership cards - + + Metal tin container labels - + Mikrotubaj etikedoj Mini CD/DVD labels @@ -273,7 +279,7 @@ Mini Disc labels - + Etikedoj por Mini-KD Mini address labels @@ -297,71 +303,75 @@ Name plates - + + Nutritional labels - + Starto en etikedo Paper hole reinforcement labels - + + Passport photo labels - + + Photo labels - + + Photo products - + + Post cards - - - - Postage stamp labels - + + Printable mousepad - + + Rectangular labels - + Rektangulaj etikedoj Return address labels - + Etikedoj por adreso de sendinto Round labels - + Plenrondaj etikedoj SD card labels - + + Seal labels - + Kvardaj etikedoj Shipping labels - + Etikedo por ekspedo Square labels - + Kvardaj etikedoj Target stickers - + Magnetaĵoj por fridujo Tent cards @@ -369,11 +379,11 @@ Trapezoid labels - + Plenrondaj etikedoj Triangular labels - + Rektangulaj etikedoj Tube labels @@ -421,11 +431,7 @@ Zip disc labels - - - - Continuous label tape - + Etikedoj por disketoj diff --git a/translations/templates_es.ts b/translations/templates_es.ts index 74a5df2..590a2d4 100644 --- a/translations/templates_es.ts +++ b/translations/templates_es.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Etiquetas de dirección Any card - + Cualquier tarjeta Any label - + Cualquier etiqueta Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Etiquetas de código de barras Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + Etiquetas de CD-tarjeta profesional Business card size labels - + Etiquetas tamaño tarjeta de visita Business cards - + Tarjetas de visita CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + Etiquetas del centro de CD / DVD CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + Etiquetas de CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD u otros soportes CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Etiquetas de caramelos Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Etiquetas de café y té Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Etiquetas de medios digitales Digital video labels - + Etiquetas de vídeo digital Diskette labels - + Etiquetas de disquette Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Etiquetas elípticas File folder labels - + Etiquetas de carpetas de archivos File labels @@ -177,27 +177,27 @@ Filing labels - + Etiquetas para archivado Floppy disk labels - + Etiquetas de disquete Flyer paper - + Papel para panfletos Foldable business cards - + Tarjetas de visita plegables Foldable cards - + Tarjetas plegables Full face CD/DVD labels - + Etiquetas de CD/DVD completas Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Tarjetas de felicitación Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Etiquetas Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Etiquetas de correo Mailing/shipping products - + Productos para correo/envío Medical chart labels - + Etiquetas de cartas médicas Membership cards - + Tarjetas de socio Metal tin container labels - + Etiquetas para envases metálicos Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Etiquetas de Minidisc Mini address labels @@ -297,71 +297,67 @@ Name plates - + Placas de nombre Nutritional labels - + Etiquetas nutricionales Paper hole reinforcement labels - + Etiquetas de refuerzo de orificio de papel Passport photo labels - + Etiquetas para fotos de pasaporte Photo labels - + Etiquetas para fotos Photo products - + Productos para fotos Post cards - - - - Postage stamp labels - + Postales Printable mousepad - + Alfombrilla de ratón imprimible Rectangular labels - + Etiquetas rectangulares Return address labels - + Etiquetas de dirección de remitente Round labels - + Etiquetas redondeadas SD card labels - + Etiquetas para tarjetas SD Seal labels - + Etiquetas de sello Shipping labels - + Etiquetas de envío Square labels - + Etiquetas cuadradas Target stickers - + Pegatinas de destino Tent cards @@ -369,11 +365,11 @@ Trapezoid labels - + Etiquetas trapezoidales Triangular labels - + Etiquetas triangulares Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Etiquetas de disco Zip diff --git a/translations/templates_fi.ts b/translations/templates_fi.ts index 3be545a..6cfd531 100644 --- a/translations/templates_fi.ts +++ b/translations/templates_fi.ts @@ -1,19 +1,20 @@ - + XmlStrings Address labels - + + Any card - + Mikä tahansa kortti Any label - + Mikä tahansa etiketti Arch file inserts @@ -25,7 +26,7 @@ Barcode labels - + Viivakoodietiketit Bookplate labels @@ -37,15 +38,15 @@ Business card CD labels - + Käyntikortit Business card size labels - + Käyntikortit Business cards - + Käyntikortit CD/DVD booklet @@ -69,7 +70,8 @@ CD/DVD center hub labels - + + CD/DVD insert @@ -85,7 +87,7 @@ CD/DVD labels - + CD/DVD-etiketit CD/DVD labels (disc labels) @@ -109,7 +111,7 @@ CD/DVD or other media - + CD/DVD tai muu media CD/DVD tray @@ -121,7 +123,7 @@ Candy labels - + Makeisten etiketit Cassette labels @@ -133,7 +135,8 @@ Coffee and tea labels - + + Correction labels @@ -149,15 +152,16 @@ Digital media labels - + Pullojen etiketit Digital video labels - + Pullojen etiketit Diskette labels - + + Divider labels @@ -165,11 +169,11 @@ Elliptical labels - + Soikeat etiketit File folder labels - + Pullojen etiketit File labels @@ -177,27 +181,31 @@ Filing labels - + Pullojen etiketit Floppy disk labels - + Diskettien etiketit Flyer paper - + + Foldable business cards - + + Foldable cards - + + Full face CD/DVD labels - + + Full-page labels @@ -209,7 +217,7 @@ Greeting cards - + Onnittelukortit Hanging folder labels @@ -225,7 +233,7 @@ Labels - + Etiketit Large address labels @@ -249,23 +257,26 @@ Mailing labels - + + Mailing/shipping products - + + Medical chart labels - + SD-korttien etiketit Membership cards - + Jäsenkortit Metal tin container labels - + + Mini CD/DVD labels @@ -273,7 +284,7 @@ Mini Disc labels - + Mini Disc -etiketit Mini address labels @@ -297,71 +308,74 @@ Name plates - + Nimikyltit Nutritional labels - + Pullojen etiketit Paper hole reinforcement labels - + + Passport photo labels - + + Photo labels - + + Photo products - + Valokuvatuotteet Post cards - - - - Postage stamp labels - + Postikortit Printable mousepad - + + Rectangular labels - + Suorakulmiomaiset etiketit Return address labels - + + Round labels - + Pyöreät etiketit SD card labels - + SD-korttien etiketit Seal labels - + SD-korttien etiketit Shipping labels - + + Square labels - + Neliömäiset etiketi Target stickers - + + Tent cards @@ -369,11 +383,13 @@ Trapezoid labels - + + Triangular labels - + + Tube labels @@ -421,11 +437,8 @@ Zip disc labels - - - - Continuous label tape - + + diff --git a/translations/templates_fr.ts b/translations/templates_fr.ts index 894bda8..ecf4749 100644 --- a/translations/templates_fr.ts +++ b/translations/templates_fr.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Étiquettes d'adresses Any card - + Toute carte Any label - + Toute étiquette Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Étiquettes pour codes-barres Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + Étiquettes CD carte de visite Business card size labels - + Étiquettes de carte de visite Business cards - + Cartes de visite CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + Étiquettes de cercle central de CD/DVD CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + Étiquettes de CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD ou autre support CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Étiquettes pour bougies Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Étiquettes pour café et thé Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Étiquettes pour support numérique Digital video labels - + Étiquettes pour vidéos numériques Diskette labels - + Étiquettes de disquette Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Étiquettes elliptiques File folder labels - + Étiquettes de dossier d'archives File labels @@ -177,27 +177,27 @@ Filing labels - + Étiquettes de classement Floppy disk labels - + Étiquettes pour disquettes Flyer paper - + Papier flyer Foldable business cards - + Cartes de visite pliables Foldable cards - + Cartes pliables Full face CD/DVD labels - + Étiquettes de CD/DVD pleine face Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Cartes de salutations Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Étiquettes Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Étiquettes de publipostage Mailing/shipping products - + Produits pour publipostage ou expédition Medical chart labels - + Étiquettes pour dossiers médicaux Membership cards - + Cartes de membre Metal tin container labels - + Étiquettes pour boîtes métalliques Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Étiquettes pour mini-disques Mini address labels @@ -297,71 +297,67 @@ Name plates - + Porte-nom Nutritional labels - + Étiquettes pour nourriture Paper hole reinforcement labels - + Étiquettes pour œillets de renforcement Passport photo labels - + Étiquettes pour photos passeport Photo labels - + Étiquettes pour photos Photo products - + Produits photos Post cards - - - - Postage stamp labels - + Cartes postales Printable mousepad - + Tapis de souris imprimable Rectangular labels - + Étiquettes rectangulaires Return address labels - + Étiquettes d’adresse de retour Round labels - + Étiquettes circulaires SD card labels - + Étiquettes pour cartes SD Seal labels - + Étiquettes de sceau Shipping labels - + Étiquettes postales Square labels - + Étiquettes carrées Target stickers - + Autocollants circulaires Tent cards @@ -369,11 +365,11 @@ Trapezoid labels - + Étiquettes trapèze Triangular labels - + Étiquettes triangulaires Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Étiquettes pour disques Zip diff --git a/translations/templates_gl.ts b/translations/templates_gl.ts index 3085c2f..d060dd7 100644 --- a/translations/templates_gl.ts +++ b/translations/templates_gl.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Enderezo de correo electrónico: Any card - + Xogos de cartas: Any label - + etiqueta de tecla rápida Arch file inserts @@ -45,7 +45,7 @@ Business cards - + Cartas restantes: ~a CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + Gravando o CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + Borra este disco de CD ou DVD CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + Etiquetas dos botóns da barra de ferramentas: Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + Etiquetas dos botóns da barra de ferramentas: File folder labels @@ -181,19 +181,19 @@ Floppy disk labels - + Etiquetas dos botóns da barra de ferramentas: Flyer paper - + Tamaño do papel: Foldable business cards - + Repartir máis cartas Foldable cards - + Cartas restantes: ~a Full face CD/DVD labels @@ -209,7 +209,7 @@ Greeting cards - + Cartas restantes: ~a Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Etiquetas Large address labels @@ -249,11 +249,11 @@ Mailing labels - + Enderezo de correo Mailing/shipping products - + Accións da lista de correo Medical chart labels @@ -261,7 +261,7 @@ Membership cards - + Cartas restantes: ~a Metal tin container labels @@ -273,7 +273,7 @@ Mini Disc labels - + Etiquetas dos botóns da barra de ferramentas: Mini address labels @@ -297,7 +297,7 @@ Name plates - + Nome do artista Nutritional labels @@ -309,31 +309,27 @@ Passport photo labels - + Etiquetas dos botóns da barra de ferramentas: Photo labels - + Modo de foto Photo products - + Modo de foto Post cards - - - - Postage stamp labels - + Cartas restantes: ~a Printable mousepad - + [non é un carácter imprimíbel] Rectangular labels - + Etiquetas dos botóns da barra de ferramentas: Return address labels @@ -341,11 +337,11 @@ Round labels - + Díxitos SD card labels - + Etiquetas dos botóns da barra de ferramentas: Seal labels @@ -353,11 +349,11 @@ Shipping labels - + Etiquetas dos botóns da barra de ferramentas: Square labels - + Union Square Target stickers @@ -369,11 +365,11 @@ Trapezoid labels - + Etiquetas dos botóns da barra de ferramentas: Triangular labels - + signo de viñeta triangular Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Etiquetas dos botóns da barra de ferramentas: diff --git a/translations/templates_hu.ts b/translations/templates_hu.ts index b983f0c..5534f2e 100644 --- a/translations/templates_hu.ts +++ b/translations/templates_hu.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Címzési címkék Any card - + Bármely kártya Any label - + Bármely címke Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Vonalkód címkék Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + Névjegykártya CD címkék Business card size labels - + Névjegykártya méretű címkék Business cards - + Névjegyek CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + CD/DVD belső címkék CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + CD/DVD címkék CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD vagy más média CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Édesség címkék Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Kávé és tea címkék Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Digitális média címkék Digital video labels - + Digitális videó címkék Diskette labels - + Kislemez címkék Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Elliptikus címkék File folder labels - + Iktatómappa címkék File labels @@ -177,27 +177,27 @@ Filing labels - + Iktató címkék Floppy disk labels - + Kislemez címkék (csak előlap) Flyer paper - + Szórólappapír Foldable business cards - + Összehajtható névjegyek Foldable cards - + Összehajtható névjegyek Full face CD/DVD labels - + Teljes arcos CD/DVD címkék Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Üdvözlőkártyák Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Címkék Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Levelezőcímkék Mailing/shipping products - + Levelezési/csomagküldési termékek Medical chart labels - + Egészségügyi címkék Membership cards - + Tagsági kártyák Metal tin container labels - + Fém tároló címkék Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Mini Disc címkék Mini address labels @@ -297,71 +297,67 @@ Name plates - + Névtáblák Nutritional labels - + Táplálkozási címkék Paper hole reinforcement labels - + Papír lyuk megerősítő címkék Passport photo labels - + Igazolványkép fotócímkék Photo labels - + Fotócímkék Photo products - + Fényképtermékek Post cards - - - - Postage stamp labels - + Levelezőlapok Printable mousepad - + Nyomtatható egérpad Rectangular labels - + Négyszögletű címkék Return address labels - + Visszaküldési cím címkék Round labels - + Kerek címkék SD card labels - + SD kártya címkék Seal labels - + Pecsét címkék Shipping labels - + Szállítási címkék Square labels - + Négyzetes címkék Target stickers - + Céltábla matricák Tent cards @@ -369,11 +365,11 @@ Trapezoid labels - + Trapéz alakú címkék Triangular labels - + Háromszög alakú címkék Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Zip lemez címkék diff --git a/translations/templates_id.ts b/translations/templates_id.ts index 8d3fa99..f8ad9cb 100644 --- a/translations/templates_id.ts +++ b/translations/templates_id.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Label Alamat Any card - + Sebarang kartu Any label - + Sebarang label Arch file inserts @@ -45,7 +45,7 @@ Business cards - + Kartu nama CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + Label CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,8 @@ CD/DVD or other media - + + CD/DVD tray @@ -157,7 +158,7 @@ Diskette labels - + Label disket Divider labels @@ -165,7 +166,7 @@ Elliptical labels - + Label eliptis File folder labels @@ -177,23 +178,28 @@ Filing labels - + + Floppy disk labels - + + Flyer paper - + + Foldable business cards - + + Foldable cards - + + Full face CD/DVD labels @@ -209,7 +215,7 @@ Greeting cards - + Kartu ucapan Hanging folder labels @@ -225,7 +231,7 @@ Labels - + Label Large address labels @@ -249,11 +255,12 @@ Mailing labels - + Label surat Mailing/shipping products - + + Medical chart labels @@ -261,7 +268,7 @@ Membership cards - + Kartu anggota Metal tin container labels @@ -273,7 +280,8 @@ Mini Disc labels - + + Mini address labels @@ -297,7 +305,7 @@ Name plates - + Papan nama Nutritional labels @@ -309,31 +317,29 @@ Passport photo labels - + Label foto paspor Photo labels - + Label foto Photo products - + + Post cards - - - - Postage stamp labels - + Kartu pos Printable mousepad - + + Rectangular labels - + Label persegi panjang Return address labels @@ -341,11 +347,11 @@ Round labels - + Label bulat SD card labels - + Label SD card Seal labels @@ -353,11 +359,11 @@ Shipping labels - + Label pengiriman Square labels - + Label bujur sangkar Target stickers @@ -369,11 +375,11 @@ Trapezoid labels - + Label trapesium Triangular labels - + Label segi tiga Tube labels @@ -421,11 +427,8 @@ Zip disc labels - - - - Continuous label tape - + + diff --git a/translations/templates_it.ts b/translations/templates_it.ts index 75811c8..e6990ee 100644 --- a/translations/templates_it.ts +++ b/translations/templates_it.ts @@ -1,19 +1,20 @@ - + XmlStrings Address labels - + Etichette per indirizzo Any card - + + Any label - + Apri etichetta Arch file inserts @@ -45,7 +46,7 @@ Business cards - + Biglietti da visita CD/DVD booklet @@ -109,7 +110,8 @@ CD/DVD or other media - + + CD/DVD tray @@ -157,7 +159,8 @@ Diskette labels - + + Divider labels @@ -181,7 +184,8 @@ Floppy disk labels - + + Flyer paper @@ -189,7 +193,7 @@ Foldable business cards - + Biglietti da visita Foldable cards @@ -225,7 +229,7 @@ Labels - + Etichette Large address labels @@ -249,11 +253,13 @@ Mailing labels - + + Mailing/shipping products - + + Medical chart labels @@ -261,7 +267,8 @@ Membership cards - + + Metal tin container labels @@ -297,7 +304,8 @@ Name plates - + + Nutritional labels @@ -313,7 +321,7 @@ Photo labels - + Informazioni su glabels Photo products @@ -321,11 +329,8 @@ Post cards - - - - Postage stamp labels - + + Printable mousepad @@ -333,7 +338,8 @@ Rectangular labels - + + Return address labels @@ -341,11 +347,11 @@ Round labels - + Etichetta con bordi arrotondati SD card labels - + Etichette quadrate Seal labels @@ -353,11 +359,12 @@ Shipping labels - + + Square labels - + Etichette quadrate Target stickers @@ -423,9 +430,5 @@ Zip disc labels - - Continuous label tape - - diff --git a/translations/templates_ja.ts b/translations/templates_ja.ts index 4af0f57..33e0318 100644 --- a/translations/templates_ja.ts +++ b/translations/templates_ja.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + 宛名のラベル Any card - + 全てのカード Any label - + 全てのラベル Arch file inserts @@ -45,7 +45,7 @@ Business cards - + 名刺 CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + CD/DVD のラベル CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD またはその他のメディア CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + フロッピーのラベル Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + 楕円形のラベル File folder labels @@ -181,19 +181,19 @@ Floppy disk labels - + フロッピー・ディスクのラベル Flyer paper - + チラシ Foldable business cards - + 折りたためる名刺 Foldable cards - + 折りたたみ可能なカード Full face CD/DVD labels @@ -209,7 +209,7 @@ Greeting cards - + 挨拶状 Hanging folder labels @@ -225,7 +225,7 @@ Labels - + ラベル Large address labels @@ -249,11 +249,11 @@ Mailing labels - + 封筒のラベル Mailing/shipping products - + 郵送/出荷する製品 Medical chart labels @@ -261,7 +261,7 @@ Membership cards - + 会員カード Metal tin container labels @@ -273,7 +273,7 @@ Mini Disc labels - + ミニ・ディスクのラベル Mini address labels @@ -297,7 +297,7 @@ Name plates - + 名前プレート Nutritional labels @@ -309,31 +309,27 @@ Passport photo labels - + パスポートの写真用ラベル Photo labels - + 写真のラベル Photo products - + 写真関連 Post cards - - - - Postage stamp labels - + はがき Printable mousepad - + 印刷可能なマウスパッド Rectangular labels - + 長方形のラベル Return address labels @@ -341,11 +337,11 @@ Round labels - + 丸いラベル SD card labels - + SD カードのラベル Seal labels @@ -353,11 +349,11 @@ Shipping labels - + 出荷ラベル Square labels - + 正方形のラベル Target stickers @@ -369,11 +365,11 @@ Trapezoid labels - + 汎用的なラベル Triangular labels - + 長方形のラベル Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Zip ディスクのインレット diff --git a/translations/templates_ko.ts b/translations/templates_ko.ts index ea7651a..f83c1ff 100644 --- a/translations/templates_ko.ts +++ b/translations/templates_ko.ts @@ -1,19 +1,20 @@ - + XmlStrings Address labels - + 주소 라벨 Any card - + + Any label - + 라벨 열기 Arch file inserts @@ -45,7 +46,7 @@ Business cards - + 명함 CD/DVD booklet @@ -109,7 +110,8 @@ CD/DVD or other media - + + CD/DVD tray @@ -157,7 +159,7 @@ Diskette labels - + 디스크 라벨 Divider labels @@ -181,7 +183,7 @@ Floppy disk labels - + 디스크 라벨 Flyer paper @@ -189,7 +191,7 @@ Foldable business cards - + 명함 Foldable cards @@ -225,7 +227,7 @@ Labels - + 라벨 Large address labels @@ -249,11 +251,12 @@ Mailing labels - + 봉투 라벨 Mailing/shipping products - + + Medical chart labels @@ -261,7 +264,8 @@ Membership cards - + + Metal tin container labels @@ -297,7 +301,8 @@ Name plates - + + Nutritional labels @@ -313,7 +318,7 @@ Photo labels - + gLabels에 대해 Photo products @@ -321,11 +326,8 @@ Post cards - - - - Postage stamp labels - + + Printable mousepad @@ -333,7 +335,7 @@ Rectangular labels - + 직사각형 라벨 Return address labels @@ -341,11 +343,11 @@ Round labels - + Allround 라벨 SD card labels - + 구형 라벨 Seal labels @@ -353,11 +355,11 @@ Shipping labels - + 출하 라벨 Square labels - + 구형 라벨 Target stickers @@ -423,9 +425,5 @@ Zip disc labels - - Continuous label tape - - diff --git a/translations/templates_lv.ts b/translations/templates_lv.ts index 9b222e5..33e2bea 100644 --- a/translations/templates_lv.ts +++ b/translations/templates_lv.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Adrešu etiķetes Any card - + Jebkura kartiņa Any label - + Jebkura etiķete Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Svītrkoda etiķetes Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + Vizītkartes CD etiķetes Business card size labels - + Vizītkartes izmēra etiķetes Business cards - + Vizītkartes CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + CD/DVD centra rumbas etiķetes CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + CD/DVD etiķetes CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD vai citi datu nesēji CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Sveču etiķetes Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Kafijas un tējas etiķetes Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Ciparu mediju etiķetes Digital video labels - + Ciparu video etiķetes Diskette labels - + Diskešu etiķetes Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Elipsveida etiķetes File folder labels - + Lietu mapju etiķetes File labels @@ -177,27 +177,27 @@ Filing labels - + Arhivēšanas etiķetes Floppy disk labels - + Diskešu etiķetes Flyer paper - + Skrejlapiņa Foldable business cards - + Lokāmas vizītkartes Foldable cards - + Lokāmas kartiņas Full face CD/DVD labels - + Visas priekšpuses CD/DVD etiķetes Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Apsveikuma kartiņa Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Etiķetes Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Pasta etiķetes Mailing/shipping products - + Sūtījumu produkti Medical chart labels - + Medicīnas grafiku etiķetes Membership cards - + Biedra kartes Metal tin container labels - + Metāla konservu kārbas etiķetes Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Mini Disk etiķetes Mini address labels @@ -297,71 +297,67 @@ Name plates - + Vārdu plāksnes Nutritional labels - + Uztura satura etiķetes Paper hole reinforcement labels - + Papīra cauruma stiprinājuma etiķetes Passport photo labels - + Pases foto etiķetes Photo labels - + Foto etiķetes Photo products - + Foto produkti Post cards - - - - Postage stamp labels - + Pastkartītes Printable mousepad - + Drukājami peļu paliktņi Rectangular labels - + Taisnstūrveida etiķetes Return address labels - + Atpakaļadrešu etiķetes Round labels - + Apaļas etiķetes SD card labels - + SD karšu etiķetes Seal labels - + Zīmoga etiķetes Shipping labels - + Nosūtījumu etiķetes Square labels - + Kvadrāta etiķetes Target stickers - + Mērķa uzlīmes Tent cards @@ -369,11 +365,11 @@ Trapezoid labels - + Trapecveidīgas etiķetes Triangular labels - + Trijstūrveida etiķetes Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Zip disku etiķetes diff --git a/translations/templates_nb.ts b/translations/templates_nb.ts index d5f7d6a..9e66256 100644 --- a/translations/templates_nb.ts +++ b/translations/templates_nb.ts @@ -1,19 +1,21 @@ - + XmlStrings Address labels - + Adresseetiketter Any card - + + Any label - + + Arch file inserts @@ -45,7 +47,7 @@ Business cards - + Visittkort CD/DVD booklet @@ -85,7 +87,8 @@ CD/DVD labels - + + CD/DVD labels (disc labels) @@ -109,7 +112,7 @@ CD/DVD or other media - + CD/DVD eller annet medie CD/DVD tray @@ -157,7 +160,8 @@ Diskette labels - + + Divider labels @@ -165,7 +169,7 @@ Elliptical labels - + Eliptiske etiketter File folder labels @@ -181,19 +185,21 @@ Floppy disk labels - + + Flyer paper - + + Foldable business cards - + Visittkort Foldable cards - + Brettbare kort Full face CD/DVD labels @@ -209,7 +215,8 @@ Greeting cards - + + Hanging folder labels @@ -225,7 +232,7 @@ Labels - + Etiketter Large address labels @@ -249,11 +256,13 @@ Mailing labels - + + Mailing/shipping products - + + Medical chart labels @@ -261,7 +270,7 @@ Membership cards - + Medlemskort Metal tin container labels @@ -273,7 +282,8 @@ Mini Disc labels - + + Mini address labels @@ -297,7 +307,7 @@ Name plates - + Navneskilt Nutritional labels @@ -309,31 +319,28 @@ Passport photo labels - + Etiketter for passfoto Photo labels - + Fotoetiketter Photo products - + Fotoprodukter Post cards - - - - Postage stamp labels - + Postkort Printable mousepad - + + Rectangular labels - + Rektangulære etiketter Return address labels @@ -341,11 +348,12 @@ Round labels - + Runde etiketter SD card labels - + + Seal labels @@ -353,11 +361,12 @@ Shipping labels - + + Square labels - + Firkantete etiketter Target stickers @@ -421,11 +430,7 @@ Zip disc labels - - - - Continuous label tape - + Adressebok diff --git a/translations/templates_nl.ts b/translations/templates_nl.ts index 6a89723..a2fd5f3 100644 --- a/translations/templates_nl.ts +++ b/translations/templates_nl.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Adresetiketten Any card - + Alle kaarten Any label - + Alle labels Arch file inserts @@ -45,7 +45,7 @@ Business cards - + Adreskaarten CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + cd/dvd-Labels CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD en andere media CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + Diskettelabels Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + Elliptische etiketten File folder labels @@ -181,19 +181,19 @@ Floppy disk labels - + Floppy disk-labels Flyer paper - + Flyer-papier Foldable business cards - + Invouwbare visitekaartjes Foldable cards - + Invouwbare kaarten Full face CD/DVD labels @@ -209,7 +209,7 @@ Greeting cards - + Wenskaarten Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Labels Large address labels @@ -249,11 +249,11 @@ Mailing labels - + Postetiketten Mailing/shipping products - + Verzend/post/adresetiketten Medical chart labels @@ -261,7 +261,7 @@ Membership cards - + Lidmaatschapskaarten Metal tin container labels @@ -273,7 +273,7 @@ Mini Disc labels - + MiniDisc labels Mini address labels @@ -297,7 +297,7 @@ Name plates - + Naamplaatjes Nutritional labels @@ -309,31 +309,27 @@ Passport photo labels - + Paspoortfoto-etiketten Photo labels - + Foto-etiketten Photo products - + Fotoproducten Post cards - - - - Postage stamp labels - + Briefkaarten Printable mousepad - + Printbare muismat Rectangular labels - + Rechthoekige etiketten Return address labels @@ -341,11 +337,11 @@ Round labels - + Ronde etiketten SD card labels - + SD-kaartetiketten Seal labels @@ -353,11 +349,11 @@ Shipping labels - + Verzendetiketten Square labels - + Vierkante etiketten Target stickers @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Zipschijfetiketten diff --git a/translations/templates_oc.ts b/translations/templates_oc.ts index aced1a9..0520edd 100644 --- a/translations/templates_oc.ts +++ b/translations/templates_oc.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Etiquetas d'adreças Any card - + Tota carta Any label - + Tota etiqueta Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Etiquetas carradas Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + Etiquetas CD carta de visita Business card size labels - + Etiquetas CD carta de visita Business cards - + Cartas de visita CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + Etiquetas de CD/DVD CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + Etiquetas de CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD o autre supòrt CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Tota etiqueta Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Etiquetas circularas Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Etiquetas de disqueta Digital video labels - + Etiquetas de division Diskette labels - + Etiquetas de disqueta Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Etiquetas ellipticas File folder labels - + Etiquetas de dorsièr d'archius File labels @@ -177,27 +177,27 @@ Filing labels - + Etiquetas de classament Floppy disk labels - + Etiquetas per disquetas Flyer paper - + Papièr flyer Foldable business cards - + Cartas de visita plegablas Foldable cards - + Cartas plegablas Full face CD/DVD labels - + Etiquetas de CD/DVD Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Cartas de salutacions Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Etiquetas Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Etiquetas de publipostatge Mailing/shipping products - + Produits per publipostatge o expedicion Medical chart labels - + Etiquetas rectangularas Membership cards - + Cartas de membre Metal tin container labels - + Etiquetas microtub Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Etiquetas per minidisques Mini address labels @@ -297,71 +297,68 @@ Name plates - + Pòrtanom Nutritional labels - + Començar per l'etiqueta Paper hole reinforcement labels - + + Passport photo labels - + Etiquetas per fòtos passapòrt Photo labels - + Etiquetas per fòtos Photo products - + Produits fòtos Post cards - - - - Postage stamp labels - + Cartas postalas Printable mousepad - + Tapís de mirga imprimible Rectangular labels - + Etiquetas rectangularas Return address labels - + Etiquetas d'adreça de retorn Round labels - + Etiquetas circularas SD card labels - + Etiquetas per cartas SD Seal labels - + Etiquetas carradas Shipping labels - + Etiquetas postalas Square labels - + Etiquetas carradas Target stickers - + Pegasolets magnetics Tent cards @@ -369,11 +366,11 @@ Trapezoid labels - + Etiquetas trapèzi Triangular labels - + Etiquetas triangularas Tube labels @@ -421,11 +418,7 @@ Zip disc labels - - - - Continuous label tape - + Etiquetas per disques Zip diff --git a/translations/templates_pt.ts b/translations/templates_pt.ts index 165e085..c6d5cb9 100644 --- a/translations/templates_pt.ts +++ b/translations/templates_pt.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Etiquetas de endereços Any card - + Qualquer cartão Any label - + Qualquer etiqueta Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Etiquetas de código de barras Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + Etiquetas de cartões de visita CD Business card size labels - + Etiquetas com tamanho de cartões de visita Business cards - + Cartões de visita CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + Etiquetas de CD/DVD CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + Etiquetas de CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD ou outros CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Etiquetas para doces Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Etiquetas de café e chá Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Etiquetas de multimédia digital Digital video labels - + Etiquetas para vídeo digital Diskette labels - + Etiquetas de disquete Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Etiquetas elípticas File folder labels - + Etiquetas para pastas de arquivo File labels @@ -177,27 +177,27 @@ Filing labels - + Etiquetas de enchimento Floppy disk labels - + Etiquetas de floppy disk Flyer paper - + Folheto Foldable business cards - + Cartões de visita dobráveis Foldable cards - + Cartões dobráveis Full face CD/DVD labels - + Etiquetas de CD/DVD Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Cartões de aniversário Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Etiquetas Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Etiquetas de correio Mailing/shipping products - + Produtos para correio/expedição Medical chart labels - + Etiquetas para gráficos médicos Membership cards - + Cartões de membros Metal tin container labels - + Etiquetas para vasilhas de metal Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Etiquetas de mini-disc Mini address labels @@ -297,71 +297,67 @@ Name plates - + Placas de nome Nutritional labels - + Etiqueta nutricional Paper hole reinforcement labels - + Etiquetas com buraco de papel reforçado Passport photo labels - + Etiquetas de fotografia de passaporte Photo labels - + Etiquetas de fotografia Photo products - + Produtos fotográficos Post cards - - - - Postage stamp labels - + Postais Printable mousepad - + Tapete de rato imprimível Rectangular labels - + Etiquetas retangulares Return address labels - + Etiquetas de endereço de remetente Round labels - + Etiquetas redondas SD card labels - + Etiquetas de cartão SD Seal labels - + Etiquetas de selagem Shipping labels - + Etiquetas de expedição Square labels - + Etiquetas quadradas Target stickers - + Autocolantes alvo Tent cards @@ -369,11 +365,11 @@ Trapezoid labels - + Etiquetas trapezoidais Triangular labels - + Etiquetas triangulares Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Etiquetas de disco ZIP diff --git a/translations/templates_pt_BR.ts b/translations/templates_pt_BR.ts index 165e085..2df4c57 100644 --- a/translations/templates_pt_BR.ts +++ b/translations/templates_pt_BR.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Etiquetas de endereçamento Any card - + Qualquer cartão Any label - + Qualquer etiqueta Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Etiquetas de códigos de barra Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + Etiquetas de cartões de visita em CD Business card size labels - + Etiquetas no tamanho de cartão de visitas Business cards - + Cartões de visita CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + Etiquetas de concentradores de CD/DVD CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + Etiquetas de CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD ou outras mídias CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Etiquetas de doces Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Etiquetas de cafés e chás Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Etiquetas de mídias digitais Digital video labels - + Etiquetas de vídeos digitais Diskette labels - + Etiquetas de disquete Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Etiquetas elípticas File folder labels - + Etiquetas de pastas de arquivos File labels @@ -177,27 +177,27 @@ Filing labels - + Etiquetas de classificação/registro Floppy disk labels - + Etiquetas para disquetes Flyer paper - + Papel de panfleto Foldable business cards - + Cartões de visita dobráveis Foldable cards - + Cartões dobráveis Full face CD/DVD labels - + Etiquetas de CD/DVD completo Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Cartões de mensagens Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Etiquetas Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Etiquetas de endereçamento Mailing/shipping products - + Correio/Produtos de encomenda Medical chart labels - + Etiquetas de fichas médicas Membership cards - + Cartões de associado Metal tin container labels - + Etiquetas de recipientes de lata metálica Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Etiquetas para mini disco Mini address labels @@ -297,71 +297,67 @@ Name plates - + Placas de nome Nutritional labels - + Etiquetas nutricionais Paper hole reinforcement labels - + Etiquetas de reforço de furos de papel Passport photo labels - + Etiquetas para fotos de passaporte Photo labels - + Etiquetas de fotos Photo products - + Produtos para fotos Post cards - - - - Postage stamp labels - + Cartões postais Printable mousepad - + Mousepad para impressão Rectangular labels - + Etiquetas retangulares Return address labels - + Etiquetas de endereço de retorno Round labels - + Etiquetas arredondadas SD card labels - + Etiquetas para cartões SD Seal labels - + Etiquetas de selos Shipping labels - + Etiquetas de envio Square labels - + Etiquetas quadradas Target stickers - + Adesivos de alvos Tent cards @@ -369,11 +365,11 @@ Trapezoid labels - + Etiquetas em trapézio Triangular labels - + Etiquetas triangulares Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Etiquetas para discos Zip diff --git a/translations/templates_ro.ts b/translations/templates_ro.ts index e61784a..54c801d 100644 --- a/translations/templates_ro.ts +++ b/translations/templates_ro.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Etichete de adresă Any card - + Orice carte Any label - + Orice etichetă Arch file inserts @@ -45,7 +45,7 @@ Business cards - + Cărți de vizită CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + Etichete CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD sau alte media CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + Etichete dischete Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + Etichete eliptice File folder labels @@ -181,19 +181,19 @@ Floppy disk labels - + Etichete pentru disc de dischetă Flyer paper - + Hârtie de afiș Foldable business cards - + Cărți de vizită pliabile Foldable cards - + Cărți pliabile Full face CD/DVD labels @@ -209,7 +209,7 @@ Greeting cards - + Cărți de întâmpinare Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Etichete Large address labels @@ -249,11 +249,11 @@ Mailing labels - + Etichete de corespondență Mailing/shipping products - + Produse de corespondeță/transport Medical chart labels @@ -261,7 +261,7 @@ Membership cards - + Cărți de membru Metal tin container labels @@ -273,7 +273,7 @@ Mini Disc labels - + Mini etichete de discuri Mini address labels @@ -297,7 +297,7 @@ Name plates - + Plăci de nume Nutritional labels @@ -309,31 +309,27 @@ Passport photo labels - + Etichete cu poze de pașaport Photo labels - + Etichete foto Photo products - + Produse foto Post cards - - - - Postage stamp labels - + Cărți poștale Printable mousepad - + Mousepad imprimabil Rectangular labels - + Etichete dreptunghice Return address labels @@ -341,11 +337,11 @@ Round labels - + Etichete rotunde SD card labels - + Etichete de carduri SD Seal labels @@ -353,11 +349,11 @@ Shipping labels - + Etichete de transport Square labels - + Etichete pătrate Target stickers @@ -369,11 +365,11 @@ Trapezoid labels - + Etichete de jur-împrejur Triangular labels - + Etichete dreptunghice Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Etichete discuri zip diff --git a/translations/templates_ru.ts b/translations/templates_ru.ts index 18fb212..5f1a93d 100644 --- a/translations/templates_ru.ts +++ b/translations/templates_ru.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Адресные наклейки Any card - + Любые карточки Any label - + Любые этикетки Arch file inserts @@ -45,7 +45,7 @@ Business cards - + Визитные карточки CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + Этикетки для CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD и прочие носители CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + Наклейки на дискеты Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + Овальные этикетки File folder labels @@ -181,19 +181,19 @@ Floppy disk labels - + Этикетки на дискеты Flyer paper - + Бумага для флаеров Foldable business cards - + Складывающиеся визитные карточки Foldable cards - + Складывающиеся карточки Full face CD/DVD labels @@ -209,7 +209,7 @@ Greeting cards - + Поздравительные открытки Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Этикетки Large address labels @@ -249,11 +249,11 @@ Mailing labels - + Почтовые наклейки Mailing/shipping products - + Корреспонденция Medical chart labels @@ -261,7 +261,7 @@ Membership cards - + Членские карточки Metal tin container labels @@ -273,7 +273,7 @@ Mini Disc labels - + Этикетки для мини-CD Mini address labels @@ -297,7 +297,7 @@ Name plates - + Именные таблички Nutritional labels @@ -309,31 +309,27 @@ Passport photo labels - + Этикети (34 x 45 мм) Photo labels - + Этикетки для фото Photo products - + Фотонаклейки Post cards - - - - Postage stamp labels - + Почтовые открытки Printable mousepad - + Коврик для мыши Rectangular labels - + Прямоугольные этикетки Return address labels @@ -341,11 +337,11 @@ Round labels - + Круглые этикетки SD card labels - + Этикетки для карточек SD Seal labels @@ -353,11 +349,11 @@ Shipping labels - + Ценники Square labels - + Квадратные этикетки Target stickers @@ -369,11 +365,11 @@ Trapezoid labels - + Трапециевидные этикетки Triangular labels - + Треугольные этикетки Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Этикетки на zip-диски diff --git a/translations/templates_sk.ts b/translations/templates_sk.ts index 32d6f72..a8aa551 100644 --- a/translations/templates_sk.ts +++ b/translations/templates_sk.ts @@ -1,19 +1,20 @@ - + XmlStrings Address labels - + + Any card - + Akákoľvek vizitka Any label - + Akýkoľvek štítok Arch file inserts @@ -25,7 +26,7 @@ Barcode labels - + Štítky s čiarovým kódom Bookplate labels @@ -37,15 +38,15 @@ Business card CD labels - + Vizitky Business card size labels - + Štítky s veľkosťou vizitky Business cards - + Vizitky CD/DVD booklet @@ -69,7 +70,7 @@ CD/DVD center hub labels - + Etikety na CD/DVD CD/DVD insert @@ -85,7 +86,7 @@ CD/DVD labels - + Štítky na CD/DVD CD/DVD labels (disc labels) @@ -109,7 +110,7 @@ CD/DVD or other media - + CD/DVD alebo iné médium CD/DVD tray @@ -121,7 +122,8 @@ Candy labels - + + Cassette labels @@ -133,7 +135,7 @@ Coffee and tea labels - + Kávové a čajové štítky Correction labels @@ -149,15 +151,16 @@ Digital media labels - + Štítky na digitálne nosiče Digital video labels - + gLabels Diskette labels - + + Divider labels @@ -165,11 +168,11 @@ Elliptical labels - + Elipsové štítky File folder labels - + Štítky na priečinky kartoték File labels @@ -177,27 +180,30 @@ Filing labels - + gLabels Floppy disk labels - + Štítky na diskety Flyer paper - + + Foldable business cards - + + Foldable cards - + + Full face CD/DVD labels - + Etikety na CD/DVD Full-page labels @@ -209,7 +215,7 @@ Greeting cards - + Pohľadnice Hanging folder labels @@ -225,7 +231,7 @@ Labels - + Štítky Large address labels @@ -249,23 +255,26 @@ Mailing labels - + + Mailing/shipping products - + Poštové/doručovacie produkty Medical chart labels - + + Membership cards - + + Metal tin container labels - + Začať so štítkom Mini CD/DVD labels @@ -273,7 +282,8 @@ Mini Disc labels - + + Mini address labels @@ -297,71 +307,73 @@ Name plates - + + Nutritional labels - + Štítky s nutričnými hodnotami Paper hole reinforcement labels - + + Passport photo labels - + + Photo labels - + + Photo products - + Fotografické produkty Post cards - - - - Postage stamp labels - + Pohľadnice Printable mousepad - + + Rectangular labels - + Obdĺžnikové štítky Return address labels - + Štítky spiatočnej adresy Round labels - + Okrúhle štítky SD card labels - + Štítky na SD karty Seal labels - + gLabels Shipping labels - + Doručovacie štítky Square labels - + Štvorcové štítky Target stickers - + + Tent cards @@ -369,11 +381,13 @@ Trapezoid labels - + + Triangular labels - + + Tube labels @@ -421,11 +435,8 @@ Zip disc labels - - - - Continuous label tape - + + diff --git a/translations/templates_sl.ts b/translations/templates_sl.ts index 93fe298..52a289c 100644 --- a/translations/templates_sl.ts +++ b/translations/templates_sl.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Nalepke naslovov Any card - + Katerakoli vizitka Any label - + Katerakoli nalepka Arch file inserts @@ -45,7 +45,7 @@ Business cards - + Poslovne nalepke CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + Nalepke CD/DVD CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD ali drugi nosilci CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + Nalepke disket Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + Eliptične nalepke File folder labels @@ -181,19 +181,19 @@ Floppy disk labels - + Nalepke disket Flyer paper - + Papir za letake Foldable business cards - + Prepogljive poslovne vizitke Foldable cards - + Prepogljive vizitke Full face CD/DVD labels @@ -209,7 +209,7 @@ Greeting cards - + Voščilnice Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Nalepke Large address labels @@ -249,11 +249,11 @@ Mailing labels - + Poštne nalepke Mailing/shipping products - + Pošiljanje izdelkov po pošti Medical chart labels @@ -261,7 +261,7 @@ Membership cards - + Članske kartice Metal tin container labels @@ -273,7 +273,7 @@ Mini Disc labels - + Nalepke Mini Disc Mini address labels @@ -297,7 +297,7 @@ Name plates - + Kartice z imeni Nutritional labels @@ -309,31 +309,27 @@ Passport photo labels - + Nalepke fotografij za potni list Photo labels - + Nalepke fotografij Photo products - + Fotografski izdelki Post cards - - - - Postage stamp labels - + Razglednice Printable mousepad - + Tisku namenjena podloga za miško Rectangular labels - + Pravokotne nalepke Return address labels @@ -341,11 +337,11 @@ Round labels - + Okrogle nalepke SD card labels - + Nalepke kartic SD Seal labels @@ -353,11 +349,11 @@ Shipping labels - + Nalepke pošiljanja Square labels - + Kvadratne nalepke Target stickers @@ -369,11 +365,11 @@ Trapezoid labels - + Trapezoidne nalepke Triangular labels - + Trikotne nalepke Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Nalepke disket Zip diff --git a/translations/templates_sr.ts b/translations/templates_sr.ts index 907aaf5..bf60935 100644 --- a/translations/templates_sr.ts +++ b/translations/templates_sr.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Налепнице за адресе Any card - + Било која картица Any label - + Било која налепница Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Налепнице за бар-кȏд Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + ЦД налепнице пословне картице Business card size labels - + Налепнице за пословне картице Business cards - + Пословна картица CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + Налепнице за ЦД/ДВД са средишњом главом CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + ЦД/ДВД налепнице CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + ЦД/ДВД или други медиј CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Налепнице за слаткише Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Налепнице за кафу и чај Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Налепнице за дигиталне носаче Digital video labels - + Налепнице за дигиталне снимке Diskette labels - + Налепнице за дискете Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Елипсоидне налепнице File folder labels - + Налепнице за фасцикле докумената File labels @@ -177,27 +177,27 @@ Filing labels - + Налепнице за одлагање докумената Floppy disk labels - + Налепнице за флопи дискове Flyer paper - + Папир за пресавијање Foldable business cards - + Пресавитљиве пословне картице Foldable cards - + Склопиве картице Full face CD/DVD labels - + Обостране налепнице за ЦД/ДВД дискове Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Честитке Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Налепнице Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Поштанске налепнице Mailing/shipping products - + Поштански/доставни производи Medical chart labels - + Налепнице за медицинске графиконе Membership cards - + Чланске картице Metal tin container labels - + Налепнице за металне конзерве Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Налепнице мини дискова Mini address labels @@ -297,71 +297,67 @@ Name plates - + Плочице са именима Nutritional labels - + Налепнице за хранљиве састојке Paper hole reinforcement labels - + Налепнице за ојачање рупа у папиру Passport photo labels - + Фотографске налепнице за пасош Photo labels - + Фотографске налепнице Photo products - + Фотографски производи Post cards - - - - Postage stamp labels - + Разгледнице Printable mousepad - + Подметак за миша Rectangular labels - + Правоугаоне налепнице Return address labels - + Налепнице повратних адреса Round labels - + Заобљене налепнице SD card labels - + Налепнице за СД картице Seal labels - + Налепнице за печат Shipping labels - + Налепнице за доставу Square labels - + Четвртасте налепнице Target stickers - + Налепнице за мете Tent cards @@ -369,11 +365,11 @@ Trapezoid labels - + Трапезоидне налепнице Triangular labels - + Троугаоне налепнице Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Налепнице зип дискова diff --git a/translations/templates_sr@latin.ts b/translations/templates_sr@latin.ts index 907aaf5..e78ac1b 100644 --- a/translations/templates_sr@latin.ts +++ b/translations/templates_sr@latin.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Nalepnice za adrese Any card - + Bilo koja kartica Any label - + Bilo koja nalepnica Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Nalepnice za bar-kȏd Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + CD nalepnice poslovne kartice Business card size labels - + Nalepnice za poslovne kartice Business cards - + Poslovna kartica CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + Nalepnice za CD/DVD sa središnjom glavom CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + CD/DVD nalepnice CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD ili drugi medij CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Nalepnice za slatkiše Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Nalepnice za kafu i čaj Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Nalepnice za digitalne nosače Digital video labels - + Nalepnice za digitalne snimke Diskette labels - + Nalepnice za diskete Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Elipsoidne nalepnice File folder labels - + Nalepnice za fascikle dokumenata File labels @@ -177,27 +177,27 @@ Filing labels - + Nalepnice za odlaganje dokumenata Floppy disk labels - + Nalepnice za flopi diskove Flyer paper - + Papir za presavijanje Foldable business cards - + Presavitljive poslovne kartice Foldable cards - + Sklopive kartice Full face CD/DVD labels - + Obostrane nalepnice za CD/DVD diskove Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Čestitke Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Nalepnice Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Poštanske nalepnice Mailing/shipping products - + Poštanski/dostavni proizvodi Medical chart labels - + Nalepnice za medicinske grafikone Membership cards - + Članske kartice Metal tin container labels - + Nalepnice za metalne konzerve Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Nalepnice mini diskova Mini address labels @@ -297,71 +297,67 @@ Name plates - + Pločice sa imenima Nutritional labels - + Nalepnice za hranljive sastojke Paper hole reinforcement labels - + Nalepnice za ojačanje rupa u papiru Passport photo labels - + Fotografske nalepnice za pasoš Photo labels - + Fotografske nalepnice Photo products - + Fotografski proizvodi Post cards - - - - Postage stamp labels - + Razglednice Printable mousepad - + Podmetak za miša Rectangular labels - + Pravougaone nalepnice Return address labels - + Nalepnice povratnih adresa Round labels - + Zaobljene nalepnice SD card labels - + Nalepnice za SD kartice Seal labels - + Nalepnice za pečat Shipping labels - + Nalepnice za dostavu Square labels - + Četvrtaste nalepnice Target stickers - + Nalepnice za mete Tent cards @@ -369,11 +365,11 @@ Trapezoid labels - + Trapezoidne nalepnice Triangular labels - + Trougaone nalepnice Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Nalepnice zip diskova diff --git a/translations/templates_sv.ts b/translations/templates_sv.ts index 11204c2..53d4202 100644 --- a/translations/templates_sv.ts +++ b/translations/templates_sv.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Adressetiketter Any card - + Valfritt kort Any label - + Valfri etikett Arch file inserts @@ -25,7 +25,7 @@ Barcode labels - + Streckkodsetiketter Bookplate labels @@ -37,15 +37,15 @@ Business card CD labels - + Visitkorts-CD-etiketter Business card size labels - + Visitkorts-etiketter Business cards - + Visitkort CD/DVD booklet @@ -69,7 +69,7 @@ CD/DVD center hub labels - + CD/DVD-centeretiketter CD/DVD insert @@ -85,7 +85,7 @@ CD/DVD labels - + CD/DVD-etiketter CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD eller annat media CD/DVD tray @@ -121,7 +121,7 @@ Candy labels - + Godisetiketter Cassette labels @@ -133,7 +133,7 @@ Coffee and tea labels - + Kaffe- och teetiketter Correction labels @@ -149,15 +149,15 @@ Digital media labels - + Digital media-etiketter Digital video labels - + Digital video-etiketter Diskette labels - + Diskettetiketter Divider labels @@ -165,11 +165,11 @@ Elliptical labels - + Elliptiska etiketter File folder labels - + Arkivmappsetiketter File labels @@ -177,27 +177,27 @@ Filing labels - + Märketiketter Floppy disk labels - + Diskettetiketter Flyer paper - + Flygblad Foldable business cards - + Vikbara visitkort Foldable cards - + Vikbara kort Full face CD/DVD labels - + Helside-CD/DVD-etiketter Full-page labels @@ -209,7 +209,7 @@ Greeting cards - + Gratulationskort Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Etiketter Large address labels @@ -249,23 +249,23 @@ Mailing labels - + Försändelseetiketter Mailing/shipping products - + Brev-/Leveransprodukter Medical chart labels - + Medicinska diagrametiketter Membership cards - + Medlemskort Metal tin container labels - + Tennbehållaretiketter Mini CD/DVD labels @@ -273,7 +273,7 @@ Mini Disc labels - + Minidisc-etiketter Mini address labels @@ -297,71 +297,67 @@ Name plates - + Namnbrickor Nutritional labels - + Näringsdeklarationer Paper hole reinforcement labels - + Pappershålsförstärkningsetiketter Passport photo labels - + Passfotoetiketter Photo labels - + Fotoetiketter Photo products - + Fotoprodukter Post cards - - - - Postage stamp labels - + Vykort Printable mousepad - + Utskrivbar musmatta Rectangular labels - + Rektangulära etiketter Return address labels - + Returadressetiketter Round labels - + Runda etiketter SD card labels - + SD-kortetiketter Seal labels - + Tätningsetiketter Shipping labels - + Leveransetiketter Square labels - + Fyrkantiga etiketter Target stickers - + Måldekaler Tent cards @@ -369,11 +365,11 @@ Trapezoid labels - + Trapetsoida etiketter Triangular labels - + Triangulära etiketter Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Diskettetiketter diff --git a/translations/templates_tr.ts b/translations/templates_tr.ts index 91802f1..43ce69d 100644 --- a/translations/templates_tr.ts +++ b/translations/templates_tr.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + Adres etiketleri Any card - + Herhangi bir kart Any label - + Herhangi bir etiket Arch file inserts @@ -45,7 +45,7 @@ Business cards - + Kart vizitler CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + CD/DVD etiketleri CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD veya başka medya CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + Disket etiketleri Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + Elips etiketler File folder labels @@ -181,19 +181,19 @@ Floppy disk labels - + Floppy disk etiketleri Flyer paper - + El broşürü Foldable business cards - + Katlanabilir kart vizitler Foldable cards - + Katlanabilir kartlar Full face CD/DVD labels @@ -209,7 +209,7 @@ Greeting cards - + Tebrik kartı Hanging folder labels @@ -225,7 +225,7 @@ Labels - + Etiketler Large address labels @@ -249,11 +249,11 @@ Mailing labels - + Posta etiketleri Mailing/shipping products - + Post/gönderi ürünleri Medical chart labels @@ -261,7 +261,7 @@ Membership cards - + Üyelik kartları Metal tin container labels @@ -273,7 +273,7 @@ Mini Disc labels - + Mini Disk etiketleri Mini address labels @@ -297,7 +297,7 @@ Name plates - + İsim levhaları Nutritional labels @@ -309,31 +309,27 @@ Passport photo labels - + Pasaport fotoğrafı etiketleri Photo labels - + Fotoğraf etiketleri Photo products - + Fotoğraf ürünleri Post cards - - - - Postage stamp labels - + Posta kartları Printable mousepad - + Yazdırılabilir mousepad Rectangular labels - + Dikdörtgen etiketler Return address labels @@ -341,11 +337,11 @@ Round labels - + yuvarlak etiketler SD card labels - + SD kart etiketleri Seal labels @@ -353,11 +349,11 @@ Shipping labels - + Gönderi etiketleri Square labels - + Kare etiketler Target stickers @@ -369,11 +365,11 @@ Trapezoid labels - + Yamuk etiketler Triangular labels - + Üçgen etiketler Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Zip Disk etiketleri diff --git a/translations/templates_uk.ts b/translations/templates_uk.ts index 21e8dd5..b07c64f 100644 --- a/translations/templates_uk.ts +++ b/translations/templates_uk.ts @@ -1,6 +1,6 @@ - + XmlStrings @@ -27,14 +27,6 @@ Barcode labels - - Bookplate labels - - - - Bottle/jar labels - - Business card CD labels @@ -71,18 +63,6 @@ CD/DVD center hub labels - - CD/DVD insert - - - - CD/DVD insert (back) - - - - CD/DVD insert (front) - - CD/DVD labels @@ -99,10 +79,6 @@ CD/DVD labels (rectangles) - - CD/DVD labels (spine labels) - - CD/DVD labels (spine only) @@ -115,10 +91,6 @@ CD/DVD tray - - Candle labels - - Candy labels @@ -127,10 +99,6 @@ Cassette labels - - Classification labels - - Coffee and tea labels @@ -143,10 +111,6 @@ DLT labels - - DVD insert - - Digital media labels @@ -159,10 +123,6 @@ Diskette labels - - Divider labels - - Elliptical labels @@ -171,10 +131,6 @@ File folder labels - - File labels - - Filing labels @@ -219,10 +175,6 @@ ID labels - - Index cards - - Labels @@ -231,14 +183,6 @@ Large address labels - - Large arch file labels - - - - Large round labels - - Lever arch file labels @@ -319,14 +263,6 @@ Photo products - - Post cards - - - - Postage stamp labels - - Printable mousepad @@ -363,10 +299,6 @@ Target stickers - - Tent cards - - Trapezoid labels @@ -375,26 +307,6 @@ Triangular labels - - Tube labels - - - - VHS face labels - - - - VHS insert - - - - VHS labels - - - - VHS-C insert - - Video labels (face only) @@ -407,6 +319,94 @@ Video tape spine labels + + Zip disc labels + + + + Bookplate labels + + + + Bottle/jar labels + + + + Candle labels + + + + Classification labels + + + + File labels + + + + VHS face labels + + + + VHS labels + + + + Large arch file labels + + + + Tube labels + + + + CD/DVD insert + + + + CD/DVD insert (back) + + + + CD/DVD insert (front) + + + + CD/DVD labels (spine labels) + + + + DVD insert + + + + Divider labels + + + + Index cards + + + + Large round labels + + + + Post cards + + + + Tent cards + + + + VHS insert + + + + VHS-C insert + + Video-8 insert @@ -419,13 +419,5 @@ Zip disc insert - - Zip disc labels - - - - Continuous label tape - - diff --git a/translations/templates_zh_CN.ts b/translations/templates_zh_CN.ts index b10429f..c5e678e 100644 --- a/translations/templates_zh_CN.ts +++ b/translations/templates_zh_CN.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + 通迅录标签 Any card - + 通用名片 Any label - + 通用标签 Arch file inserts @@ -45,7 +45,7 @@ Business cards - + 名片 CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + CD/DVD 光盘标签 CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD 或其它光盘 CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + 软盘标签 Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + 物流标签 File folder labels @@ -181,19 +181,20 @@ Floppy disk labels - + 软盘标签 Flyer paper - + + Foldable business cards - + 可折叠名片 Foldable cards - + 可折叠名片 Full face CD/DVD labels @@ -209,7 +210,7 @@ Greeting cards - + 会员卡 Hanging folder labels @@ -225,7 +226,7 @@ Labels - + 标签 Large address labels @@ -249,11 +250,11 @@ Mailing labels - + 信封标签 Mailing/shipping products - + 信件/快递包裹 Medical chart labels @@ -261,7 +262,7 @@ Membership cards - + 会员卡 Metal tin container labels @@ -273,7 +274,7 @@ Mini Disc labels - + 微型标签 Mini address labels @@ -297,7 +298,7 @@ Name plates - + 名称 Nutritional labels @@ -309,31 +310,29 @@ Passport photo labels - + 通行证照片光滑标签 Photo labels - + 照片标签 Photo products - + + Post cards - - - - Postage stamp labels - + 贺卡/明信片 Printable mousepad - + + Rectangular labels - + 长方形标签 Return address labels @@ -341,11 +340,11 @@ Round labels - + 圆形标签 SD card labels - + SD 卡标签 Seal labels @@ -353,11 +352,11 @@ Shipping labels - + 物流标签 Square labels - + 正方形标签 Target stickers @@ -421,11 +420,7 @@ Zip disc labels - - - - Continuous label tape - + 软盘标签 diff --git a/translations/templates_zh_HK.ts b/translations/templates_zh_HK.ts index 480dee7..d769a5c 100644 --- a/translations/templates_zh_HK.ts +++ b/translations/templates_zh_HK.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + 地址標籤 Any card - + 任何卡片 Any label - + 任何標籤 Arch file inserts @@ -45,7 +45,7 @@ Business cards - + 卡片 CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + CD/DVD 標籤 CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD 或其他媒體 CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + 磁碟標籤 Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + 橢圓標籤 File folder labels @@ -181,19 +181,19 @@ Floppy disk labels - + 軟碟標籤 Flyer paper - + 傳單 Foldable business cards - + 摺疊式卡片 Foldable cards - + 摺疊式卡片 Full face CD/DVD labels @@ -209,7 +209,7 @@ Greeting cards - + 賀卡 Hanging folder labels @@ -225,7 +225,7 @@ Labels - + 標籤 Large address labels @@ -249,11 +249,11 @@ Mailing labels - + 郵遞標籤 Mailing/shipping products - + 郵遞/貨運產品 Medical chart labels @@ -261,7 +261,7 @@ Membership cards - + 會員卡 Metal tin container labels @@ -273,7 +273,7 @@ Mini Disc labels - + MD 標籤 Mini address labels @@ -297,7 +297,7 @@ Name plates - + 名牌 Nutritional labels @@ -309,31 +309,27 @@ Passport photo labels - + 護照相片標籤 Photo labels - + 相片標籤 Photo products - + 相片產品 Post cards - - - - Postage stamp labels - + 明信片 Printable mousepad - + 打印式滑鼠墊 Rectangular labels - + 長方形標籤 Return address labels @@ -341,11 +337,11 @@ Round labels - + 圓形標籤 SD card labels - + SD card 標籤 Seal labels @@ -353,11 +349,11 @@ Shipping labels - + 貨運標籤 Square labels - + 正方形標籤 Target stickers @@ -369,11 +365,11 @@ Trapezoid labels - + 梯形標籤 Triangular labels - + 三角形標籤 Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Zip 碟標籤 diff --git a/translations/templates_zh_TW.ts b/translations/templates_zh_TW.ts index 872937c..14ed316 100644 --- a/translations/templates_zh_TW.ts +++ b/translations/templates_zh_TW.ts @@ -1,19 +1,19 @@ - + XmlStrings Address labels - + 地址標籤 Any card - + 任何卡片 Any label - + 任何標籤 Arch file inserts @@ -45,7 +45,7 @@ Business cards - + 名片 CD/DVD booklet @@ -85,7 +85,7 @@ CD/DVD labels - + CD/DVD 標籤 CD/DVD labels (disc labels) @@ -109,7 +109,7 @@ CD/DVD or other media - + CD/DVD 或其他媒體 CD/DVD tray @@ -157,7 +157,7 @@ Diskette labels - + 磁碟標籤 Divider labels @@ -165,7 +165,7 @@ Elliptical labels - + 橢圓標籤 File folder labels @@ -181,19 +181,19 @@ Floppy disk labels - + 軟碟標籤 Flyer paper - + 傳單 Foldable business cards - + 摺疊式名片 Foldable cards - + 摺疊式卡片 Full face CD/DVD labels @@ -209,7 +209,7 @@ Greeting cards - + 賀卡 Hanging folder labels @@ -225,7 +225,7 @@ Labels - + 標籤 Large address labels @@ -249,11 +249,11 @@ Mailing labels - + 郵遞標籤 Mailing/shipping products - + 郵遞/貨運產品 Medical chart labels @@ -261,7 +261,7 @@ Membership cards - + 會員卡 Metal tin container labels @@ -273,7 +273,7 @@ Mini Disc labels - + MD 標籤 Mini address labels @@ -297,7 +297,7 @@ Name plates - + 名牌 Nutritional labels @@ -309,31 +309,27 @@ Passport photo labels - + 護照相片標籤 Photo labels - + 相片標籤 Photo products - + 相片產品 Post cards - - - - Postage stamp labels - + 明信片 Printable mousepad - + 列印式滑鼠墊 Rectangular labels - + 長方形標籤 Return address labels @@ -341,11 +337,11 @@ Round labels - + 圓形標籤 SD card labels - + SD card 標籤 Seal labels @@ -353,11 +349,11 @@ Shipping labels - + 貨運標籤 Square labels - + 正方形標籤 Target stickers @@ -369,11 +365,11 @@ Trapezoid labels - + 梯形標籤 Triangular labels - + 三角形標籤 Tube labels @@ -421,11 +417,7 @@ Zip disc labels - - - - Continuous label tape - + Zip 碟標籤