From e92f4b6949142341f145a4ff3829b481ab820e48 Mon Sep 17 00:00:00 2001 From: muyuankai Date: Tue, 12 Mar 2024 16:36:22 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=AD=97=E4=BD=93=E5=AE=89=E8=A3=85?= =?UTF-8?q?=E5=99=A8=E7=89=88=E6=9D=83\=E8=AE=B8=E5=8F=AF=E8=AF=81?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 字体安装器版权\许可证信息展示 Log: 字体安装器版权\许可证信息展示 --- .../views/dfontinfoscrollarea.cpp | 54 ++++++++++++++ translations/deepin-font-manager.ts | 28 ++++++- translations/deepin-font-manager_am_ET.ts | 18 ++++- translations/deepin-font-manager_ar.ts | 72 ++++++++++++------ translations/deepin-font-manager_ast.ts | 66 ++++++++++++----- translations/deepin-font-manager_az.ts | 38 ++++++++-- translations/deepin-font-manager_bg.ts | 18 ++++- translations/deepin-font-manager_bn.ts | 18 ++++- translations/deepin-font-manager_bo.ts | 42 +++++++++-- translations/deepin-font-manager_br.ts | 62 +++++++++++----- translations/deepin-font-manager_ca.ts | 38 ++++++++-- translations/deepin-font-manager_cs.ts | 40 ++++++++-- translations/deepin-font-manager_da.ts | 72 ++++++++++++------ translations/deepin-font-manager_de.ts | 38 ++++++++-- translations/deepin-font-manager_el.ts | 18 ++++- translations/deepin-font-manager_en.ts | 38 ++++++++-- translations/deepin-font-manager_es.ts | 38 ++++++++-- translations/deepin-font-manager_fi.ts | 38 ++++++++-- translations/deepin-font-manager_fr.ts | 38 ++++++++-- translations/deepin-font-manager_gl_ES.ts | 54 ++++++++++---- translations/deepin-font-manager_hi_IN.ts | 42 +++++++++-- translations/deepin-font-manager_hr.ts | 18 ++++- translations/deepin-font-manager_hu.ts | 38 ++++++++-- translations/deepin-font-manager_id.ts | 18 ++++- translations/deepin-font-manager_it.ts | 38 ++++++++-- translations/deepin-font-manager_ja.ts | 18 ++++- translations/deepin-font-manager_ko.ts | 52 +++++++++---- translations/deepin-font-manager_lt.ts | 18 ++++- translations/deepin-font-manager_mn.ts | 18 ++++- translations/deepin-font-manager_ms.ts | 42 +++++++++-- translations/deepin-font-manager_ne.ts | 74 +++++++++++++------ translations/deepin-font-manager_nl.ts | 38 ++++++++-- translations/deepin-font-manager_pl.ts | 38 ++++++++-- translations/deepin-font-manager_pt.ts | 38 ++++++++-- translations/deepin-font-manager_pt_BR.ts | 40 ++++++++-- translations/deepin-font-manager_ro.ts | 18 ++++- translations/deepin-font-manager_ru.ts | 38 ++++++++-- translations/deepin-font-manager_sk.ts | 18 ++++- translations/deepin-font-manager_sl.ts | 42 +++++++++-- translations/deepin-font-manager_sq.ts | 38 ++++++++-- translations/deepin-font-manager_sr.ts | 40 ++++++++-- translations/deepin-font-manager_tr.ts | 38 ++++++++-- translations/deepin-font-manager_ug.ts | 42 +++++++++-- translations/deepin-font-manager_uk.ts | 38 ++++++++-- translations/deepin-font-manager_vi.ts | 66 ++++++++++++----- translations/deepin-font-manager_zh_CN.ts | 38 ++++++++-- translations/deepin-font-manager_zh_HK.ts | 38 ++++++++-- translations/deepin-font-manager_zh_TW.ts | 38 ++++++++-- 48 files changed, 1496 insertions(+), 354 deletions(-) diff --git a/deepin-font-manager/views/dfontinfoscrollarea.cpp b/deepin-font-manager/views/dfontinfoscrollarea.cpp index a90cdd08..f53fdc51 100644 --- a/deepin-font-manager/views/dfontinfoscrollarea.cpp +++ b/deepin-font-manager/views/dfontinfoscrollarea.cpp @@ -9,6 +9,9 @@ #include #include +#include "freetype/ftsnames.h" +#include "freetype/ttnameid.h" +QString convertToUtf8(unsigned char *content, unsigned int len); #define LAEBL_TEXT_WIDTH 165 #define TITLE_VISIBLE_WIDTH 90 @@ -45,6 +48,10 @@ dfontinfoscrollarea::dfontinfoscrollarea(DFontPreviewItemData *pData, DWidget * *************************************************************************/ void dfontinfoscrollarea::initUi() { + QStringList sFontList; + sFontList << "Bitstream Charter-Regular" << "Bitstream Charter-Bold" << "Bitstream Charter-Italic" + <<"Bitstream Charter-Bold Italic" << "Courier 10 Pitch-Italic" << "Courier 10 Pitch-Bold Italic" + << "Courier 10 Pitch-Regular" << "Courier 10 Pitch-Bold"; auto gridLayout = new QGridLayout; gridLayout->setContentsMargins(0, 6, 0, 6); gridLayout->setSpacing(3); @@ -70,7 +77,54 @@ void dfontinfoscrollarea::initUi() createLabel(gridLayout, 4, DApplication::translate("FontDetailDailog", "Full name"), m_fontInfo->fontInfo.fullname); createLabel(gridLayout, 5, DApplication::translate("FontDetailDailog", "Ps name"), m_fontInfo->fontInfo.psname); createLabel(gridLayout, 6, DApplication::translate("FontDetailDailog", "Trademark"), m_fontInfo->fontInfo.trademark); + //获取 LICENSE + FT_Library library = nullptr; + FT_Init_FreeType(&library); + FT_Face face = nullptr; + FT_Error error = FT_New_Face(library, m_fontInfo->fontInfo.filePath.toUtf8().constData(), 0, &face); + QString sLicense = ""; + if (error == 0) { + if (FT_IS_SFNT(face)) { + FT_SfntName sname; + const unsigned int count = FT_Get_Sfnt_Name_Count(face); + for (unsigned int i = 0; i < count; ++i) { + if (FT_Get_Sfnt_Name(face, i, &sname) != 0) { + continue; + } + // only handle the unicode names for US langid. + if (sname.language_id == 0) { + continue; + } + bool bExitLoop = false; + switch (sname.name_id) { + // 0 + case TT_NAME_ID_LICENSE: { + sLicense = convertToUtf8(sname.string, sname.string_len).simplified(); + bExitLoop = true; + break; + } + default: + break; + } + if(bExitLoop) break; + } + } + } + FT_Done_Face(face); + FT_Done_FreeType(library); + if(sFontList.contains(m_fontInfo->fontData.strFontName)) { + QString version = "Copyright 1989-1992, Bitstream Inc., Cambridge, MA."; + QString sLicenseDes = "You are hereby granted permission under all Bitstream propriety rights to use, copy, modify, sublicense, sell, and redistribute the 4 Bitstream Charter (r) \ +Type 1 outline fonts and the 4 Courier Type 1 outline fonts for any purpose and without restriction; \ +provided, that this notice is left intact on all copies of such fonts and that Bitstream's trademark is acknowledged as shown below on all unmodified copies of the 4 Charter Type 1 fonts. \ +BITSTREAM CHARTER is a registered trademark of Bitstream Inc."; + createLabel(gridLayout, 7, DApplication::translate("FontDetailDailog", "Copyright"), m_fontInfo->fontInfo.copyright.isEmpty()?version:m_fontInfo->fontInfo.copyright); + createLabel(gridLayout, 8, DApplication::translate("FontDetailDailog", "License Description"), sLicense.isEmpty()?sLicenseDes:sLicense); + } else { + createLabel(gridLayout, 7, DApplication::translate("FontDetailDailog", "Copyright"), m_fontInfo->fontInfo.copyright.isEmpty()?DApplication::translate("FontDetailDailog", "Unknown"):m_fontInfo->fontInfo.copyright); + createLabel(gridLayout, 8, DApplication::translate("FontDetailDailog", "License Description"), sLicense.isEmpty()?DApplication::translate("FontDetailDailog", "Unknown"):sLicense); + } auto vLayout = new QVBoxLayout; vLayout->setContentsMargins(10, 10, 10, 10); basicLabel = new DLabel(DApplication::translate("FontDetailDailog", "Basic info")); diff --git a/translations/deepin-font-manager.ts b/translations/deepin-font-manager.ts index ebadb330..c8177e64 100644 --- a/translations/deepin-font-manager.ts +++ b/translations/deepin-font-manager.ts @@ -161,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. + + Fonts + + + + + DFontWidget + + Broken file + Broken file + DeleteConfirmDailog @@ -213,15 +224,20 @@ Exit - button Exit Continue - button Continue + + Font + + Don't let your dreams be dreams + + + FontDetailDailog @@ -260,6 +276,14 @@ Trademark Trademark + + Copyright + + + + License Description + + Main diff --git a/translations/deepin-font-manager_am_ET.ts b/translations/deepin-font-manager_am_ET.ts index d31038f7..e8c44704 100644 --- a/translations/deepin-font-manager_am_ET.ts +++ b/translations/deepin-font-manager_am_ET.ts @@ -157,6 +157,14 @@ Fonts + + Failed to install %1 font. There is not enough disk space. + + + + Failed to install %1 fonts. There is not enough disk space. + + DFontWidget @@ -216,12 +224,10 @@ Exit - button Continue - button @@ -270,6 +276,14 @@ Basic info + + Copyright + + + + License Description + + Main diff --git a/translations/deepin-font-manager_ar.ts b/translations/deepin-font-manager_ar.ts index f837beaa..5c912302 100644 --- a/translations/deepin-font-manager_ar.ts +++ b/translations/deepin-font-manager_ar.ts @@ -1,4 +1,6 @@ - + + + Category @@ -42,7 +44,7 @@ DFDeleteTTCDialog %1 is a font family, if you proceed, all fonts in it will be deleted - + Delete @@ -54,11 +56,11 @@ DFDisableTTCDialog %1 is a font family, if you proceed, all fonts in it will be enabled - + %1 is a font family, if you proceed, all fonts in it will be disabled - + Enable @@ -75,7 +77,7 @@ DFHandleTTCDialog Apply to all selected font families - + Cancel @@ -145,19 +147,30 @@ Alt+M - + CTRL+I - + Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. - + + + + Fonts + + + + + DFontWidget + + Broken file + ملف معطوب @@ -172,19 +185,19 @@ The other %1 system fonts cannot be deleted - + The font "%1" in use cannot be deleted - + The other %1 system fonts and the font "%2" in use cannot be deleted - + Are you sure you want to delete %1 font(s)? - + Delete @@ -211,13 +224,18 @@ Exit - button - خروج + خروج Continue - button - تأكيد + تأكيد + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark العلامة التجارية + + Copyright + + + + License Description + + Main @@ -283,11 +309,11 @@ Failed to export 1 font. There is not enough disk space. - + Failed to export %1 fonts. There is not enough disk space. - + @@ -341,15 +367,15 @@ %1 is in use, so you cannot disable it - + You cannot disable system fonts and the fonts in use - + You cannot disable system fonts - + @@ -447,4 +473,4 @@ أدخل معاينة النص - \ No newline at end of file + diff --git a/translations/deepin-font-manager_ast.ts b/translations/deepin-font-manager_ast.ts index bf6ee75e..69ed783e 100644 --- a/translations/deepin-font-manager_ast.ts +++ b/translations/deepin-font-manager_ast.ts @@ -1,4 +1,6 @@ - + + + Category @@ -75,7 +77,7 @@ DFHandleTTCDialog Apply to all selected font families - + Cancel @@ -105,11 +107,11 @@ PgUp - + PgDown - + Ctrl+Alt+F @@ -153,11 +155,22 @@ Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. - + + + + Fonts + + + + + DFontWidget + + Broken file + El ficheru ta toyíu @@ -172,7 +185,7 @@ The other %1 system fonts cannot be deleted - + The font "%1" in use cannot be deleted @@ -180,11 +193,11 @@ The other %1 system fonts and the font "%2" in use cannot be deleted - + Are you sure you want to delete %1 font(s)? - + Delete @@ -211,13 +224,18 @@ Exit - button - Colar + Colar Continue - button - Siguir + Siguir + + + + Font + + Don't let your dreams be dreams + @@ -252,12 +270,20 @@ Ps name - + Trademark Copyright + + Copyright + + + + License Description + + Main @@ -356,7 +382,7 @@ NormalInstallWindow Install Font - + Verifying... @@ -383,7 +409,7 @@ Install Font - + @@ -413,11 +439,11 @@ Page up - + Page down - + Delete @@ -437,7 +463,7 @@ Font info - + @@ -447,4 +473,4 @@ Teclexa pa previsualizar el testu - \ No newline at end of file + diff --git a/translations/deepin-font-manager_az.ts b/translations/deepin-font-manager_az.ts index cb0a441f..1230f2a5 100644 --- a/translations/deepin-font-manager_az.ts +++ b/translations/deepin-font-manager_az.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. %1 şrifti quraşdırmaq mümkün olmadı. Diskdə kifayət qədər boş yer qalmayıb. + + Fonts + + + + + DFontWidget + + Broken file + Pozulmuş fayl + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Çıxış + Çıxış Continue - button - Davam etmək + Davam etmək + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Ticarət markası + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Öncədən baxış mətnini daxil edin - \ No newline at end of file + diff --git a/translations/deepin-font-manager_bg.ts b/translations/deepin-font-manager_bg.ts index b083289a..2c9a4d90 100644 --- a/translations/deepin-font-manager_bg.ts +++ b/translations/deepin-font-manager_bg.ts @@ -157,6 +157,14 @@ Fonts + + Failed to install %1 font. There is not enough disk space. + + + + Failed to install %1 fonts. There is not enough disk space. + + DFontWidget @@ -216,12 +224,10 @@ Exit - button Continue - button @@ -270,6 +276,14 @@ Basic info + + Copyright + + + + License Description + + Main diff --git a/translations/deepin-font-manager_bn.ts b/translations/deepin-font-manager_bn.ts index 04f8f0b4..991040be 100644 --- a/translations/deepin-font-manager_bn.ts +++ b/translations/deepin-font-manager_bn.ts @@ -157,6 +157,14 @@ Fonts + + Failed to install %1 font. There is not enough disk space. + + + + Failed to install %1 fonts. There is not enough disk space. + + DFontWidget @@ -216,12 +224,10 @@ Exit - button Continue - button @@ -270,6 +276,14 @@ Basic info + + Copyright + + + + License Description + + Main diff --git a/translations/deepin-font-manager_bo.ts b/translations/deepin-font-manager_bo.ts index 22056e46..2a7ecab7 100644 --- a/translations/deepin-font-manager_bo.ts +++ b/translations/deepin-font-manager_bo.ts @@ -1,4 +1,6 @@ - + + + Category @@ -153,11 +155,22 @@ Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. - + + + + Fonts + + + + + DFontWidget + + Broken file + ཡིག་ཆ་སྐྱོན་ཤོར་ཟིན། @@ -211,13 +224,18 @@ Exit - button - ཕྱིར་འབུད། + ཕྱིར་འབུད། Continue - button - མུ་མཐུད། + མུ་མཐུད། + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark ཚོང་རྟགས། + + Copyright + པར་དབང་། + + + License Description + འཁྲོལ་འཛིན་ཞིབ་བརྗོད་བྱས་ཆོག + Main @@ -447,4 +473,4 @@ ཡིག་ཆའི་ནང་དོན་འཇུག་ནས་སྔོན་འཆར་བྱེད་པ། - \ No newline at end of file + diff --git a/translations/deepin-font-manager_br.ts b/translations/deepin-font-manager_br.ts index bc21faf4..b289ed48 100644 --- a/translations/deepin-font-manager_br.ts +++ b/translations/deepin-font-manager_br.ts @@ -1,4 +1,6 @@ - + + + Category @@ -42,7 +44,7 @@ DFDeleteTTCDialog %1 is a font family, if you proceed, all fonts in it will be deleted - + Delete @@ -54,11 +56,11 @@ DFDisableTTCDialog %1 is a font family, if you proceed, all fonts in it will be enabled - + %1 is a font family, if you proceed, all fonts in it will be disabled - + Enable @@ -75,7 +77,7 @@ DFHandleTTCDialog Apply to all selected font families - + Cancel @@ -145,19 +147,30 @@ Alt+M - + CTRL+I - + Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. - + + + + Fonts + + + + + DFontWidget + + Broken file + Restr torret @@ -172,19 +185,19 @@ The other %1 system fonts cannot be deleted - + The font "%1" in use cannot be deleted - + The other %1 system fonts and the font "%2" in use cannot be deleted - + Are you sure you want to delete %1 font(s)? - + Delete @@ -211,13 +224,18 @@ Exit - button - Kuitaat + Kuitaat Continue - button - Kenderc'hel + Kenderc'hel + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Merkoù marilhet + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Ebarzhit un destenn rakwelet - \ No newline at end of file + diff --git a/translations/deepin-font-manager_ca.ts b/translations/deepin-font-manager_ca.ts index 61e16ab8..14cb73f8 100644 --- a/translations/deepin-font-manager_ca.ts +++ b/translations/deepin-font-manager_ca.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. Ha fallat instal·lar %1 lletres. No hi ha prou espai de disc. + + Fonts + + + + + DFontWidget + + Broken file + Fitxer trencat + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Surt + Surt Continue - button - Continua + Continua + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Marca + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Escriviu el text de previsualització. - \ No newline at end of file + diff --git a/translations/deepin-font-manager_cs.ts b/translations/deepin-font-manager_cs.ts index 8e1489d9..5d4f8e1d 100644 --- a/translations/deepin-font-manager_cs.ts +++ b/translations/deepin-font-manager_cs.ts @@ -1,4 +1,6 @@ - + + + Category @@ -153,12 +155,23 @@ Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. Nepodařilo se nainstalovat %1 písem. Není dost volného místa na disku + + Fonts + + + + + DFontWidget + + Broken file + Poškozený soubor + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Ukončit + Ukončit Continue - button - Pokračovat + Pokračovat + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Registrovaná obchodní značka + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Zadejte náhledový text - \ No newline at end of file + diff --git a/translations/deepin-font-manager_da.ts b/translations/deepin-font-manager_da.ts index c6580f9b..a8b57ade 100644 --- a/translations/deepin-font-manager_da.ts +++ b/translations/deepin-font-manager_da.ts @@ -1,4 +1,6 @@ - + + + Category @@ -42,7 +44,7 @@ DFDeleteTTCDialog %1 is a font family, if you proceed, all fonts in it will be deleted - + Delete @@ -54,11 +56,11 @@ DFDisableTTCDialog %1 is a font family, if you proceed, all fonts in it will be enabled - + %1 is a font family, if you proceed, all fonts in it will be disabled - + Enable @@ -75,7 +77,7 @@ DFHandleTTCDialog Apply to all selected font families - + Cancel @@ -145,19 +147,30 @@ Alt+M - + CTRL+I - + Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. - + + + + Fonts + + + + + DFontWidget + + Broken file + Beskadiget fil @@ -172,19 +185,19 @@ The other %1 system fonts cannot be deleted - + The font "%1" in use cannot be deleted - + The other %1 system fonts and the font "%2" in use cannot be deleted - + Are you sure you want to delete %1 font(s)? - + Delete @@ -211,13 +224,18 @@ Exit - button - Afslut + Afslut Continue - button - Fortsæt + Fortsæt + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Varemærke + + Copyright + + + + License Description + + Main @@ -283,11 +309,11 @@ Failed to export 1 font. There is not enough disk space. - + Failed to export %1 fonts. There is not enough disk space. - + @@ -341,15 +367,15 @@ %1 is in use, so you cannot disable it - + You cannot disable system fonts and the fonts in use - + You cannot disable system fonts - + @@ -447,4 +473,4 @@ Indtast tekst til forhåndsvisning - \ No newline at end of file + diff --git a/translations/deepin-font-manager_de.ts b/translations/deepin-font-manager_de.ts index 250f3a34..e88648cb 100644 --- a/translations/deepin-font-manager_de.ts +++ b/translations/deepin-font-manager_de.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. Installation von %1 Schriftarten ist fehlgeschlagen. Es ist nicht genügend Speicherplatz vorhanden. + + Fonts + + + + + DFontWidget + + Broken file + Beschädigte Datei + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Beenden + Beenden Continue - button - Fortsetzen + Fortsetzen + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Markenzeichen + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Vorschautext eingeben - \ No newline at end of file + diff --git a/translations/deepin-font-manager_el.ts b/translations/deepin-font-manager_el.ts index 9bb73c46..838a831d 100644 --- a/translations/deepin-font-manager_el.ts +++ b/translations/deepin-font-manager_el.ts @@ -157,6 +157,14 @@ Fonts + + Failed to install %1 font. There is not enough disk space. + + + + Failed to install %1 fonts. There is not enough disk space. + + DFontWidget @@ -216,12 +224,10 @@ Exit - button Continue - button @@ -270,6 +276,14 @@ Basic info + + Copyright + + + + License Description + + Main diff --git a/translations/deepin-font-manager_en.ts b/translations/deepin-font-manager_en.ts index 098aff64..624e70fa 100644 --- a/translations/deepin-font-manager_en.ts +++ b/translations/deepin-font-manager_en.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. Failed to install %1 fonts. There is not enough disk space. + + Fonts + + + + + DFontWidget + + Broken file + Broken file + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Exit + Exit Continue - button - Continue + Continue + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Trademark + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Input preview text - \ No newline at end of file + diff --git a/translations/deepin-font-manager_es.ts b/translations/deepin-font-manager_es.ts index 986da9ee..b1524317 100644 --- a/translations/deepin-font-manager_es.ts +++ b/translations/deepin-font-manager_es.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. Error al instalar las fuentes %1. No hay suficiente espacio en disco. + + Fonts + + + + + DFontWidget + + Broken file + Archivo roto + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Salir + Salir Continue - button - Continuar + Continuar + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Marca + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Introducir texto de vista previa - \ No newline at end of file + diff --git a/translations/deepin-font-manager_fi.ts b/translations/deepin-font-manager_fi.ts index 6b22f443..daf1037f 100644 --- a/translations/deepin-font-manager_fi.ts +++ b/translations/deepin-font-manager_fi.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. %1 kirjasimen asentaminen epäonnistui. Levytila ei riitä. + + Fonts + + + + + DFontWidget + + Broken file + Virheellinen tiedosto + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Poistu + Poistu Continue - button - Jatka + Jatka + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Tavaramerkki + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Esikatselun teksti - \ No newline at end of file + diff --git a/translations/deepin-font-manager_fr.ts b/translations/deepin-font-manager_fr.ts index 32d06d72..2ff533a9 100644 --- a/translations/deepin-font-manager_fr.ts +++ b/translations/deepin-font-manager_fr.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. Impossible d'installer les polices %1. L'espace disque est insuffisant. + + Fonts + + + + + DFontWidget + + Broken file + Fichier corrompu + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Quitter + Quitter Continue - button - Continuer + Continuer + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Marque déposée + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Saisir un texte d'aperçu - \ No newline at end of file + diff --git a/translations/deepin-font-manager_gl_ES.ts b/translations/deepin-font-manager_gl_ES.ts index 0c1fdec4..a12aedba 100644 --- a/translations/deepin-font-manager_gl_ES.ts +++ b/translations/deepin-font-manager_gl_ES.ts @@ -1,4 +1,6 @@ - + + + Category @@ -42,7 +44,7 @@ DFDeleteTTCDialog %1 is a font family, if you proceed, all fonts in it will be deleted - + Delete @@ -54,11 +56,11 @@ DFDisableTTCDialog %1 is a font family, if you proceed, all fonts in it will be enabled - + %1 is a font family, if you proceed, all fonts in it will be disabled - + Enable @@ -75,7 +77,7 @@ DFHandleTTCDialog Apply to all selected font families - + Cancel @@ -145,19 +147,30 @@ Alt+M - + CTRL+I - + Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. - + + + + Fonts + + + + + DFontWidget + + Broken file + Ficheiro caído @@ -211,13 +224,18 @@ Exit - button - Saír + Saír Continue - button - Continuar + Continuar + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Marca rexistrada + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Insira o texto anterior - \ No newline at end of file + diff --git a/translations/deepin-font-manager_hi_IN.ts b/translations/deepin-font-manager_hi_IN.ts index 6bfa3dff..1004c304 100644 --- a/translations/deepin-font-manager_hi_IN.ts +++ b/translations/deepin-font-manager_hi_IN.ts @@ -1,4 +1,6 @@ - + + + Category @@ -153,11 +155,22 @@ Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. - + + + + Fonts + + + + + DFontWidget + + Broken file + विकृत फाइल @@ -211,13 +224,18 @@ Exit - button - बंद करें + बंद करें Continue - button - जारी रखें + जारी रखें + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark ट्रेडमार्क + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ पूर्वावलोकन हेतु लेख दर्ज करें - \ No newline at end of file + diff --git a/translations/deepin-font-manager_hr.ts b/translations/deepin-font-manager_hr.ts index 7181ad52..cbd2a059 100644 --- a/translations/deepin-font-manager_hr.ts +++ b/translations/deepin-font-manager_hr.ts @@ -157,6 +157,14 @@ Fonts + + Failed to install %1 font. There is not enough disk space. + + + + Failed to install %1 fonts. There is not enough disk space. + + DFontWidget @@ -216,12 +224,10 @@ Exit - button Izađi Continue - button Nastavi @@ -270,6 +276,14 @@ Trademark + + Copyright + + + + License Description + + Main diff --git a/translations/deepin-font-manager_hu.ts b/translations/deepin-font-manager_hu.ts index c42f6f95..189621e0 100644 --- a/translations/deepin-font-manager_hu.ts +++ b/translations/deepin-font-manager_hu.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. A %1 betűtípusok telepítése sikertelen. Nincs elég lemezterület. + + Fonts + + + + + DFontWidget + + Broken file + Sérült fájl + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Kilépés + Kilépés Continue - button - Folytatás + Folytatás + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Védjegy + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Szövegbevitel előnézete - \ No newline at end of file + diff --git a/translations/deepin-font-manager_id.ts b/translations/deepin-font-manager_id.ts index ff03ba7f..74eb29c3 100644 --- a/translations/deepin-font-manager_id.ts +++ b/translations/deepin-font-manager_id.ts @@ -157,6 +157,14 @@ Fonts + + Failed to install %1 font. There is not enough disk space. + + + + Failed to install %1 fonts. There is not enough disk space. + + DFontWidget @@ -216,12 +224,10 @@ Exit - button Continue - button @@ -270,6 +276,14 @@ Basic info + + Copyright + + + + License Description + + Main diff --git a/translations/deepin-font-manager_it.ts b/translations/deepin-font-manager_it.ts index 2d1d07fd..961701d1 100644 --- a/translations/deepin-font-manager_it.ts +++ b/translations/deepin-font-manager_it.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. Installazione di %1 font fallita per spazio insufficiente. + + Fonts + + + + + DFontWidget + + Broken file + File corrotto + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Esci + Esci Continue - button - Continua + Continua + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Licenza + + Copyright + + + + License Description + + Main @@ -448,4 +474,4 @@ Localizzazione italiana a cura di Massimo A. Carofano. Inserisci testo di prova - \ No newline at end of file + diff --git a/translations/deepin-font-manager_ja.ts b/translations/deepin-font-manager_ja.ts index 31e75a0b..38d2f66e 100644 --- a/translations/deepin-font-manager_ja.ts +++ b/translations/deepin-font-manager_ja.ts @@ -157,6 +157,14 @@ Fonts + + Failed to install %1 font. There is not enough disk space. + + + + Failed to install %1 fonts. There is not enough disk space. + + DFontWidget @@ -216,12 +224,10 @@ Exit - button Continue - button @@ -270,6 +276,14 @@ Basic info + + Copyright + + + + License Description + + Main diff --git a/translations/deepin-font-manager_ko.ts b/translations/deepin-font-manager_ko.ts index 56804219..2573e3b8 100644 --- a/translations/deepin-font-manager_ko.ts +++ b/translations/deepin-font-manager_ko.ts @@ -1,4 +1,6 @@ - + + + Category @@ -42,7 +44,7 @@ DFDeleteTTCDialog %1 is a font family, if you proceed, all fonts in it will be deleted - + Delete @@ -54,11 +56,11 @@ DFDisableTTCDialog %1 is a font family, if you proceed, all fonts in it will be enabled - + %1 is a font family, if you proceed, all fonts in it will be disabled - + Enable @@ -75,7 +77,7 @@ DFHandleTTCDialog Apply to all selected font families - + Cancel @@ -145,20 +147,31 @@ Alt+M - + CTRL+I - + Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. %1개의 글꼴을 설치하지 못했습니다. 디스크 공간이 부족합니다. + + Fonts + + + + + DFontWidget + + Broken file + 깨진 파일 + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - 종료 + 종료 Continue - button - 계속 + 계속 + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark 트레이드마크 + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ 미리보기 텍스트 입력 - \ No newline at end of file + diff --git a/translations/deepin-font-manager_lt.ts b/translations/deepin-font-manager_lt.ts index 1ab1da03..d4495e40 100644 --- a/translations/deepin-font-manager_lt.ts +++ b/translations/deepin-font-manager_lt.ts @@ -157,6 +157,14 @@ Fonts + + Failed to install %1 font. There is not enough disk space. + + + + Failed to install %1 fonts. There is not enough disk space. + + DFontWidget @@ -216,12 +224,10 @@ Exit - button Continue - button @@ -270,6 +276,14 @@ Basic info + + Copyright + + + + License Description + + Main diff --git a/translations/deepin-font-manager_mn.ts b/translations/deepin-font-manager_mn.ts index f2af437e..047be07f 100644 --- a/translations/deepin-font-manager_mn.ts +++ b/translations/deepin-font-manager_mn.ts @@ -157,6 +157,14 @@ Fonts + + Failed to install %1 font. There is not enough disk space. + + + + Failed to install %1 fonts. There is not enough disk space. + + DFontWidget @@ -216,12 +224,10 @@ Exit - button Continue - button @@ -270,6 +276,14 @@ Basic info + + Copyright + + + + License Description + + Main diff --git a/translations/deepin-font-manager_ms.ts b/translations/deepin-font-manager_ms.ts index 298eb6fb..61059537 100644 --- a/translations/deepin-font-manager_ms.ts +++ b/translations/deepin-font-manager_ms.ts @@ -1,4 +1,6 @@ - + + + Category @@ -153,11 +155,22 @@ Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. - + + + + Fonts + + + + + DFontWidget + + Broken file + Fail rosak @@ -211,13 +224,18 @@ Exit - button - Keluar + Keluar Continue - button - Teruskan + Teruskan + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Tanda Dagangan + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Masukkan teks pratonton - \ No newline at end of file + diff --git a/translations/deepin-font-manager_ne.ts b/translations/deepin-font-manager_ne.ts index 815107e5..3ca27f2a 100644 --- a/translations/deepin-font-manager_ne.ts +++ b/translations/deepin-font-manager_ne.ts @@ -1,4 +1,6 @@ - + + + Category @@ -42,7 +44,7 @@ DFDeleteTTCDialog %1 is a font family, if you proceed, all fonts in it will be deleted - + Delete @@ -54,11 +56,11 @@ DFDisableTTCDialog %1 is a font family, if you proceed, all fonts in it will be enabled - + %1 is a font family, if you proceed, all fonts in it will be disabled - + Enable @@ -75,7 +77,7 @@ DFHandleTTCDialog Apply to all selected font families - + Cancel @@ -145,19 +147,30 @@ Alt+M - + CTRL+I - + Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. - + + + + Fonts + + + + + DFontWidget + + Broken file + टुक्रिएको फाईल @@ -172,19 +185,19 @@ The other %1 system fonts cannot be deleted - + The font "%1" in use cannot be deleted - + The other %1 system fonts and the font "%2" in use cannot be deleted - + Are you sure you want to delete %1 font(s)? - + Delete @@ -207,17 +220,22 @@ No fonts to be installed - + Exit - button - बाहिर निस्कनुहोस् + बाहिर निस्कनुहोस् Continue - button - जारी राख्नुहोस् + जारी राख्नुहोस् + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark ट्रेडमार्क + + Copyright + + + + License Description + + Main @@ -283,11 +309,11 @@ Failed to export 1 font. There is not enough disk space. - + Failed to export %1 fonts. There is not enough disk space. - + @@ -341,15 +367,15 @@ %1 is in use, so you cannot disable it - + You cannot disable system fonts and the fonts in use - + You cannot disable system fonts - + @@ -447,4 +473,4 @@ इनपुट पूर्वावलोकन पाठ - \ No newline at end of file + diff --git a/translations/deepin-font-manager_nl.ts b/translations/deepin-font-manager_nl.ts index adb68e01..f069a47f 100644 --- a/translations/deepin-font-manager_nl.ts +++ b/translations/deepin-font-manager_nl.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. %1 lettertypen kunnen niet worden geïnstalleerd omdat er onvoldoende vrije schijfruimte is. + + Fonts + + + + + DFontWidget + + Broken file + Beschadigd bestand + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Afsluiten + Afsluiten Continue - button - Doorgaan + Doorgaan + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Merknaam + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Typ een voorbeeldzin - \ No newline at end of file + diff --git a/translations/deepin-font-manager_pl.ts b/translations/deepin-font-manager_pl.ts index c3472f97..5b83845c 100644 --- a/translations/deepin-font-manager_pl.ts +++ b/translations/deepin-font-manager_pl.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. Nie udało się zainstalować %1 czcionek. Niewystarczająca ilość miejsca na dysku. + + Fonts + + + + + DFontWidget + + Broken file + Uszkodzony plik + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Wyjście + Wyjście Continue - button - Kontynuuj + Kontynuuj + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Znak towarowy + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Wprowadź tekst do podglądu - \ No newline at end of file + diff --git a/translations/deepin-font-manager_pt.ts b/translations/deepin-font-manager_pt.ts index 96e3720b..e660d019 100644 --- a/translations/deepin-font-manager_pt.ts +++ b/translations/deepin-font-manager_pt.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. Falha na instalação de %1 fontes. Não há espaço suficiente em disco. + + Fonts + + + + + DFontWidget + + Broken file + Ficheiro corrompido + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Sair + Sair Continue - button - Continuar + Continuar + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Marca registada + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Inserir texto de pré-visualização - \ No newline at end of file + diff --git a/translations/deepin-font-manager_pt_BR.ts b/translations/deepin-font-manager_pt_BR.ts index 59cf59b7..c96751ab 100644 --- a/translations/deepin-font-manager_pt_BR.ts +++ b/translations/deepin-font-manager_pt_BR.ts @@ -1,4 +1,6 @@ - + + + Category @@ -153,12 +155,23 @@ Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. Falha ao instalar %1 fontes. Não há espaço disponível em disco. + + Fonts + + + + + DFontWidget + + Broken file + Arquivo corrompido + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Sair + Sair Continue - button - Continuar + Continuar + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Marca comercial + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Insira o texto de pré-visualização - \ No newline at end of file + diff --git a/translations/deepin-font-manager_ro.ts b/translations/deepin-font-manager_ro.ts index bb835b3c..074a3227 100644 --- a/translations/deepin-font-manager_ro.ts +++ b/translations/deepin-font-manager_ro.ts @@ -157,6 +157,14 @@ Fonts + + Failed to install %1 font. There is not enough disk space. + + + + Failed to install %1 fonts. There is not enough disk space. + + DFontWidget @@ -216,12 +224,10 @@ Exit - button Continue - button @@ -270,6 +276,14 @@ Basic info + + Copyright + + + + License Description + + Main diff --git a/translations/deepin-font-manager_ru.ts b/translations/deepin-font-manager_ru.ts index beeb0348..34180289 100644 --- a/translations/deepin-font-manager_ru.ts +++ b/translations/deepin-font-manager_ru.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. Не удалось установить шрифты % 1. Недостаточно места на диске. + + Fonts + + + + + DFontWidget + + Broken file + Поврежденный файл + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Выход + Выход Continue - button - Продолжить + Продолжить + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Торговая марка + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Введите текст для просмотра - \ No newline at end of file + diff --git a/translations/deepin-font-manager_sk.ts b/translations/deepin-font-manager_sk.ts index 393fb088..6b708980 100644 --- a/translations/deepin-font-manager_sk.ts +++ b/translations/deepin-font-manager_sk.ts @@ -157,6 +157,14 @@ Fonts + + Failed to install %1 font. There is not enough disk space. + + + + Failed to install %1 fonts. There is not enough disk space. + + DFontWidget @@ -216,12 +224,10 @@ Exit - button Continue - button @@ -270,6 +276,14 @@ Basic info + + Copyright + + + + License Description + + Main diff --git a/translations/deepin-font-manager_sl.ts b/translations/deepin-font-manager_sl.ts index c040f49d..2694ebd0 100644 --- a/translations/deepin-font-manager_sl.ts +++ b/translations/deepin-font-manager_sl.ts @@ -1,4 +1,6 @@ - + + + Category @@ -153,11 +155,22 @@ Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. - + + + + Fonts + + + + + DFontWidget + + Broken file + Okvarjena datoteka @@ -211,13 +224,18 @@ Exit - button - Izhod + Izhod Continue - button - Nadaljevanje + Nadaljevanje + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Blagovna znamka + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Vnesite besedilo predogleda - \ No newline at end of file + diff --git a/translations/deepin-font-manager_sq.ts b/translations/deepin-font-manager_sq.ts index 51015238..66ecbbf1 100644 --- a/translations/deepin-font-manager_sq.ts +++ b/translations/deepin-font-manager_sq.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. S’u arrit të instalohen %1 lloje shkronjash. S’ka hapësirë të mjaftueshme në disk. + + Fonts + + + + + DFontWidget + + Broken file + Kartelë e dëmtuar + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Dalje + Dalje Continue - button - Vazhdo + Vazhdo + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Shenjë tregtare + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Tekst prove - \ No newline at end of file + diff --git a/translations/deepin-font-manager_sr.ts b/translations/deepin-font-manager_sr.ts index faaaa5b0..a68c61bb 100644 --- a/translations/deepin-font-manager_sr.ts +++ b/translations/deepin-font-manager_sr.ts @@ -1,4 +1,6 @@ - + + + Category @@ -153,12 +155,23 @@ Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. Неуспешно инсталирање %1 фонта/ова. Недовољно простора на диску. + + Fonts + + + + + DFontWidget + + Broken file + Оштећена датотека + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Изађи + Изађи Continue - button - Настави + Настави + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Заштитни знак + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Унеси текст за преглед - \ No newline at end of file + diff --git a/translations/deepin-font-manager_tr.ts b/translations/deepin-font-manager_tr.ts index 73836d49..ffabc1c2 100644 --- a/translations/deepin-font-manager_tr.ts +++ b/translations/deepin-font-manager_tr.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. %1 yazı tipi kurulamadı. Yeterli disk alanı yok. + + Fonts + + + + + DFontWidget + + Broken file + Bozuk dosya + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Çıkış + Çıkış Continue - button - Devam + Devam + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Marka + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Önizleme metni gir - \ No newline at end of file + diff --git a/translations/deepin-font-manager_ug.ts b/translations/deepin-font-manager_ug.ts index de7bef98..fa647568 100644 --- a/translations/deepin-font-manager_ug.ts +++ b/translations/deepin-font-manager_ug.ts @@ -1,4 +1,6 @@ - + + + Category @@ -153,11 +155,22 @@ Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. - + + + + Fonts + + + + + DFontWidget + + Broken file + ھۆججەت بۇزۇلغان @@ -211,13 +224,18 @@ Exit - button - چېكىنىش + چېكىنىش Continue - button - داۋاملاشتۇرۇش + داۋاملاشتۇرۇش + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark تاۋار ماركىسى + + Copyright + نەشىر ھوقۇقى + + + License Description + ئىجازەتنامىنى تەسۋىرلەش + Main @@ -447,4 +473,4 @@ تېكىست كىرگۈزۈپ كۆرۈپ بېقىڭ - \ No newline at end of file + diff --git a/translations/deepin-font-manager_uk.ts b/translations/deepin-font-manager_uk.ts index ca61b232..ad8412d9 100644 --- a/translations/deepin-font-manager_uk.ts +++ b/translations/deepin-font-manager_uk.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. Не вдалося встановити %1 шрифтів. На диску недостатньо місця. + + Fonts + + + + + DFontWidget + + Broken file + Пошкоджений файл + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - Вийти + Вийти Continue - button - Продовжити + Продовжити + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Торговельна марка + + Copyright + + + + License Description + + Main @@ -447,4 +473,4 @@ Введіть текст для попереднього перегляду - \ No newline at end of file + diff --git a/translations/deepin-font-manager_vi.ts b/translations/deepin-font-manager_vi.ts index 75f18c8d..d25f5e0e 100644 --- a/translations/deepin-font-manager_vi.ts +++ b/translations/deepin-font-manager_vi.ts @@ -1,4 +1,6 @@ - + + + Category @@ -42,7 +44,7 @@ DFDeleteTTCDialog %1 is a font family, if you proceed, all fonts in it will be deleted - + Delete @@ -54,11 +56,11 @@ DFDisableTTCDialog %1 is a font family, if you proceed, all fonts in it will be enabled - + %1 is a font family, if you proceed, all fonts in it will be disabled - + Enable @@ -75,7 +77,7 @@ DFHandleTTCDialog Apply to all selected font families - + Cancel @@ -145,20 +147,31 @@ Alt+M - + CTRL+I - + Failed to install %1 font. There is not enough disk space. - + Failed to install %1 fonts. There is not enough disk space. Không cài được %1 phông . Không đủ bộ nhớ + + Fonts + + + + + DFontWidget + + Broken file + File lỗi + DeleteConfirmDailog @@ -172,19 +185,19 @@ The other %1 system fonts cannot be deleted - + The font "%1" in use cannot be deleted - + The other %1 system fonts and the font "%2" in use cannot be deleted - + Are you sure you want to delete %1 font(s)? - + Delete @@ -211,13 +224,18 @@ Exit - button - Thoát + Thoát Continue - button - Tiếp tục + Tiếp tục + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark Thương hiệu + + Copyright + + + + License Description + + Main @@ -341,15 +367,15 @@ %1 is in use, so you cannot disable it - + You cannot disable system fonts and the fonts in use - + You cannot disable system fonts - + @@ -447,4 +473,4 @@ Nhập thử chữ xem trước - \ No newline at end of file + diff --git a/translations/deepin-font-manager_zh_CN.ts b/translations/deepin-font-manager_zh_CN.ts index 0820fe3d..e1501bfe 100644 --- a/translations/deepin-font-manager_zh_CN.ts +++ b/translations/deepin-font-manager_zh_CN.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. 目标磁盘空间不足,%1 个文件安装失败 + + Fonts + + + + + DFontWidget + + Broken file + 文件已损坏 + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - 退 出 + 退 出 Continue - button - 继 续 + 继 续 + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark 商标 + + Copyright + 版权 + + + License Description + 许可证描述 + Main @@ -447,4 +473,4 @@ 输入文本内容进行预览 - \ No newline at end of file + diff --git a/translations/deepin-font-manager_zh_HK.ts b/translations/deepin-font-manager_zh_HK.ts index 242447cc..8f353007 100644 --- a/translations/deepin-font-manager_zh_HK.ts +++ b/translations/deepin-font-manager_zh_HK.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. 目標磁盤空間不足,%1 個文件安裝失敗 + + Fonts + + + + + DFontWidget + + Broken file + 文件已損壞 + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - 退 出 + 退 出 Continue - button - 繼 續 + 繼 續 + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark 商標 + + Copyright + 版权 + + + License Description + 许可证描述 + Main @@ -447,4 +473,4 @@ 輸入文本內容進行預覽 - \ No newline at end of file + diff --git a/translations/deepin-font-manager_zh_TW.ts b/translations/deepin-font-manager_zh_TW.ts index 9ba3f4d5..cfd45c26 100644 --- a/translations/deepin-font-manager_zh_TW.ts +++ b/translations/deepin-font-manager_zh_TW.ts @@ -1,4 +1,6 @@ - + + + Category @@ -159,6 +161,17 @@ Failed to install %1 fonts. There is not enough disk space. 目標磁碟空間不足,%1 個文件安裝失敗 + + Fonts + + + + + DFontWidget + + Broken file + 文件已損壞 + DeleteConfirmDailog @@ -211,13 +224,18 @@ Exit - button - 退 出 + 退 出 Continue - button - 繼 續 + 繼 續 + + + + Font + + Don't let your dreams be dreams + @@ -258,6 +276,14 @@ Trademark 商標 + + Copyright + 版權 + + + License Description + 許可證描述 + Main @@ -447,4 +473,4 @@ 輸入文字內容進行預覽 - \ No newline at end of file +