diff -Nru kig-17.12.3/debian/changelog kig-18.04.3/debian/changelog --- kig-17.12.3/debian/changelog 2018-07-17 12:57:18.000000000 +0000 +++ kig-18.04.3/debian/changelog 2018-08-10 08:17:43.000000000 +0000 @@ -1,3 +1,12 @@ +kig (4:18.04.3-0ubuntu1) cosmic; urgency=medium + + * New upstream release (18.03.80) + * New upstream release (18.04.0) + * New upstream release (18.04.1) + * New upstream release (18.04.3) + + -- Rik Mills Fri, 10 Aug 2018 09:17:43 +0100 + kig (4:17.12.3-0ubuntu2) cosmic; urgency=medium * No-change rebuild for boost soname change. diff -Nru kig-17.12.3/debian/control kig-18.04.3/debian/control --- kig-17.12.3/debian/control 2018-03-16 13:27:19.000000000 +0000 +++ kig-18.04.3/debian/control 2018-08-10 08:17:43.000000000 +0000 @@ -25,7 +25,7 @@ libqt5xmlpatterns5-dev (>= 5.6.1~), pkg-config, pkg-kde-tools (>> 0.15.15), - qtbase5-dev (>= 5.6.1~) + qtbase5-dev (>= 5.6.1~), Standards-Version: 3.9.6 Homepage: http://edu.kde.org/ Vcs-Browser: https://code.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/kig diff -Nru kig-17.12.3/filters/asyexporter.cc kig-18.04.3/filters/asyexporter.cc --- kig-17.12.3/filters/asyexporter.cc 2018-01-06 04:25:23.000000000 +0000 +++ kig-18.04.3/filters/asyexporter.cc 2018-06-02 12:28:33.000000000 +0000 @@ -55,7 +55,7 @@ void AsyExporter::run( const KigPart& doc, KigWidget& w ) { KigFileDialog* kfd = new KigFileDialog( - QStandardPaths::writableLocation( QStandardPaths::DocumentsLocation ), i18n( "*.asy|Asymptote Documents (*.asy)" ), + QStandardPaths::writableLocation( QStandardPaths::DocumentsLocation ), i18n( "Asymptote Documents (*.asy)" ), i18n( "Export as Asymptote script" ), &w ); kfd->setOptionCaption( i18n( "Asymptote Options" ) ); AsyExporterOptions* opts = new AsyExporterOptions( 0L ); diff -Nru kig-17.12.3/filters/asyexporterimpvisitor.cc kig-18.04.3/filters/asyexporterimpvisitor.cc --- kig-17.12.3/filters/asyexporterimpvisitor.cc 2018-01-06 04:25:23.000000000 +0000 +++ kig-18.04.3/filters/asyexporterimpvisitor.cc 2018-06-02 12:28:33.000000000 +0000 @@ -43,7 +43,7 @@ { QString pencolor(""); // Asymptote definition of pen color - pencolor = "rgb(" + QString::number(c.red()) + "," + QString::number(c.green()) + "," + QString::number(c.blue()) + ")"; + pencolor = "rgb(" + QString::number(c.red()/255.0) + "," + QString::number(c.green()/255.0) + "," + QString::number(c.blue()/255.0) + ")"; return pencolor; } diff -Nru kig-17.12.3/filters/latexexporter.cc kig-18.04.3/filters/latexexporter.cc --- kig-17.12.3/filters/latexexporter.cc 2018-01-06 04:25:23.000000000 +0000 +++ kig-18.04.3/filters/latexexporter.cc 2018-06-02 12:28:33.000000000 +0000 @@ -535,7 +535,7 @@ void LatexExporter::run( const KigPart& doc, KigWidget& w ) { KigFileDialog* kfd = new KigFileDialog( - QStandardPaths::writableLocation( QStandardPaths::DocumentsLocation ), i18n( "*.tex|Latex Documents (*.tex)" ), + QStandardPaths::writableLocation( QStandardPaths::DocumentsLocation ), i18n( "Latex Documents (*.tex)" ), i18n( "Export as Latex" ), &w ); kfd->setOptionCaption( i18n( "Latex Options" ) ); LatexExporterOptions* opts = new LatexExporterOptions( 0L ); diff -Nru kig-17.12.3/filters/svgexporter.cc kig-18.04.3/filters/svgexporter.cc --- kig-17.12.3/filters/svgexporter.cc 2018-01-06 04:25:23.000000000 +0000 +++ kig-18.04.3/filters/svgexporter.cc 2018-06-02 12:28:33.000000000 +0000 @@ -56,7 +56,7 @@ void SVGExporter::run( const KigPart& part, KigWidget& w ) { KigFileDialog* kfd = new KigFileDialog( - QStandardPaths::writableLocation( QStandardPaths::PicturesLocation ), i18n( "*.svg|Scalable Vector Graphics (*.svg)" ), + QStandardPaths::writableLocation( QStandardPaths::PicturesLocation ), i18n( "Scalable Vector Graphics (*.svg)" ), i18n( "Export as SVG" ), &w ); kfd->setOptionCaption( i18n( "SVG Options" ) ); SVGExporterOptions* opts = new SVGExporterOptions( 0L ); diff -Nru kig-17.12.3/filters/xfigexporter.cc kig-18.04.3/filters/xfigexporter.cc --- kig-17.12.3/filters/xfigexporter.cc 2018-01-06 04:25:23.000000000 +0000 +++ kig-18.04.3/filters/xfigexporter.cc 2018-06-02 12:28:33.000000000 +0000 @@ -574,7 +574,7 @@ void XFigExporter::run( const KigPart& doc, KigWidget& w ) { KigFileDialog* kfd = new KigFileDialog( - QStandardPaths::writableLocation( QStandardPaths::PicturesLocation ), i18n( "*.fig|XFig Documents (*.fig)" ), + QStandardPaths::writableLocation( QStandardPaths::PicturesLocation ), i18n( "XFig Documents (*.fig)" ), i18n( "Export as XFig File" ), &w ); if ( !kfd->exec() ) return; diff -Nru kig-17.12.3/kig/kig_part.cpp kig-18.04.3/kig/kig_part.cpp --- kig-17.12.3/kig/kig_part.cpp 2018-01-06 04:25:23.000000000 +0000 +++ kig-18.04.3/kig/kig_part.cpp 2018-06-02 12:28:33.000000000 +0000 @@ -723,8 +723,7 @@ bool KigPart::internalSaveAs() { // this slot is connected to the KStandardAction::saveAs action... - QString formats = i18n( "*.kig|Kig Documents (*.kig)\n" - "*.kigz|Compressed Kig Documents (*.kigz)" ); + QString formats = i18n( "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" ); QString currentDir = url().toLocalFile(); if ( currentDir.isNull() ) diff -Nru kig-17.12.3/modes/typesdialog.cpp kig-18.04.3/modes/typesdialog.cpp --- kig-17.12.3/modes/typesdialog.cpp 2018-01-06 04:25:23.000000000 +0000 +++ kig-18.04.3/modes/typesdialog.cpp 2018-06-02 12:28:33.000000000 +0000 @@ -463,7 +463,7 @@ types.push_back( macro ); } if (types.empty()) return; - QString file_name = QFileDialog::getSaveFileName( this, i18n( "Export Types" ), QStandardPaths::writableLocation( QStandardPaths::DocumentsLocation ), i18n("*.kigt|Kig Types Files\n*|All Files") ); + QString file_name = QFileDialog::getSaveFileName( this, i18n( "Export Types" ), QStandardPaths::writableLocation( QStandardPaths::DocumentsLocation ), i18n("Kig Types Files (*.kigt);;All Files (*)") ); if ( file_name.isNull() ) return; QFile fi( file_name ); @@ -479,12 +479,12 @@ { //TODO : Do this through MIME types QStringList toolFilters; - toolFilters << i18n( "*.kigt|Kig Types Files" ); + toolFilters << i18n( "Kig Types Files (*.kigt)" ); #ifdef WITH_GEOGEBRA - toolFilters << i18n( "*.ggt|Geogebra Tool Files" ); + toolFilters << i18n( "Geogebra Tool Files (*.ggt)" ); #endif //WITH_GEOGEBRA - toolFilters << i18n( "*|All Files" ); - QStringList file_names = QFileDialog::getOpenFileNames( this, i18n( "Import Types" ), QStandardPaths::writableLocation( QStandardPaths::DocumentsLocation ), toolFilters.join( QLatin1String( "\n" ) ) ); + toolFilters << i18n( "All Files (*)" ); + QStringList file_names = QFileDialog::getOpenFileNames( this, i18n( "Import Types" ), QStandardPaths::writableLocation( QStandardPaths::DocumentsLocation ), toolFilters.join( QLatin1String( ";;" ) ) ); std::vector macros; for ( QStringList::const_iterator i = file_names.constBegin(); diff -Nru kig-17.12.3/objects/line_imp.cc kig-18.04.3/objects/line_imp.cc --- kig-17.12.3/objects/line_imp.cc 2018-01-06 04:25:23.000000000 +0000 +++ kig-18.04.3/objects/line_imp.cc 2018-06-02 12:28:33.000000000 +0000 @@ -628,7 +628,39 @@ else if ( which == Parent::numberOfProperties() + pnum++ ) return false; else if ( which == Parent::numberOfProperties() + pnum++ ) + return false; + else assert( false ); + return false; +} + +bool SegmentImp::isPropertyDefinedOnOrThroughThisImp( int which ) const +{ + int pnum = 0; + + if ( which < Parent::numberOfProperties() ) + return Parent::isPropertyDefinedOnOrThroughThisImp( which ); + else if ( which == Parent::numberOfProperties() + pnum++ ) + return false; + else if ( which == Parent::numberOfProperties() + pnum++ ) + return true; + else if ( which == Parent::numberOfProperties() + pnum++ ) + return true; + else if ( which == Parent::numberOfProperties() + pnum++ ) + return true; + else if ( which == Parent::numberOfProperties() + pnum++ ) + return true; + else if ( which == Parent::numberOfProperties() + pnum++ ) return true; + else assert( false ); + return false; +} + +bool RayImp::isPropertyDefinedOnOrThroughThisImp( int which ) const +{ + int pnum = 0; + + if ( which < Parent::numberOfProperties() ) + return Parent::isPropertyDefinedOnOrThroughThisImp( which ); else if ( which == Parent::numberOfProperties() + pnum++ ) return true; else if ( which == Parent::numberOfProperties() + pnum++ ) diff -Nru kig-17.12.3/objects/line_imp.h kig-18.04.3/objects/line_imp.h --- kig-17.12.3/objects/line_imp.h 2018-01-06 04:25:23.000000000 +0000 +++ kig-18.04.3/objects/line_imp.h 2018-06-02 12:28:33.000000000 +0000 @@ -113,6 +113,7 @@ ObjectImp* property( int which, const KigDocument& d ) const Q_DECL_OVERRIDE; const char* iconForProperty( int which ) const Q_DECL_OVERRIDE; const ObjectImpType* impRequirementForProperty( int which ) const Q_DECL_OVERRIDE; + bool isPropertyDefinedOnOrThroughThisImp( int which ) const Q_DECL_OVERRIDE; SegmentImp* copy() const Q_DECL_OVERRIDE; @@ -168,6 +169,7 @@ ObjectImp* property( int which, const KigDocument& d ) const Q_DECL_OVERRIDE; const char* iconForProperty( int which ) const Q_DECL_OVERRIDE; const ObjectImpType* impRequirementForProperty( int which ) const Q_DECL_OVERRIDE; + bool isPropertyDefinedOnOrThroughThisImp( int which ) const Q_DECL_OVERRIDE; RayImp* copy() const Q_DECL_OVERRIDE; diff -Nru kig-17.12.3/po/ar/kig.po kig-18.04.3/po/ar/kig.po --- kig-17.12.3/po/ar/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/ar/kig.po 2018-07-10 00:05:07.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2014-07-02 21:39+0300\n" "Last-Translator: Abdalrahim G. Fakhouri \n" "Language-Team: Arabic >\n" @@ -159,7 +159,7 @@ #: filters/asyexporter.cc:58 #, fuzzy, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "LaTeXكبيرمطّاط مستندات" #: filters/asyexporter.cc:59 @@ -406,7 +406,7 @@ #: filters/latexexporter.cc:538 #, fuzzy, kde-format -msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "LaTeXكبيرمطّاط مستندات" #: filters/latexexporter.cc:539 @@ -517,7 +517,7 @@ #: filters/svgexporter.cc:59 #, fuzzy, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "قابل للتسلّق الموجه رسوم" #: filters/svgexporter.cc:60 @@ -547,7 +547,7 @@ #: filters/xfigexporter.cc:577 #, fuzzy, kde-format -msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "XFig مستندات" #: filters/xfigexporter.cc:578 @@ -986,27 +986,25 @@ #: kig/kig_part.cpp:726 #, fuzzy, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "Kig مستندات n مضغوط Kig مستندات" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, fuzzy, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "الـ ملفّ موجود تنفيذ إلى كتابة فوقية :: كتابة على الإيطالية?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, fuzzy, kde-format msgid "Overwrite File?" msgstr "الكتابة فوق الملف ؟" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, fuzzy, kde-format msgid "Print Geometry" msgstr "اطبع الهندسة" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" @@ -1017,7 +1015,7 @@ msgstr[4] "أخفِ %1 كائنًا" msgstr[5] "أخفِ %1 كائن" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, fuzzy, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3270,24 +3268,22 @@ #: modes/typesdialog.cpp:466 #, fuzzy, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "Kig أنواع ملفات n الكل ملفات" #: modes/typesdialog.cpp:482 #, fuzzy, kde-format -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "Kig أنواع ملفات n الكل ملفات" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/ast/kig.po kig-18.04.3/po/ast/kig.po --- kig-17.12.3/po/ast/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/ast/kig.po 2018-07-10 00:05:07.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2016-12-21 16:37+0100\n" "Last-Translator: enolp \n" "Language-Team: Asturian \n" @@ -157,7 +157,7 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "" #: filters/asyexporter.cc:59 @@ -404,7 +404,7 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "" #: filters/latexexporter.cc:539 @@ -511,7 +511,7 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "" #: filters/svgexporter.cc:60 @@ -541,7 +541,7 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "" #: filters/xfigexporter.cc:578 @@ -970,34 +970,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "" msgstr[1] "" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3222,24 +3220,22 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/bg/kig.po kig-18.04.3/po/bg/kig.po --- kig-17.12.3/po/bg/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/bg/kig.po 2018-07-10 00:05:07.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2007-04-21 19:02+0000\n" "Last-Translator: Zlatko Popov \n" "Language-Team: Bulgarian \n" @@ -162,7 +162,7 @@ #: filters/asyexporter.cc:58 #, fuzzy, kde-format #| msgid "*.tex|Latex Documents (*.tex)" -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.tex|Документи Latex (*.tex)" #: filters/asyexporter.cc:59 @@ -440,8 +440,9 @@ msgstr "&Файл Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Документи Latex (*.tex)" #: filters/latexexporter.cc:539 @@ -559,8 +560,9 @@ msgstr "&Файл SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Векторни изображения (*.svg)" #: filters/svgexporter.cc:60 @@ -589,8 +591,9 @@ msgstr "&Файл XFig..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|Документи XFig (*.fig)" #: filters/xfigexporter.cc:578 @@ -1064,30 +1067,31 @@ msgstr "Запис" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Документи Kig (*.kig)\n" "*.kigz|Компресирани документи Kig (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Вече има файл \"%1\". Искате ли да бъде презаписан?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Презапис на файл" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Отпечатване" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, fuzzy, kde-format #| msgid "Hide an object" msgid "Hide %1 Object" @@ -1095,7 +1099,7 @@ msgstr[0] "Скриване на обект" msgstr[1] "Скриване на обект" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, fuzzy, kde-format #| msgid "Show an object" msgid "Show %1 Object" @@ -3480,10 +3484,11 @@ msgstr "Експортиране на типове" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Типове файлове Kig\n" "*|Всички файлове" @@ -3493,19 +3498,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Типове файлове Kig\n" "*|Всички файлове" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/bs/kig.po kig-18.04.3/po/bs/kig.po --- kig-17.12.3/po/bs/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/bs/kig.po 2018-07-10 00:05:07.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2014-02-09 16:21+0100\n" "Last-Translator: Samir Ribić \n" "Language-Team: Bosnian \n" @@ -161,8 +161,9 @@ msgstr "&Asimptota..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Asymptote Documents (*.asy)" #: filters/asyexporter.cc:59 @@ -428,8 +429,9 @@ msgstr "&Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Latex dokumenti (*.tex)" #: filters/latexexporter.cc:539 @@ -550,8 +552,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Skalabilna vektorska grafika (*.svg)" #: filters/svgexporter.cc:60 @@ -580,8 +583,9 @@ msgstr "&XFig datoteka..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig dokumenti (*.fig)" #: filters/xfigexporter.cc:578 @@ -1045,30 +1049,31 @@ msgstr "Snimi u Kig-ovom formatu" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kig-ovi dokumenti (*.kig)\n" "*.kigz|Kompresovani Kig-ovi dokumenti (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Datoteka \"%1\" već postoji. Želite li pisati preko nje?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Prebrisati datoteka?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Geometrija štampe" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" @@ -1076,7 +1081,7 @@ msgstr[1] "Sakrijte %1 objekta" msgstr[2] "Sakrijte %1 objekata" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3379,10 +3384,11 @@ msgstr "Izvezi tipove" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig datoteke sa tipovima\n" "*|Sve datoteke" @@ -3392,19 +3398,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Kig datoteke sa tipovima\n" "*|Sve datoteke" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/ca/kfile_drgeo.po kig-18.04.3/po/ca/kfile_drgeo.po --- kig-17.12.3/po/ca/kfile_drgeo.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/ca/kfile_drgeo.po 2018-07-10 00:05:07.000000000 +0000 @@ -59,3 +59,23 @@ #, kde-format msgid "Macro" msgstr "Macro" + +#~ msgctxt "NAME OF TRANSLATORS" +#~ msgid "Your names" +#~ msgstr "Albert Astals Cid" + +#~ msgctxt "EMAIL OF TRANSLATORS" +#~ msgid "Your emails" +#~ msgstr "aacid@kde.org" + +#, fuzzy +#~ msgid "T&ests" +#~ msgstr "Textos" + +#, fuzzy +#~ msgid "Tests" +#~ msgstr "Textos" + +#, fuzzy +#~ msgid "Square" +#~ msgstr "Resum" diff -Nru kig-17.12.3/po/ca/kig.po kig-18.04.3/po/ca/kig.po --- kig-17.12.3/po/ca/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/ca/kig.po 2018-07-10 00:05:07.000000000 +0000 @@ -1,24 +1,24 @@ # Translation of kig.po to Catalan -# Copyright (C) 2004-2016 This_file_is_part_of_KDE +# Copyright (C) 2004-2018 This_file_is_part_of_KDE # # Albert Astals Cid , 2004, 2005, 2006. # David Gil , 2005. # Orestes Mas Casals , 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013. # Josep Ma. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016. -# Antoni Bella Pérez , 2015. +# Antoni Bella Pérez , 2015, 2018. msgid "" msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2016-06-03 22:26+0200\n" -"Last-Translator: Josep Ma. Ferrer \n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-03-07 12:07+0100\n" +"Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" @@ -169,8 +169,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|Documents d'Asymptote (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "Documents d'Asymptote (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -430,8 +430,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|Documents Latex (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "Documents Latex (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -554,8 +554,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Gràfics vectorials escalables (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "Gràfics vectorials escalables (*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -584,8 +584,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|Documents XFig (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "Documents XFig (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -1041,36 +1041,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Documents Kig (*.kig)\n" -"*.kigz|Documents Kig comprimits (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Documents Kig (*.kig);;Documents Kig comprimits (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "El fitxer «%1» ja existeix. Voleu sobreescriure'l?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Voleu sobreescriure el fitxer?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Imprimeix la geometria" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Oculta %1 objecte" msgstr[1] "Oculta %1 objectes" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3406,27 +3402,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Fitxers de tipus Kig\n" -"*|Tots els fitxers" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Fitxers de tipus Kig (*.kigt);;Tots els fitxers (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "*.kigt|Fitxers de tipus Kig" +msgid "Kig Types Files (*.kigt)" +msgstr "Fitxers de tipus Kig (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "*.ggt|Fitxers de l'eina Geogebra" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Fitxers de l'eina Geogebra (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Tots els fitxers" +msgid "All Files (*)" +msgstr "Tots els fitxers (*)" #: modes/typesdialog.cpp:487 #, kde-format @@ -7098,3 +7090,48 @@ "i escollir equació cartesiana per veure la seva equació " "cartesiana, \n" "sempre que sigui una corba algèbrica de grau baix.

\n" + +#, fuzzy +#~| msgid "Construct the midpoint of this point and another point" +#~ msgid "Construct the axis of the segment with this and another point" +#~ msgstr "Construeix el punt mig d'aquest i un altre punt" + +#, fuzzy +#~| msgid "Select the first of the two other points..." +#~ msgid "Select the first of the two points..." +#~ msgstr "Seleccioneu el primer dels dos altres punts..." + +#, fuzzy +#~| msgid "Construct a segment starting at this point" +#~ msgid "Construct the axis of the segment with the previous and this point" +#~ msgstr "Construeix un segment que comenci en aquest punt" + +#, fuzzy +#~| msgid "Select the first of the two other points..." +#~ msgid "Select the second of the two points..." +#~ msgstr "Seleccioneu el primer dels dos altres punts..." + +#~ msgid "Save changes to document %1?" +#~ msgstr "Voleu desar els canvis al document %1?" + +#~ msgid "Save Changes?" +#~ msgstr "Voleu desar els canvis?" + +#~ msgid "" +#~ "*.kig *.kigz *.seg *.fgeo *.fig *.FIG|All Supported Files (*.kig *.kigz *." +#~ "seg *.fgeo *.fig)\n" +#~ "*.kig|Kig Documents (*.kig)\n" +#~ "*.kigz|Compressed Kig Documents (*.kigz)\n" +#~ "*.kgeo|KGeo Documents (*.kgeo)\n" +#~ "*.seg|KSeg Documents (*.seg)\n" +#~ "*.fgeo|Dr. Geo Documents (*.fgeo)\n" +#~ "*.fig *.FIG|Cabri Documents (*.fig *.FIG)" +#~ msgstr "" +#~ "*.kig *.kigz *.seg *.fgeo *.fig *.FIG|Tots els fitxers acceptats (*.kig *." +#~ "kigz *.seg *.fgeo *.fig)\n" +#~ "*.kig|Documents Kig (*.kig)\n" +#~ "*.kigz|Documents Kig comprimits (*.kigz)\n" +#~ "*.kgeo|Documents KGeo (*.kgeo)\n" +#~ "*.seg|Documents KSeg (*.seg)\n" +#~ "*.fgeo|Documents Dr. Geo (*.fgeo)\n" +#~ "*.fig *.FIG|Documents Cabri (*.fig *.FIG)" diff -Nru kig-17.12.3/po/ca@valencia/kfile_drgeo.po kig-18.04.3/po/ca@valencia/kfile_drgeo.po --- kig-17.12.3/po/ca@valencia/kfile_drgeo.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/ca@valencia/kfile_drgeo.po 2018-07-10 00:05:07.000000000 +0000 @@ -59,3 +59,23 @@ #, kde-format msgid "Macro" msgstr "Macro" + +#~ msgctxt "NAME OF TRANSLATORS" +#~ msgid "Your names" +#~ msgstr "Albert Astals Cid" + +#~ msgctxt "EMAIL OF TRANSLATORS" +#~ msgid "Your emails" +#~ msgstr "aacid@kde.org" + +#, fuzzy +#~ msgid "T&ests" +#~ msgstr "Textos" + +#, fuzzy +#~ msgid "Tests" +#~ msgstr "Textos" + +#, fuzzy +#~ msgid "Square" +#~ msgstr "Resum" diff -Nru kig-17.12.3/po/ca@valencia/kig.po kig-18.04.3/po/ca@valencia/kig.po --- kig-17.12.3/po/ca@valencia/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/ca@valencia/kig.po 2018-07-10 00:05:07.000000000 +0000 @@ -1,24 +1,24 @@ # Translation of kig.po to Catalan (Valencian) -# Copyright (C) 2004-2016 This_file_is_part_of_KDE +# Copyright (C) 2004-2018 This_file_is_part_of_KDE # # Albert Astals Cid , 2004, 2005, 2006. # David Gil , 2005. # Orestes Mas Casals , 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013. # Josep Ma. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016. -# Antoni Bella Pérez , 2015. +# Antoni Bella Pérez , 2015, 2018. msgid "" msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2016-06-03 22:26+0200\n" -"Last-Translator: Josep Ma. Ferrer \n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-03-07 12:07+0100\n" +"Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" "Language: ca@valencia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" @@ -42,7 +42,7 @@ #, kde-format msgid "Construct a circle tangent to this line" -msgstr "Construeix un cercle tangent a esta recta" +msgstr "Construeix un cercle tangent a aquesta recta" #, kde-format msgid "Select the line that the new circle should be tangent to..." @@ -62,7 +62,7 @@ msgid "" "Construct a circle with the diameter given by the length of this segment" msgstr "" -"Construeix un cercle amb el diàmetre donat per la longitud d'este segment" +"Construeix un cercle amb el diàmetre donat per la longitud d'aquest segment" #, kde-format msgid "Select the segment whose length gives the diameter of the new circle..." @@ -87,7 +87,7 @@ #, kde-format msgid "Evolute of this curve" -msgstr "Evoluta d'esta corba" +msgstr "Evoluta d'aquesta corba" #, kde-format msgid "Osculating Circle" @@ -99,11 +99,11 @@ #, kde-format msgid "Osculating circle of this curve" -msgstr "Cercle osculador d'esta corba" +msgstr "Cercle osculador d'aquesta corba" #, kde-format msgid "Osculating circle at this point" -msgstr "Cercle osculador en este punt" +msgstr "Cercle osculador en aquest punt" #, kde-format msgid "Select the point..." @@ -127,15 +127,15 @@ #, kde-format msgid "Construct the vector difference of this vector and another one." -msgstr "Construeix el vector diferència d'este vector i un altre." +msgstr "Construeix el vector diferència d'aquest vector i un altre." #, kde-format msgid "Construct the vector difference of the other vector and this one." -msgstr "Construeix el vector diferència de l'altre vector i d'este." +msgstr "Construeix el vector diferència de l'altre vector i d'aquest." #, kde-format msgid "Construct the vector difference starting at this point." -msgstr "Construeix el vector diferència començant en este punt." +msgstr "Construeix el vector diferència començant en aquest punt." #, kde-format msgid "" @@ -169,8 +169,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|Documents d'Asymptote (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "Documents d'Asymptote (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -247,7 +247,7 @@ msgid "" "This Cabri file contains a \"%1\" object, which Kig does not currently " "support." -msgstr "Este fitxer Cabri conté un objecte «%1» que Kig no permet de moment." +msgstr "Aquest fitxer Cabri conté un objecte «%1» que Kig no permet de moment." #: filters/cabri-utils.cc:31 filters/filter.h:54 misc/object_hierarchy.cc:487 #: objects/object_imp_factory.cc:292 @@ -291,7 +291,7 @@ "This Dr. Geo file contains a \"%1 %2\" object, which Kig does not currently " "support." msgstr "" -"Este fitxer Dr. Geo conté un objecte «%1 %2» que Kig no permet de moment." +"Aquest fitxer Dr. Geo conté un objecte «%1 %2» que Kig no permet de moment." #: filters/drgeo-filter.cc:373 #, kde-format @@ -299,7 +299,7 @@ "This Dr. Geo file contains an intersection type, which Kig does not " "currently support." msgstr "" -"Este fitxer Dr. Geo conté un tipus intersecció que Kig no permet de moment." +"Aquest fitxer Dr. Geo conté un tipus intersecció que Kig no permet de moment." #: filters/exporter.cc:70 #, kde-format @@ -324,7 +324,7 @@ #: filters/exporter.cc:117 #, kde-format msgid "Sorry, this file format is not supported." -msgstr "Este format de fitxer no està permés." +msgstr "Aquest format de fitxer no està permés." #: filters/exporter.cc:141 #, kde-format @@ -348,7 +348,7 @@ #: filters/filter.cc:88 #, kde-format msgid "An error was encountered while parsing this file. It cannot be opened." -msgstr "S'ha trobat un error en interpretar este fitxer. No es pot obrir." +msgstr "S'ha trobat un error en interpretar aquest fitxer. No es pot obrir." #: filters/filter.cc:90 #, kde-format @@ -358,7 +358,7 @@ #: filters/filter.cc:101 #, kde-format msgid "Kig cannot open this file." -msgstr "El Kig no pot obrir este fitxer." +msgstr "El Kig no pot obrir aquest fitxer." #: filters/filter.cc:102 misc/lists.cc:324 #, kde-format @@ -395,27 +395,27 @@ "This KSeg document uses a scaling transformation, which Kig currently cannot " "import." msgstr "" -"Este document de KSeg usa transformacions d'escalat que Kig no pot importar " -"de moment." +"Aquest document de KSeg usa transformacions d'escalat que Kig no pot " +"importar de moment." #: filters/kseg-filter.cc:559 #, kde-format msgid "" "This KSeg file contains a filled circle, which Kig does not currently " "support." -msgstr "Este fitxer KSeg conté un cercle omplit que Kig no permet de moment." +msgstr "Aquest fitxer KSeg conté un cercle omplit que Kig no permet de moment." #: filters/kseg-filter.cc:565 #, kde-format msgid "" "This KSeg file contains an arc sector, which Kig does not currently support." -msgstr "Este fitxer KSeg conté un sector d'arc que Kig no permet de moment." +msgstr "Aquest fitxer KSeg conté un sector d'arc que Kig no permet de moment." #: filters/kseg-filter.cc:571 #, kde-format msgid "" "This KSeg file contains an arc segment, which Kig does not currently support." -msgstr "Este fitxer KSeg conté un segment d'arc que Kig no permet de moment." +msgstr "Aquest fitxer KSeg conté un segment d'arc que Kig no permet de moment." #: filters/latexexporter.cc:76 #, kde-format @@ -429,8 +429,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|Documents Latex (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "Documents Latex (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -489,8 +489,8 @@ msgid "" "This file was created by Kig version \"%1\", which this version cannot open." msgstr "" -"Este fitxer s'ha creat amb la versió de Kig «%1» i no pot ser obert amb esta " -"versió." +"Aquest fitxer s'ha creat amb la versió de Kig «%1» i no pot ser obert amb " +"aquesta versió." #: filters/native-filter.cc:200 #, kde-format @@ -500,10 +500,10 @@ "You can try to open this file with an older Kig version (0.4 to 0.6),\n" "and then save it again, which will save it in the new format." msgstr "" -"Este fitxer s'ha creat amb la versió «%1» de Kig.\n" +"Aquest fitxer s'ha creat amb la versió «%1» de Kig.\n" "S'ha eliminat el funcionament amb formats més antics de Kig (anteriors a " "0.4).\n" -"Podeu intentar obrir este fitxer amb una versió més antiga de Kig (0.4 a " +"Podeu intentar obrir aquest fitxer amb una versió més antiga de Kig (0.4 a " "0.6),\n" "i després guardar-lo de nou, així es guardarà en el format nou." @@ -514,7 +514,7 @@ "support.\n" "A standard coordinate system will be used instead." msgstr "" -"Este fitxer Kig té un sistema de coordenades que esta versió de Kig no " +"Aquest fitxer Kig té un sistema de coordenades que aquesta versió de Kig no " "accepta.\n" "S'usarà un sistema de coordenades estàndard." @@ -526,8 +526,8 @@ "support.Perhaps you have compiled Kig without support for this object type," "or perhaps you are using an older Kig version." msgstr "" -"Este fitxer Kig usa un objecte del tipus «%1», que esta versió de Kig no " -"permet. Potser heu compilat Kig sense implementació per a este tipus " +"Aquest fitxer Kig usa un objecte del tipus «%1», que aquesta versió de Kig " +"no permet. Potser heu compilat Kig sense implementació per a aquest tipus " "d'objecte o potser esteu usant una versió de Kig antiga." #: filters/native-filter.cc:389 @@ -537,7 +537,7 @@ "save the construction with a different name and check that it works as " "expected." msgstr "" -"Este fitxer Kig utilitza un objecte de tipus «%1», que ha quedat obsolet. " +"Aquest fitxer Kig utilitza un objecte de tipus «%1», que ha quedat obsolet. " "Hauríeu de guardar la construcció amb un nom diferent i comprovar que " "funciona com espereu." @@ -553,8 +553,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Gràfics vectorials escalables (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "Gràfics vectorials escalables (*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -583,8 +583,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|Documents XFig (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "Documents XFig (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -1014,9 +1014,9 @@ "\">KDE's bug tracking system" msgstr "" "Heu intentat obrir un document del tipus «%1»; malauradament, el Kig no " -"reconeix este format. Si creieu que valdria la pena implementar l'adaptació " -"per al format en qüestió, podeu obrir una sol·licitud de funcionalitat en el " -"sistema de seguiment d'errors del KDE" #: kig/kig_part.cpp:433 kig/kig_part.cpp:478 @@ -1040,36 +1040,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Documents Kig (*.kig)\n" -"*.kigz|Documents Kig comprimits (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Documents Kig (*.kig);;Documents Kig comprimits (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "El fitxer «%1» ja existeix. Voleu sobreescriure'l?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Voleu sobreescriure el fitxer?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Imprimeix la geometria" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Oculta %1 objecte" msgstr[1] "Oculta %1 objectes" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -1395,7 +1391,7 @@ #, kde-format msgid "A half-line by its start point, and another point somewhere on it." msgstr "" -"Una semirecta pel seu punt d'inici i un altre punt en algun lloc d'esta." +"Una semirecta pel seu punt d'inici i un altre punt en algun lloc d'aquesta." #: misc/builtin_stuff.cc:97 #, kde-format @@ -1456,7 +1452,7 @@ #: misc/builtin_stuff.cc:143 #, kde-format msgid "Construct Bisector of This Angle" -msgstr "Construeix la bisectriu d'este angle" +msgstr "Construeix la bisectriu d'aquest angle" #: misc/builtin_stuff.cc:144 #, kde-format @@ -1630,7 +1626,7 @@ #: misc/builtin_stuff.cc:283 #, kde-format msgid "Construct the midpoint of this segment" -msgstr "Construeix el punt mitjà d'este segment" +msgstr "Construeix el punt mitjà d'aquest segment" #: misc/builtin_stuff.cc:289 objects/line_imp.cc:122 #, kde-format @@ -2210,12 +2206,12 @@ #: misc/kiginputdialog.cc:162 #, kde-format msgid "Insert the new size of this angle:" -msgstr "Introduïu la nova mida d'este angle:" +msgstr "Introduïu la nova mida d'aquest angle:" #: misc/kiginputdialog.cc:171 #, kde-format msgid "Use this edit field to modify the size of this angle." -msgstr "Useu este camp d'edició per modificar la mida d'este angle." +msgstr "Useu aquest camp d'edició per modificar la mida d'aquest angle." #: misc/kiginputdialog.cc:178 #, kde-format @@ -2225,8 +2221,8 @@ "If you switch to another unit, the value in the edit field on the left will " "be converted to the new selected unit." msgstr "" -"Escolliu d'esta llista la unitat goniomètrica que voleu usar per modificar " -"la mida d'este angle.
\n" +"Escolliu d'aquesta llista la unitat goniomètrica que voleu usar per " +"modificar la mida d'aquest angle.
\n" "Si canvieu a una altra unitat, el valor que hi haja al camp d'edició de " "l'esquerra es convertirà a la nova unitat seleccionada." @@ -2248,9 +2244,9 @@ "macro using a previous Kig version (0.4 to 0.6) and then export it again in " "the new format." msgstr "" -"Este fitxer s'ha creat amb una versió molt antiga de Kig (anterior a 0.4). " -"El funcionament per a este format s'ha eliminat de les versions recents de " -"Kig. Podeu intentar importar esta macro usant una versió anterior de Kig " +"Aquest fitxer s'ha creat amb una versió molt antiga de Kig (anterior a 0.4). " +"El funcionament per a aquest format s'ha eliminat de les versions recents de " +"Kig. Podeu intentar importar aquesta macro usant una versió anterior de Kig " "(0.4 a 0.6) i després exportar-la al format nou." #: misc/lists.cc:376 @@ -2265,8 +2261,8 @@ "support. Perhaps you have compiled Kig without support for this object type, " "or perhaps you are using an older Kig version." msgstr "" -"Este fitxer Kig usa un objecte del tipus «%1», que esta versió de Kig no " -"permet. Potser heu compilat Kig sense implementació per a este tipus " +"Aquest fitxer Kig usa un objecte del tipus «%1», que aquesta versió de Kig " +"no permet. Potser heu compilat Kig sense implementació per a aquest tipus " "d'objecte o potser esteu usant una versió de Kig antiga." #: misc/special_constructors.cc:321 @@ -2341,13 +2337,13 @@ msgid "" "... with this vertex (click on the first vertex to terminate construction)" msgstr "" -"... amb este vèrtex (feu clic sobre el primer vèrtex per acabar la " +"... amb aquest vèrtex (feu clic sobre el primer vèrtex per acabar la " "construcció)" #: misc/special_constructors.cc:633 #, kde-format msgid "Construct a polygon with this vertex" -msgstr "Construeix un polígon amb este vèrtex" +msgstr "Construeix un polígon amb aquest vèrtex" #: misc/special_constructors.cc:640 #, kde-format @@ -2370,13 +2366,13 @@ "... with this vertex (click again on the last vertex to terminate " "construction)" msgstr "" -"... amb este vèrtex (torneu a clicar sobre el darrer vèrtex per acabar la " +"... amb aquest vèrtex (torneu a clicar sobre el darrer vèrtex per acabar la " "construcció)" #: misc/special_constructors.cc:712 #, kde-format msgid "Construct a polygonal line with this vertex" -msgstr "Construeix una línia poligonal amb este vèrtex" +msgstr "Construeix una línia poligonal amb aquest vèrtex" #: misc/special_constructors.cc:719 #, kde-format @@ -2391,7 +2387,7 @@ #: misc/special_constructors.cc:753 #, kde-format msgid "Construct the vertices of this polygon..." -msgstr "Construeix els vèrtexs d'este polígon..." +msgstr "Construeix els vèrtexs d'aquest polígon..." #: misc/special_constructors.cc:757 #, kde-format @@ -2406,7 +2402,7 @@ #: misc/special_constructors.cc:820 #, kde-format msgid "Construct the sides of this polygon..." -msgstr "Construeix els costats d'este polígon..." +msgstr "Construeix els costats d'aquest polígon..." #: misc/special_constructors.cc:824 #, kde-format @@ -2431,12 +2427,12 @@ #: misc/special_constructors.cc:1060 #, kde-format msgid "Construct a regular polygon with this center" -msgstr "Construeix un polígon regular amb este centre" +msgstr "Construeix un polígon regular amb aquest centre" #: misc/special_constructors.cc:1064 #, kde-format msgid "Construct a regular polygon with this vertex" -msgstr "Construeix un polígon regular amb este vèrtex" +msgstr "Construeix un polígon regular amb aquest vèrtex" #: misc/special_constructors.cc:1076 #, kde-format @@ -2479,13 +2475,13 @@ "... with this control point (click again on the last control point to " "terminate construction)" msgstr "" -"... amb este punt de control (torneu a clicar sobre el darrer punt de " +"... amb aquest punt de control (torneu a clicar sobre el darrer punt de " "control per acabar la construcció)" #: misc/special_constructors.cc:1224 #, kde-format msgid "Construct a Bézier curve with this control point" -msgstr "Construeix una corba de Bézier amb este punt de control" +msgstr "Construeix una corba de Bézier amb aquest punt de control" #: misc/special_constructors.cc:1231 #, kde-format @@ -2509,7 +2505,7 @@ #: misc/special_constructors.cc:1338 #, kde-format msgid "... assign this weight to last selected control point" -msgstr "... assigna este pes al darrer punt de control seleccionat" +msgstr "... assigna aquest pes al darrer punt de control seleccionat" #: misc/special_constructors.cc:1341 #, kde-format @@ -2517,13 +2513,13 @@ "... with this control point (click again on the last control point or weight " "to terminate construction)" msgstr "" -"... amb este punt de control (torneu a clicar sobre el darrer punt de " +"... amb aquest punt de control (torneu a clicar sobre el darrer punt de " "control o pes per acabar la construcció)" #: misc/special_constructors.cc:1342 #, kde-format msgid "Construct a rational Bézier curve with this control point" -msgstr "Construeix una corba racional de Bézier amb este punt de control" +msgstr "Construeix una corba racional de Bézier amb aquest punt de control" #: misc/special_constructors.cc:1350 #, kde-format @@ -2543,12 +2539,12 @@ #: misc/special_constructors.cc:1545 #, kde-format msgid "Construct the Radical Lines of This Circle" -msgstr "Construeix les rectes radicals d'este cercle" +msgstr "Construeix les rectes radicals d'aquest cercle" #: misc/special_constructors.cc:1547 #, kde-format msgid "Construct the Radical Lines of This Conic" -msgstr "Construeix les rectes radicals d'esta cònica" +msgstr "Construeix les rectes radicals d'aquesta cònica" #: misc/special_constructors.cc:1562 #, kde-format @@ -2616,27 +2612,27 @@ #: misc/special_constructors.cc:1813 #, kde-format msgid "Transport a measure on this line" -msgstr "Transporta una mida sobre esta recta" +msgstr "Transporta una mida sobre aquesta recta" #: misc/special_constructors.cc:1815 objects/special_calcers.cc:22 #, kde-format msgid "Transport a measure on this circle" -msgstr "Transporta una mida sobre este cercle" +msgstr "Transporta una mida sobre aquest cercle" #: misc/special_constructors.cc:1819 #, kde-format msgid "Start transport from this point of the circle" -msgstr "Comença el transport a partir d'este punt del cercle" +msgstr "Comença el transport a partir d'aquest punt del cercle" #: misc/special_constructors.cc:1821 #, kde-format msgid "Start transport from this point of the line" -msgstr "Comença el transport a partir d'este punt de la recta" +msgstr "Comença el transport a partir d'aquest punt de la recta" #: misc/special_constructors.cc:1823 #, kde-format msgid "Start transport from this point of the curve" -msgstr "Comença el transport a partir d'este punt de la corba" +msgstr "Comença el transport a partir d'aquest punt de la corba" #: misc/special_constructors.cc:1836 #, kde-format @@ -2656,25 +2652,25 @@ #: misc/special_constructors.cc:1885 objects/intersection_types.cc:34 #, kde-format msgid "Intersect with this conic" -msgstr "Interseca amb esta cònica" +msgstr "Interseca amb aquesta cònica" #: misc/special_constructors.cc:1887 misc/special_constructors.cc:1896 #: objects/intersection_types.cc:30 #, kde-format msgid "Intersect with this line" -msgstr "Interseca amb esta recta" +msgstr "Interseca amb aquesta recta" #: misc/special_constructors.cc:1894 objects/intersection_types.cc:179 #: objects/intersection_types.cc:247 #, kde-format msgid "Intersect with this cubic" -msgstr "Interseca amb esta cúbica" +msgstr "Interseca amb aquesta cúbica" #: misc/special_constructors.cc:1903 misc/special_constructors.cc:1905 #: objects/intersection_types.cc:495 objects/intersection_types.cc:497 #, kde-format msgid "Intersect with this circle" -msgstr "Interseca amb este cercle" +msgstr "Interseca amb aquest cercle" #: misc/special_constructors.cc:1911 #, kde-format @@ -2689,97 +2685,97 @@ #: misc/special_constructors.cc:2012 #, kde-format msgid "Intersect this Circle" -msgstr "Interseca este cercle" +msgstr "Interseca aquest cercle" #: misc/special_constructors.cc:2014 #, kde-format msgid "Intersect this Conic" -msgstr "Interseca esta cònica" +msgstr "Interseca aquesta cònica" #: misc/special_constructors.cc:2016 #, kde-format msgid "Intersect this Segment" -msgstr "Interseca este segment" +msgstr "Interseca aquest segment" #: misc/special_constructors.cc:2018 #, kde-format msgid "Intersect this Half-line" -msgstr "Interseca esta semirecta" +msgstr "Interseca aquesta semirecta" #: misc/special_constructors.cc:2020 #, kde-format msgid "Intersect this Line" -msgstr "Interseca esta recta" +msgstr "Interseca aquesta recta" #: misc/special_constructors.cc:2022 #, kde-format msgid "Intersect this Cubic Curve" -msgstr "Interseca esta corba cúbica" +msgstr "Interseca aquesta corba cúbica" #: misc/special_constructors.cc:2024 #, kde-format msgid "Intersect this Arc" -msgstr "Interseca este arc" +msgstr "Interseca aquest arc" #: misc/special_constructors.cc:2026 #, kde-format msgid "Intersect this Polygon" -msgstr "Interseca este polígon" +msgstr "Interseca aquest polígon" #: misc/special_constructors.cc:2028 #, kde-format msgid "Intersect this Polygonal" -msgstr "Interseca este poligonal" +msgstr "Interseca aquest poligonal" #: misc/special_constructors.cc:2033 #, kde-format msgid "with this Circle" -msgstr "amb este cercle" +msgstr "amb aquest cercle" #: misc/special_constructors.cc:2035 #, kde-format msgid "with this Conic" -msgstr "amb esta cònica" +msgstr "amb aquesta cònica" #: misc/special_constructors.cc:2037 #, kde-format msgid "with this Segment" -msgstr "amb este segment" +msgstr "amb aquest segment" #: misc/special_constructors.cc:2039 #, kde-format msgid "with this Half-line" -msgstr "amb esta semirecta" +msgstr "amb aquesta semirecta" #: misc/special_constructors.cc:2041 #, kde-format msgid "with this Line" -msgstr "amb esta recta" +msgstr "amb aquesta recta" #: misc/special_constructors.cc:2043 #, kde-format msgid "with this Cubic Curve" -msgstr "amb esta corba cúbica" +msgstr "amb aquesta corba cúbica" #: misc/special_constructors.cc:2045 #, kde-format msgid "with this Arc" -msgstr "amb este arc" +msgstr "amb aquest arc" #: misc/special_constructors.cc:2047 #, kde-format msgid "with this Polygon" -msgstr "amb este polígon" +msgstr "amb aquest polígon" #: misc/special_constructors.cc:2049 #, kde-format msgid "with this Polygonal" -msgstr "amb este poligonal" +msgstr "amb aquest poligonal" #: misc/special_constructors.cc:2059 #, kde-format msgid "Construct Midpoint of This Point and Another One" -msgstr "Construeix el punt mitjà d'este punt i un altre" +msgstr "Construeix el punt mitjà d'aquest punt i un altre" #: misc/special_constructors.cc:2060 #, kde-format @@ -2791,7 +2787,7 @@ #: misc/special_constructors.cc:2061 #, kde-format msgid "Construct the midpoint of this point and another one" -msgstr "Construeix el punt mitjà d'este punt i un altre" +msgstr "Construeix el punt mitjà d'aquest punt i un altre" #: misc/special_constructors.cc:2062 #, kde-format @@ -2822,32 +2818,32 @@ #: misc/special_constructors.cc:2222 #, kde-format msgid "Tangent to This Circle" -msgstr "Tangent a este cercle" +msgstr "Tangent a aquest cercle" #: misc/special_constructors.cc:2224 #, kde-format msgid "Tangent to This Conic" -msgstr "Tangent a esta cònica" +msgstr "Tangent a aquesta cònica" #: misc/special_constructors.cc:2226 #, kde-format msgid "Tangent to This Arc" -msgstr "Tangent a este arc" +msgstr "Tangent a aquest arc" #: misc/special_constructors.cc:2228 #, kde-format msgid "Tangent to This Cubic Curve" -msgstr "Tangent a esta corba cúbica" +msgstr "Tangent a aquesta corba cúbica" #: misc/special_constructors.cc:2230 #, kde-format msgid "Tangent to This Curve" -msgstr "Tangent a esta corba" +msgstr "Tangent a aquesta corba" #: misc/special_constructors.cc:2232 #, kde-format msgid "Tangent at This Point" -msgstr "Tangent a este punt" +msgstr "Tangent a aquest punt" #: misc/special_constructors.cc:2253 #, kde-format @@ -2862,22 +2858,22 @@ #: misc/special_constructors.cc:2289 #, kde-format msgid "Center of Curvature of This Conic" -msgstr "Centre de curvatura d'esta cònica" +msgstr "Centre de curvatura d'aquesta cònica" #: misc/special_constructors.cc:2291 #, kde-format msgid "Center of Curvature of This Cubic Curve" -msgstr "Centre de curvatura d'esta corba cúbica" +msgstr "Centre de curvatura d'aquesta corba cúbica" #: misc/special_constructors.cc:2293 #, kde-format msgid "Center of Curvature of This Curve" -msgstr "Centre de curvatura d'esta corba" +msgstr "Centre de curvatura d'aquesta corba" #: misc/special_constructors.cc:2295 #, kde-format msgid "Center of Curvature at This Point" -msgstr "Centre de curvatura en este punt" +msgstr "Centre de curvatura en aquest punt" #: misc/unit.cc:122 #, kde-format @@ -2933,14 +2929,14 @@ "optional, so you can also leave this empty: if you do so, then your macro " "type will have no description." msgstr "" -"Ací podeu editar la descripció del tipus de macro actual. Este camp és " +"Ací podeu editar la descripció del tipus de macro actual. Aquest camp és " "opcional, per tant podeu deixar-lo en blanc: si ho feu, el vostre tipus de " "macro no tindrà descripció." #: modes/edittype.cc:67 #, kde-format msgid "Use this button to change the icon of the current macro type." -msgstr "Useu este botó per canviar la icona del tipus de macro actual." +msgstr "Useu aquest botó per canviar la icona del tipus de macro actual." #: modes/edittype.cc:89 #, kde-format @@ -2954,7 +2950,7 @@ "Here you can modify the name, the description and the icon of this macro " "type." msgstr "" -"Ací podeu modificar el nom, la descripció i la icona d'este tipus de macro." +"Ací podeu modificar el nom, la descripció i la icona d'aquest tipus de macro." #. i18n: ectx: property (text), widget (QLabel, label_2_3) #: modes/edittypewidget.ui:73 @@ -3072,8 +3068,8 @@ "and construct the objects in the correct order..." msgstr "" "Un dels objectes resultants que heu seleccionat no es pot calcular a partir " -"dels objectes donats. Per això Kig no pot calcular esta macro. Per favor, " -"premeu Arrere i construïu els objectes en l'orde correcte..." +"dels objectes donats. Per això Kig no pot calcular aquesta macro. Per favor, " +"premeu Arrere i construïu els objectes en l'ordre correcte..." #: modes/macro.cc:100 #, kde-format @@ -3215,7 +3211,7 @@ #: modes/popup/builtinobjectactionsprovider.cc:258 #, kde-format msgid "Change Object Width" -msgstr "Canvia l'amplària d'este objecte" +msgstr "Canvia l'amplària d'aquest objecte" #: modes/popup/builtinobjectactionsprovider.cc:283 #, kde-format @@ -3246,7 +3242,7 @@ #: modes/popup/nameobjectactionsprovider.cc:80 #, kde-format msgid "Set Name of this Object:" -msgstr "Estableix el nom d'este objecte:" +msgstr "Estableix el nom d'aquest objecte:" #: modes/popup/objectchooserpopup.cc:86 modes/popup/popup.cc:91 #, kde-format @@ -3325,7 +3321,7 @@ msgstr "" "Introduïu el text per a l'etiqueta i premeu «Següent».\n" "Si voleu mostrar parts variables, llavors poseu %1, %2,... als llocs " -"apropiats (p. ex. «Este segment té una longitud de %1 unitats»)." +"apropiats (p. ex. «Aquest segment té una longitud de %1 unitats»)." #: modes/textlabelwizard.cc:65 #, kde-format @@ -3389,8 +3385,8 @@ #, kde-format msgid "Are you sure you want to delete this type?" msgid_plural "Are you sure you want to delete these %1 types?" -msgstr[0] "Esteu segur de voler suprimir este tipus?" -msgstr[1] "Esteu segur de voler suprimir estos %1 tipus?" +msgstr[0] "Esteu segur de voler suprimir aquest tipus?" +msgstr[1] "Esteu segur de voler suprimir aquests %1 tipus?" #: modes/typesdialog.cpp:443 #, kde-format @@ -3404,27 +3400,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Fitxers de tipus Kig\n" -"*|Tots els fitxers" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Fitxers de tipus Kig (*.kigt);;Tots els fitxers (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "*.kigt|Fitxers de tipus Kig" +msgid "Kig Types Files (*.kigt)" +msgstr "Fitxers de tipus Kig (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "*.ggt|Fitxers de l'eina Geogebra" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Fitxers de l'eina Geogebra (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Tots els fitxers" +msgid "All Files (*)" +msgstr "Tots els fitxers (*)" #: modes/typesdialog.cpp:487 #, kde-format @@ -3458,7 +3450,7 @@ "This is a list of the current macro types... You can select, edit, delete, " "export and import them..." msgstr "" -"Esta és una llista dels tipus de macro actuals... Podeu seleccionar-los, " +"Aquesta és una llista dels tipus de macro actuals... Podeu seleccionar-los, " "editar-los, suprimir-los, exportar-los i importar-los..." #. i18n: ectx: property (whatsThis), widget (QPushButton, buttonEdit) @@ -3494,7 +3486,7 @@ #: objects/angle_type.cc:40 #, kde-format msgid "Construct an angle through this point" -msgstr "Construeix un angle a través d'este punt" +msgstr "Construeix un angle a través d'aquest punt" #: objects/angle_type.cc:45 #, kde-format @@ -3506,7 +3498,7 @@ #: objects/angle_type.cc:46 #, kde-format msgid "Construct an angle at this point" -msgstr "Construeix un angle a este punt" +msgstr "Construeix un angle a aquest punt" #: objects/angle_type.cc:47 #, kde-format @@ -3538,7 +3530,7 @@ #: objects/arc_type.cc:47 #, kde-format msgid "Construct an arc starting at this point" -msgstr "Construeix un arc que comence en este punt" +msgstr "Construeix un arc que comence en aquest punt" #: objects/arc_type.cc:52 objects/arc_type.cc:179 #, kde-format @@ -3548,7 +3540,7 @@ #: objects/arc_type.cc:53 #, kde-format msgid "Construct an arc through this point" -msgstr "Construeix un arc a través d'este punt" +msgstr "Construeix un arc a través d'aquest punt" #: objects/arc_type.cc:54 #, kde-format @@ -3558,7 +3550,7 @@ #: objects/arc_type.cc:55 #, kde-format msgid "Construct an arc ending at this point" -msgstr "Construeix un arc que acabe en este punt" +msgstr "Construeix un arc que acabe en aquest punt" #: objects/arc_type.cc:56 #, kde-format @@ -3568,7 +3560,7 @@ #: objects/arc_type.cc:176 #, kde-format msgid "Construct an arc with this center" -msgstr "Construeix un arc amb este centre" +msgstr "Construeix un arc amb aquest centre" #: objects/arc_type.cc:177 #, kde-format @@ -3578,7 +3570,7 @@ #: objects/arc_type.cc:180 #, kde-format msgid "Construct an arc with this angle" -msgstr "Construeix un arc amb este angle" +msgstr "Construeix un arc amb aquest angle" #: objects/arc_type.cc:181 #, kde-format @@ -3588,7 +3580,7 @@ #: objects/arc_type.cc:236 #, kde-format msgid "Construct a conic arc starting at this point" -msgstr "Construeix un arc de cònica que comence en este punt" +msgstr "Construeix un arc de cònica que comence en aquest punt" #: objects/arc_type.cc:237 #, kde-format @@ -3598,7 +3590,7 @@ #: objects/arc_type.cc:238 #, kde-format msgid "Construct a conic arc through this point" -msgstr "Construeix un arc de cònica a través d'este punt" +msgstr "Construeix un arc de cònica a través d'aquest punt" #: objects/arc_type.cc:239 #, kde-format @@ -3608,7 +3600,7 @@ #: objects/arc_type.cc:240 #, kde-format msgid "Construct a conic arc ending at this point" -msgstr "Construeix un arc de cònica que acabe en este punt" +msgstr "Construeix un arc de cònica que acabe en aquest punt" #: objects/arc_type.cc:241 #, kde-format @@ -3618,7 +3610,7 @@ #: objects/arc_type.cc:245 #, kde-format msgid "Construct an conic arc with this center" -msgstr "Construeix un arc de cònica amb este centre" +msgstr "Construeix un arc de cònica amb aquest centre" #: objects/arc_type.cc:246 #, kde-format @@ -3650,7 +3642,7 @@ #: objects/bezier_imp.cc:221 #, kde-format msgid "Select this Bézier Curve" -msgstr "Selecciona esta corba de Bézier" +msgstr "Selecciona aquesta corba de Bézier" #: objects/bezier_imp.cc:222 #, kde-format @@ -3675,7 +3667,7 @@ #: objects/bezier_imp.cc:226 #, kde-format msgid "Attach to this Bézier Curve" -msgstr "Adjunta a esta corba de Bézier" +msgstr "Adjunta a aquesta corba de Bézier" #: objects/bezier_imp.cc:227 #, kde-format @@ -3695,7 +3687,7 @@ #: objects/bezier_imp.cc:239 #, kde-format msgid "Select this Bézier Quadratic" -msgstr "Selecciona esta quadràtica de Bézier" +msgstr "Selecciona aquesta quadràtica de Bézier" #: objects/bezier_imp.cc:240 #, kde-format @@ -3720,7 +3712,7 @@ #: objects/bezier_imp.cc:244 #, kde-format msgid "Attach to this Bézier Quadratic" -msgstr "Adjunta a esta quadràtica de Bézier" +msgstr "Adjunta a aquesta quadràtica de Bézier" #: objects/bezier_imp.cc:245 #, kde-format @@ -3740,7 +3732,7 @@ #: objects/bezier_imp.cc:257 #, kde-format msgid "Select this Bézier Cubic" -msgstr "Selecciona esta cúbica de Bézier" +msgstr "Selecciona aquesta cúbica de Bézier" #: objects/bezier_imp.cc:258 #, kde-format @@ -3765,7 +3757,7 @@ #: objects/bezier_imp.cc:262 #, kde-format msgid "Attach to this Bézier Cubic" -msgstr "Adjunta a esta cúbica de Bézier" +msgstr "Adjunta a aquesta cúbica de Bézier" #: objects/bezier_imp.cc:263 #, kde-format @@ -3785,7 +3777,7 @@ #: objects/bezier_imp.cc:519 #, kde-format msgid "Select this Rational Bézier Curve" -msgstr "Selecciona esta corba racional de Bézier" +msgstr "Selecciona aquesta corba racional de Bézier" #: objects/bezier_imp.cc:520 #, kde-format @@ -3810,7 +3802,7 @@ #: objects/bezier_imp.cc:524 #, kde-format msgid "Attach to this Rational Bézier Curve" -msgstr "Adjunta a esta corba racional de Bézier" +msgstr "Adjunta a aquesta corba racional de Bézier" #: objects/bezier_imp.cc:525 #, kde-format @@ -3830,7 +3822,7 @@ #: objects/bezier_imp.cc:537 #, kde-format msgid "Select this Rational Bézier Quadratic" -msgstr "Selecciona esta quadràtica racional de Bézier" +msgstr "Selecciona aquesta quadràtica racional de Bézier" #: objects/bezier_imp.cc:538 #, kde-format @@ -3855,7 +3847,7 @@ #: objects/bezier_imp.cc:542 #, kde-format msgid "Attach to this Rational Bézier Quadratic" -msgstr "Adjunta a esta quadràtica racional de Bézier" +msgstr "Adjunta a aquesta quadràtica racional de Bézier" #: objects/bezier_imp.cc:543 #, kde-format @@ -3875,7 +3867,7 @@ #: objects/bezier_imp.cc:555 #, kde-format msgid "Select this Rational Bézier Cubic" -msgstr "Selecciona esta cúbica racional de Bézier" +msgstr "Selecciona aquesta cúbica racional de Bézier" #: objects/bezier_imp.cc:556 #, kde-format @@ -3900,7 +3892,7 @@ #: objects/bezier_imp.cc:560 #, kde-format msgid "Attach to this Rational Bézier Cubic" -msgstr "Adjunta a esta cúbica racional de Bézier" +msgstr "Adjunta a aquesta cúbica racional de Bézier" #: objects/bezier_imp.cc:561 #, kde-format @@ -3915,7 +3907,7 @@ #: objects/bezier_type.cc:39 #, kde-format msgid "Construct a quadratic Bézier curve with this control point" -msgstr "Construeix una corba quadràtica de Bézier amb este punt de control" +msgstr "Construeix una corba quadràtica de Bézier amb aquest punt de control" #: objects/bezier_type.cc:40 #, kde-format @@ -3928,7 +3920,7 @@ #: objects/bezier_type.cc:139 #, kde-format msgid "Construct a cubic Bézier curve with this control point" -msgstr "Construeix una corba cúbica de Bézier amb este punt de control" +msgstr "Construeix una corba cúbica de Bézier amb aquest punt de control" #: objects/bezier_type.cc:140 #, kde-format @@ -3941,7 +3933,7 @@ #, kde-format msgid "Construct a quadratic rational Bézier curve with this control point" msgstr "" -"Construeix una corba quadràtica racional de Bézier amb este punt de control" +"Construeix una corba quadràtica racional de Bézier amb aquest punt de control" #: objects/bezier_type.cc:358 objects/bezier_type.cc:469 #, kde-format @@ -3955,13 +3947,13 @@ #: objects/bezier_type.cc:359 objects/bezier_type.cc:470 #, kde-format msgid "Select this value as weight" -msgstr "Selecciona este valor com a pes" +msgstr "Selecciona aquest valor com a pes" #: objects/bezier_type.cc:468 #, kde-format msgid "Construct a cubic rational Bézier curve with this control point" msgstr "" -"Construeix una corba cúbica racional de Bézier amb este punt de control" +"Construeix una corba cúbica racional de Bézier amb aquest punt de control" #: objects/bogus_imp.cc:337 #, kde-format @@ -4022,7 +4014,7 @@ #: objects/circle_imp.cc:350 #, kde-format msgid "Select this circle" -msgstr "Seleccioneu este cercle" +msgstr "Seleccioneu aquest cercle" #: objects/circle_imp.cc:351 #, kde-format @@ -4047,7 +4039,7 @@ #: objects/circle_imp.cc:355 #, kde-format msgid "Attach to this circle" -msgstr "Adjunta a este cercle" +msgstr "Adjunta a aquest cercle" #: objects/circle_imp.cc:356 #, kde-format @@ -4062,12 +4054,12 @@ #: objects/circle_type.cc:30 #, kde-format msgid "Construct a circle through this point" -msgstr "Construeix un cercle a través d'este punt" +msgstr "Construeix un cercle a través d'aquest punt" #: objects/circle_type.cc:32 #, kde-format msgid "Construct a circle with this center" -msgstr "Construeix un cercle amb este centre" +msgstr "Construeix un cercle amb aquest centre" #: objects/circle_type.cc:37 objects/circle_type.cc:203 #, kde-format @@ -4083,7 +4075,7 @@ #: objects/circle_type.cc:204 #, kde-format msgid "With this radius" -msgstr "Amb este radi" +msgstr "Amb aquest radi" #: objects/circle_type.cc:205 #, kde-format @@ -4148,7 +4140,7 @@ #: objects/conic_imp.cc:384 #, kde-format msgid "Select this conic" -msgstr "Selecciona esta cònica" +msgstr "Selecciona aquesta cònica" #: objects/conic_imp.cc:385 #, kde-format @@ -4173,7 +4165,7 @@ #: objects/conic_imp.cc:389 #, kde-format msgid "Attach to this conic" -msgstr "Adjunta a esta cònica" +msgstr "Adjunta a aquesta cònica" #: objects/conic_imp.cc:390 #, kde-format @@ -4208,7 +4200,7 @@ #: objects/conic_imp.cc:610 #, kde-format msgid "Select this conic arc" -msgstr "Selecciona este arc de cònica" +msgstr "Selecciona aquest arc de cònica" #: objects/conic_imp.cc:611 #, kde-format @@ -4233,7 +4225,7 @@ #: objects/conic_imp.cc:615 #, kde-format msgid "Attach to this conic arc" -msgstr "Adjunta a este arc de cònica" +msgstr "Adjunta a aquest arc de cònica" #: objects/conic_imp.cc:616 #, kde-format @@ -4249,7 +4241,7 @@ #: objects/conic_types.cc:219 #, kde-format msgid "Construct a conic through this point" -msgstr "Construeix una cònica a través d'este punt" +msgstr "Construeix una cònica a través d'aquest punt" #: objects/conic_types.cc:36 objects/conic_types.cc:38 #: objects/conic_types.cc:40 objects/conic_types.cc:42 @@ -4262,37 +4254,37 @@ #: objects/conic_types.cc:81 objects/conic_types.cc:83 #, kde-format msgid "Construct a conic with this asymptote" -msgstr "Construeix una cònica amb esta asímptota" +msgstr "Construeix una cònica amb aquesta asímptota" #: objects/conic_types.cc:82 #, kde-format msgid "Select the first asymptote of the new conic..." -msgstr "Selecciona la primera asímptota d'esta cònica nova..." +msgstr "Selecciona la primera asímptota d'aquesta cònica nova..." #: objects/conic_types.cc:84 #, kde-format msgid "Select the second asymptote of the new conic..." -msgstr "Selecciona la segona asímptota d'esta cònica nova..." +msgstr "Selecciona la segona asímptota d'aquesta cònica nova..." #: objects/conic_types.cc:138 #, kde-format msgid "Construct an ellipse with this focus" -msgstr "Construeix una el·lipse amb este focus" +msgstr "Construeix una el·lipse amb aquest focus" #: objects/conic_types.cc:143 #, kde-format msgid "Select the first focus of the new ellipse..." -msgstr "Selecciona el primer focus d'esta el·lipse nova..." +msgstr "Selecciona el primer focus d'aquesta el·lipse nova..." #: objects/conic_types.cc:145 #, kde-format msgid "Select the second focus of the new ellipse..." -msgstr "Selecciona el segon focus d'esta nova el·lipse..." +msgstr "Selecciona el segon focus d'aquesta nova el·lipse..." #: objects/conic_types.cc:146 #, kde-format msgid "Construct an ellipse through this point" -msgstr "Construeix una el·lipse a través d'este punt" +msgstr "Construeix una el·lipse a través d'aquest punt" #: objects/conic_types.cc:147 #, kde-format @@ -4302,7 +4294,7 @@ #: objects/conic_types.cc:173 #, kde-format msgid "Construct a hyperbola with this focus" -msgstr "Construeix una hipèrbola amb este focus" +msgstr "Construeix una hipèrbola amb aquest focus" #: objects/conic_types.cc:178 #, kde-format @@ -4317,7 +4309,7 @@ #: objects/conic_types.cc:181 objects/conic_types.cc:415 #, kde-format msgid "Construct a hyperbola through this point" -msgstr "Construeix una hipèrbola a través d'este punt" +msgstr "Construeix una hipèrbola a través d'aquest punt" #: objects/conic_types.cc:182 objects/conic_types.cc:420 #: objects/conic_types.cc:422 objects/conic_types.cc:424 @@ -4329,7 +4321,7 @@ #: objects/conic_types.cc:215 #, kde-format msgid "Construct a conic with this line as directrix" -msgstr "Construeix una cònica amb esta recta com a directriu" +msgstr "Construeix una cònica amb aquesta recta com a directriu" #: objects/conic_types.cc:216 #, kde-format @@ -4339,7 +4331,7 @@ #: objects/conic_types.cc:217 #, kde-format msgid "Construct a conic with this point as focus" -msgstr "Construeix una cònica amb este punt com a focus" +msgstr "Construeix una cònica amb aquest punt com a focus" #: objects/conic_types.cc:218 #, kde-format @@ -4349,7 +4341,7 @@ #: objects/conic_types.cc:258 #, kde-format msgid "Construct a parabola through this point" -msgstr "Construeix una paràbola a través d'este punt" +msgstr "Construeix una paràbola a través d'aquest punt" #: objects/conic_types.cc:263 objects/conic_types.cc:265 #: objects/conic_types.cc:267 @@ -4360,7 +4352,7 @@ #: objects/conic_types.cc:305 #, kde-format msgid "Construct a polar point wrt. this conic" -msgstr "Construeix un punt polar respecte a esta cònica" +msgstr "Construeix un punt polar respecte a aquesta cònica" #: objects/conic_types.cc:306 objects/conic_types.cc:342 #, kde-format @@ -4371,7 +4363,7 @@ #: objects/conic_types.cc:307 #, kde-format msgid "Construct the polar point of this line" -msgstr "Construeix el punt polar d'esta recta" +msgstr "Construeix el punt polar d'aquesta recta" #: objects/conic_types.cc:308 objects/conic_types.cc:344 #, kde-format @@ -4381,17 +4373,17 @@ #: objects/conic_types.cc:341 #, kde-format msgid "Construct a polar line wrt. this conic" -msgstr "Construeix una recta polar respecte a esta cònica" +msgstr "Construeix una recta polar respecte a aquesta cònica" #: objects/conic_types.cc:343 #, kde-format msgid "Construct the polar line of this point" -msgstr "Construeix la recta polar d'este punt" +msgstr "Construeix la recta polar d'aquest punt" #: objects/conic_types.cc:378 #, kde-format msgid "Construct the directrix of this conic" -msgstr "Construeix la directriu d'esta cònica" +msgstr "Construeix la directriu d'aquesta cònica" #: objects/conic_types.cc:379 #, kde-format @@ -4401,7 +4393,7 @@ #: objects/conic_types.cc:463 #, kde-format msgid "Construct a parabola with this directrix" -msgstr "Construeix una paràbola amb esta directriu" +msgstr "Construeix una paràbola amb aquesta directriu" #: objects/conic_types.cc:464 #, kde-format @@ -4411,7 +4403,7 @@ #: objects/conic_types.cc:465 #, kde-format msgid "Construct a parabola with this focus" -msgstr "Construeix una paràbola amb este focus" +msgstr "Construeix una paràbola amb aquest focus" #: objects/conic_types.cc:466 #, kde-format @@ -4421,7 +4413,7 @@ #: objects/conic_types.cc:503 #, kde-format msgid "Construct the asymptotes of this conic" -msgstr "Construeix les asímptotes d'esta cònica" +msgstr "Construeix les asímptotes d'aquesta cònica" #: objects/conic_types.cc:504 #, kde-format @@ -4431,7 +4423,7 @@ #: objects/conic_types.cc:541 #, kde-format msgid "Construct the radical lines of this conic" -msgstr "Construeix les rectes radicals d'esta cònica" +msgstr "Construeix les rectes radicals d'aquesta cònica" #: objects/conic_types.cc:546 #, kde-format @@ -4469,7 +4461,7 @@ #: objects/cubic_imp.cc:356 #, kde-format msgid "Select this cubic curve" -msgstr "Selecciona esta corba cúbica" +msgstr "Selecciona aquesta corba cúbica" #: objects/cubic_imp.cc:357 #, kde-format @@ -4494,7 +4486,7 @@ #: objects/cubic_imp.cc:361 #, kde-format msgid "Attach to this cubic curve" -msgstr "Adjunta a esta corba cúbica" +msgstr "Adjunta a aquesta corba cúbica" #: objects/cubic_imp.cc:362 #, kde-format @@ -4509,7 +4501,7 @@ #: objects/cubic_type.cc:24 #, kde-format msgid "Construct a cubic curve through this point" -msgstr "Construeix una corba cúbica a través d'este punt" +msgstr "Construeix una corba cúbica a través d'aquest punt" #: objects/cubic_type.cc:25 #, kde-format @@ -4524,7 +4516,7 @@ #: objects/curve_imp.cc:32 #, kde-format msgid "Select this curve" -msgstr "Selecciona esta corba" +msgstr "Selecciona aquesta corba" #: objects/curve_imp.cc:33 #, kde-format @@ -4549,7 +4541,7 @@ #: objects/curve_imp.cc:37 #, kde-format msgid "Attach to this curve" -msgstr "Adjunta a esta corba" +msgstr "Adjunta a aquesta corba" #: objects/curve_imp.cc:38 #, kde-format @@ -4575,17 +4567,17 @@ #: objects/intersection_types.cc:420 #, kde-format msgid "Intersect with this cubic curve" -msgstr "Interseca amb esta corba cúbica" +msgstr "Interseca amb aquesta corba cúbica" #: objects/intersection_types.cc:583 #, kde-format msgid "Intersect with this arc" -msgstr "Interseca amb este arc" +msgstr "Interseca amb aquest arc" #: objects/inversion_type.cc:32 #, kde-format msgid "Invert with respect to this circle" -msgstr "Inverteix respecte a este cercle" +msgstr "Inverteix respecte a aquest cercle" #: objects/inversion_type.cc:33 #, kde-format @@ -4595,7 +4587,7 @@ #: objects/inversion_type.cc:38 #, kde-format msgid "Compute the inversion of this object" -msgstr "Calcula la inversió d'este objecte" +msgstr "Calcula la inversió d'aquest objecte" #: objects/inversion_type.cc:39 #, kde-format @@ -4605,7 +4597,7 @@ #: objects/inversion_type.cc:290 #, kde-format msgid "Compute the inversion of this point" -msgstr "Calcula la inversió d'este punt" +msgstr "Calcula la inversió d'aquest punt" #: objects/inversion_type.cc:291 #, kde-format @@ -4615,7 +4607,7 @@ #: objects/inversion_type.cc:351 #, kde-format msgid "Compute the inversion of this line" -msgstr "Calcula la inversió d'esta recta" +msgstr "Calcula la inversió d'aquesta recta" #: objects/inversion_type.cc:352 #, kde-format @@ -4625,7 +4617,7 @@ #: objects/inversion_type.cc:404 #, kde-format msgid "Compute the inversion of this segment" -msgstr "Calcula la inversió d'este segment" +msgstr "Calcula la inversió d'aquest segment" #: objects/inversion_type.cc:405 #, kde-format @@ -4635,7 +4627,7 @@ #: objects/inversion_type.cc:495 #, kde-format msgid "Compute the inversion of this circle" -msgstr "Calcula la inversió d'este cercle" +msgstr "Calcula la inversió d'aquest cercle" #: objects/inversion_type.cc:496 #, kde-format @@ -4645,7 +4637,7 @@ #: objects/inversion_type.cc:560 #, kde-format msgid "Compute the inversion of this arc" -msgstr "Calcula la inversió d'este arc" +msgstr "Calcula la inversió d'aquest arc" #: objects/inversion_type.cc:561 #, kde-format @@ -4690,7 +4682,7 @@ #: objects/line_imp.cc:531 #, kde-format msgid "Select this line" -msgstr "Selecciona esta recta" +msgstr "Selecciona aquesta recta" #: objects/line_imp.cc:532 #, kde-format @@ -4715,7 +4707,7 @@ #: objects/line_imp.cc:536 #, kde-format msgid "Attach to this line" -msgstr "Adjunta a esta recta" +msgstr "Adjunta a aquesta recta" #: objects/line_imp.cc:537 #, kde-format @@ -4735,7 +4727,7 @@ #: objects/line_imp.cc:548 #, kde-format msgid "Select this segment" -msgstr "Selecciona este segment" +msgstr "Selecciona aquest segment" #: objects/line_imp.cc:549 #, kde-format @@ -4760,7 +4752,7 @@ #: objects/line_imp.cc:553 #, kde-format msgid "Attach to this segment" -msgstr "Adjunta a este segment" +msgstr "Adjunta a aquest segment" #: objects/line_imp.cc:554 #, kde-format @@ -4780,7 +4772,7 @@ #: objects/line_imp.cc:565 #, kde-format msgid "Select this half-line" -msgstr "Seleccioneu esta semirecta" +msgstr "Seleccioneu aquesta semirecta" #: objects/line_imp.cc:566 #, kde-format @@ -4805,7 +4797,7 @@ #: objects/line_imp.cc:570 #, kde-format msgid "Attach to this half-line" -msgstr "Adjunta a esta semirecta" +msgstr "Adjunta a aquesta semirecta" #: objects/line_imp.cc:571 #, kde-format @@ -4820,7 +4812,7 @@ #: objects/line_type.cc:36 #, kde-format msgid "Construct a segment starting at this point" -msgstr "Construeix un segment que comence en este punt" +msgstr "Construeix un segment que comence en aquest punt" #: objects/line_type.cc:37 #, kde-format @@ -4830,7 +4822,7 @@ #: objects/line_type.cc:38 #, kde-format msgid "Construct a segment ending at this point" -msgstr "Construeix un segment que acabe en este punt" +msgstr "Construeix un segment que acabe en aquest punt" #: objects/line_type.cc:39 #, kde-format @@ -4840,7 +4832,7 @@ #: objects/line_type.cc:64 #, kde-format msgid "Construct a line through this point" -msgstr "Construeix una recta a través d'este punt" +msgstr "Construeix una recta a través d'aquest punt" #: objects/line_type.cc:69 #, kde-format @@ -4855,7 +4847,7 @@ #: objects/line_type.cc:96 #, kde-format msgid "Construct a half-line starting at this point" -msgstr "Construeix una semirecta començant en este punt" +msgstr "Construeix una semirecta començant en aquest punt" #: objects/line_type.cc:101 objects/line_type.cc:340 #, kde-format @@ -4865,7 +4857,7 @@ #: objects/line_type.cc:102 #, kde-format msgid "Construct a half-line through this point" -msgstr "Construeix una semirecta a través d'este punt" +msgstr "Construeix una semirecta a través d'aquest punt" #: objects/line_type.cc:103 #, kde-format @@ -4875,7 +4867,7 @@ #: objects/line_type.cc:130 #, kde-format msgid "Construct the axis of this segment" -msgstr "Construeix la mediatriu d'este segment" +msgstr "Construeix la mediatriu d'aquest segment" #: objects/line_type.cc:131 #, kde-format @@ -4885,7 +4877,7 @@ #: objects/line_type.cc:185 #, kde-format msgid "Construct a line parallel to this line" -msgstr "Construeix una recta paral·lela a esta recta" +msgstr "Construeix una recta paral·lela a aquesta recta" #: objects/line_type.cc:186 #, kde-format @@ -4895,7 +4887,7 @@ #: objects/line_type.cc:187 #, kde-format msgid "Construct the parallel line through this point" -msgstr "Construeix la recta paral·lela a través d'este punt" +msgstr "Construeix la recta paral·lela a través d'aquest punt" #: objects/line_type.cc:188 objects/line_type.cc:221 objects/line_type.cc:300 #, kde-format @@ -4905,7 +4897,7 @@ #: objects/line_type.cc:218 #, kde-format msgid "Construct a line perpendicular to this line" -msgstr "Construeix una recta perpendicular a esta recta" +msgstr "Construeix una recta perpendicular a aquesta recta" #: objects/line_type.cc:219 #, kde-format @@ -4915,7 +4907,7 @@ #: objects/line_type.cc:220 #, kde-format msgid "Construct a perpendicular line through this point" -msgstr "Construeix una recta perpendicular a través d'este punt" +msgstr "Construeix una recta perpendicular a través d'aquest punt" #: objects/line_type.cc:263 #, kde-format @@ -4940,7 +4932,7 @@ #: objects/line_type.cc:297 #, kde-format msgid "Construct a line by this vector" -msgstr "Construeix una recta per este vector" +msgstr "Construeix una recta per aquest vector" #: objects/line_type.cc:298 #, kde-format @@ -4950,7 +4942,7 @@ #: objects/line_type.cc:337 #, kde-format msgid "Construct a half-line by this vector" -msgstr "Construeix una semirecta per este vector" +msgstr "Construeix una semirecta per aquest vector" #: objects/line_type.cc:338 #, kde-format @@ -4965,7 +4957,7 @@ #: objects/locus_imp.cc:203 #, kde-format msgid "Select this locus" -msgstr "Selecciona este lloc geomètric" +msgstr "Selecciona aquest lloc geomètric" #: objects/locus_imp.cc:204 #, kde-format @@ -4990,7 +4982,7 @@ #: objects/locus_imp.cc:208 #, kde-format msgid "Attach to this locus" -msgstr "Adjunta a este lloc geomètric" +msgstr "Adjunta a aquest lloc geomètric" #: objects/locus_imp.cc:209 #, kde-format @@ -5015,7 +5007,7 @@ #: objects/object_imp.cc:288 objects/special_imptypes.cc:114 #, kde-format msgid "Select this object" -msgstr "Selecciona este objecte" +msgstr "Selecciona aquest objecte" #: objects/object_imp.cc:289 #, kde-format @@ -5040,7 +5032,7 @@ #: objects/object_imp.cc:293 #, kde-format msgid "Attach to this object" -msgstr "Adjunta a este objecte" +msgstr "Adjunta a aquest objecte" #: objects/object_imp.cc:294 #, kde-format @@ -5110,7 +5102,7 @@ #: objects/other_imp.cc:611 #, kde-format msgid "Select this angle" -msgstr "Selecciona este angle" +msgstr "Selecciona aquest angle" #: objects/other_imp.cc:612 #, kde-format @@ -5135,7 +5127,7 @@ #: objects/other_imp.cc:616 #, kde-format msgid "Attach to this angle" -msgstr "Adjunta a este angle" +msgstr "Adjunta a aquest angle" #: objects/other_imp.cc:617 #, kde-format @@ -5155,7 +5147,7 @@ #: objects/other_imp.cc:627 #, kde-format msgid "Select this vector" -msgstr "Selecciona este vector" +msgstr "Selecciona aquest vector" #: objects/other_imp.cc:628 #, kde-format @@ -5180,7 +5172,7 @@ #: objects/other_imp.cc:632 #, kde-format msgid "Attach to this vector" -msgstr "Adjunta a este vector" +msgstr "Adjunta a aquest vector" #: objects/other_imp.cc:633 #, kde-format @@ -5200,7 +5192,7 @@ #: objects/other_imp.cc:643 #, kde-format msgid "Select this arc" -msgstr "Selecciona este arc" +msgstr "Selecciona aquest arc" #: objects/other_imp.cc:644 #, kde-format @@ -5225,7 +5217,7 @@ #: objects/other_imp.cc:648 #, kde-format msgid "Attach to this arc" -msgstr "Adjunta a este arc" +msgstr "Adjunta a aquest arc" #: objects/other_imp.cc:649 #, kde-format @@ -5260,7 +5252,7 @@ #: objects/point_imp.cc:162 #, kde-format msgid "Select this point" -msgstr "Selecciona este punt" +msgstr "Selecciona aquest punt" #: objects/point_imp.cc:163 #, kde-format @@ -5285,7 +5277,7 @@ #: objects/point_imp.cc:167 #, kde-format msgid "Attach to this point" -msgstr "Adjunta a este punt" +msgstr "Adjunta a aquest punt" #: objects/point_imp.cc:168 #, kde-format @@ -5300,7 +5292,7 @@ #: objects/point_type.cc:263 objects/point_type.cc:265 #, kde-format msgid "Construct the midpoint of this point and another point" -msgstr "Construeix el punt mitjà d'este i un altre punt" +msgstr "Construeix el punt mitjà d'aquest i un altre punt" #: objects/point_type.cc:264 #, kde-format @@ -5454,7 +5446,7 @@ #: objects/polygon_imp.cc:654 objects/polygon_imp.cc:663 #, kde-format msgid "Select this polygon" -msgstr "Selecciona este polígon" +msgstr "Selecciona aquest polígon" #: objects/polygon_imp.cc:664 #, kde-format @@ -5479,7 +5471,7 @@ #: objects/polygon_imp.cc:668 #, kde-format msgid "Attach to this polygon" -msgstr "Adjunta a este polígon" +msgstr "Adjunta a aquest polígon" #: objects/polygon_imp.cc:669 #, kde-format @@ -5499,7 +5491,7 @@ #: objects/polygon_imp.cc:681 #, kde-format msgid "Select this closed polygonal curve" -msgstr "Selecciona esta corba poligonal tancada" +msgstr "Selecciona aquesta corba poligonal tancada" #: objects/polygon_imp.cc:682 #, kde-format @@ -5524,7 +5516,7 @@ #: objects/polygon_imp.cc:686 #, kde-format msgid "Attach to this closed polygonal curve" -msgstr "Adjunta a esta corba poligonal tancada" +msgstr "Adjunta a aquesta corba poligonal tancada" #: objects/polygon_imp.cc:687 #, kde-format @@ -5544,7 +5536,7 @@ #: objects/polygon_imp.cc:699 #, kde-format msgid "Select this polygonal curve" -msgstr "Selecciona esta corba poligonal" +msgstr "Selecciona aquesta corba poligonal" #: objects/polygon_imp.cc:700 #, kde-format @@ -5569,7 +5561,7 @@ #: objects/polygon_imp.cc:704 #, kde-format msgid "Attach to this polygonal curve" -msgstr "Adjunta a esta corba poligonal" +msgstr "Adjunta a aquesta corba poligonal" #: objects/polygon_imp.cc:705 #, kde-format @@ -5589,7 +5581,7 @@ #: objects/polygon_imp.cc:717 #, kde-format msgid "Select this triangle" -msgstr "Selecciona este triangle" +msgstr "Selecciona aquest triangle" #: objects/polygon_imp.cc:718 #, kde-format @@ -5614,7 +5606,7 @@ #: objects/polygon_imp.cc:722 #, kde-format msgid "Attach to this triangle" -msgstr "Adjunta a este triangle" +msgstr "Adjunta a aquest triangle" #: objects/polygon_imp.cc:723 #, kde-format @@ -5634,7 +5626,7 @@ #: objects/polygon_imp.cc:735 #, kde-format msgid "Select this quadrilateral" -msgstr "Selecciona este quadrilàter" +msgstr "Selecciona aquest quadrilàter" #: objects/polygon_imp.cc:736 #, kde-format @@ -5659,7 +5651,7 @@ #: objects/polygon_imp.cc:740 #, kde-format msgid "Attach to this quadrilateral" -msgstr "Adjunta a este quadrilàter" +msgstr "Adjunta a aquest quadrilàter" #: objects/polygon_imp.cc:741 #, kde-format @@ -5674,7 +5666,7 @@ #: objects/polygon_type.cc:37 #, kde-format msgid "Construct a triangle with this vertex" -msgstr "Construeix un triangle amb este vèrtex" +msgstr "Construeix un triangle amb aquest vèrtex" #: objects/polygon_type.cc:38 #, kde-format @@ -5684,7 +5676,7 @@ #: objects/polygon_type.cc:506 #, kde-format msgid "Intersect this polygon with a line" -msgstr "Interseca este polígon amb una recta" +msgstr "Interseca aquest polígon amb una recta" #: objects/polygon_type.cc:507 #, kde-format @@ -5694,7 +5686,7 @@ #: objects/polygon_type.cc:509 #, kde-format msgid "Intersect this line with a polygon" -msgstr "Interseca esta recta amb un polígon" +msgstr "Interseca aquesta recta amb un polígon" #: objects/polygon_type.cc:510 #, kde-format @@ -5704,7 +5696,7 @@ #: objects/polygon_type.cc:625 objects/polygon_type.cc:657 #, kde-format msgid "Intersect this polygonal curve with a line" -msgstr "Interseca esta corba poligonal amb una recta" +msgstr "Interseca aquesta corba poligonal amb una recta" #: objects/polygon_type.cc:626 objects/polygon_type.cc:658 #, kde-format @@ -5715,7 +5707,7 @@ #: objects/polygon_type.cc:628 objects/polygon_type.cc:660 #, kde-format msgid "Intersect this line with a polygonal curve" -msgstr "Interseca esta recta amb una corba poligonal" +msgstr "Interseca aquesta recta amb una corba poligonal" #: objects/polygon_type.cc:629 objects/polygon_type.cc:661 #, kde-format @@ -5726,7 +5718,7 @@ #: objects/polygon_type.cc:827 #, kde-format msgid "Intersect this polygon with another polygon" -msgstr "Interseca este polígon amb un altre polígon" +msgstr "Interseca aquest polígon amb un altre polígon" #: objects/polygon_type.cc:828 #, kde-format @@ -5737,7 +5729,7 @@ #: objects/polygon_type.cc:829 #, kde-format msgid "Intersect with this polygon" -msgstr "Interseca amb este polígon" +msgstr "Interseca amb aquest polígon" #: objects/polygon_type.cc:830 #, kde-format @@ -5747,7 +5739,7 @@ #: objects/polygon_type.cc:976 #, kde-format msgid "Construct the vertices of this polygon" -msgstr "Construeix els vèrtexs d'este polígon" +msgstr "Construeix els vèrtexs d'aquest polígon" #: objects/polygon_type.cc:977 #, kde-format @@ -5757,7 +5749,7 @@ #: objects/polygon_type.cc:1019 #, kde-format msgid "Construct the sides of this polygon" -msgstr "Construeix els costats d'este polígon" +msgstr "Construeix els costats d'aquest polígon" #: objects/polygon_type.cc:1020 #, kde-format @@ -5767,7 +5759,7 @@ #: objects/polygon_type.cc:1065 #, kde-format msgid "Construct the convex hull of this polygon" -msgstr "Construeix l'envolupant convexa d'este polígon" +msgstr "Construeix l'envolupant convexa d'aquest polígon" #: objects/polygon_type.cc:1066 #, kde-format @@ -5778,7 +5770,7 @@ #: objects/special_calcers.cc:23 #, kde-format msgid "Project this point onto the circle" -msgstr "Projecta este punt sobre el cercle" +msgstr "Projecta aquest punt sobre el cercle" #: objects/tangent_type.cc:38 #, kde-format @@ -5788,7 +5780,7 @@ #: objects/tests_type.cc:32 #, kde-format msgid "Is this line parallel?" -msgstr "Esta recta és paral·lela?" +msgstr "Aquesta recta és paral·lela?" #: objects/tests_type.cc:33 #, kde-format @@ -5798,7 +5790,7 @@ #: objects/tests_type.cc:34 #, kde-format msgid "Parallel to this line?" -msgstr "És paral·lela a esta recta?" +msgstr "És paral·lela a aquesta recta?" #: objects/tests_type.cc:35 #, kde-format @@ -5808,17 +5800,17 @@ #: objects/tests_type.cc:63 #, kde-format msgid "These lines are parallel." -msgstr "Estes rectes són paral·leles." +msgstr "Aquestes rectes són paral·leles." #: objects/tests_type.cc:65 #, kde-format msgid "These lines are not parallel." -msgstr "Estes rectes no són paral·leles." +msgstr "Aquestes rectes no són paral·leles." #: objects/tests_type.cc:76 #, kde-format msgid "Is this line orthogonal?" -msgstr "Esta recta és ortogonal?" +msgstr "Aquesta recta és ortogonal?" #: objects/tests_type.cc:77 #, kde-format @@ -5828,7 +5820,7 @@ #: objects/tests_type.cc:78 #, kde-format msgid "Orthogonal to this line?" -msgstr "És ortogonal a esta recta?" +msgstr "És ortogonal a aquesta recta?" #: objects/tests_type.cc:79 #, kde-format @@ -5838,17 +5830,17 @@ #: objects/tests_type.cc:107 #, kde-format msgid "These lines are orthogonal." -msgstr "Estes rectes són ortogonals." +msgstr "Aquestes rectes són ortogonals." #: objects/tests_type.cc:109 #, kde-format msgid "These lines are not orthogonal." -msgstr "Estes rectes no són ortogonals." +msgstr "Aquestes rectes no són ortogonals." #: objects/tests_type.cc:120 #, kde-format msgid "Check collinearity of this point" -msgstr "Comprova la col·linealitat d'este punt" +msgstr "Comprova la col·linealitat d'aquest punt" #: objects/tests_type.cc:121 #, kde-format @@ -5858,7 +5850,7 @@ #: objects/tests_type.cc:122 #, kde-format msgid "and this second point" -msgstr "i este segon punt" +msgstr "i aquest segon punt" #: objects/tests_type.cc:123 #, kde-format @@ -5868,7 +5860,7 @@ #: objects/tests_type.cc:124 #, kde-format msgid "with this third point" -msgstr "amb este tercer punt" +msgstr "amb aquest tercer punt" #: objects/tests_type.cc:125 #, kde-format @@ -5878,17 +5870,17 @@ #: objects/tests_type.cc:154 #, kde-format msgid "These points are collinear." -msgstr "Estos punts són col·lineals." +msgstr "Aquests punts són col·lineals." #: objects/tests_type.cc:156 #, kde-format msgid "These points are not collinear." -msgstr "Estos punts no són col·lineals." +msgstr "Aquests punts no són col·lineals." #: objects/tests_type.cc:166 #, kde-format msgid "Check whether this point is on a curve" -msgstr "Comprova si este punt està a una corba" +msgstr "Comprova si aquest punt està a una corba" #: objects/tests_type.cc:167 objects/tests_type.cc:213 #, kde-format @@ -5898,7 +5890,7 @@ #: objects/tests_type.cc:168 #, kde-format msgid "Check whether the point is on this curve" -msgstr "Comprova si el punt està a esta corba" +msgstr "Comprova si el punt està a aquesta corba" #: objects/tests_type.cc:169 #, kde-format @@ -5908,22 +5900,22 @@ #: objects/tests_type.cc:196 #, kde-format msgid "This curve contains the point." -msgstr "Esta corba conté el punt." +msgstr "Aquesta corba conté el punt." #: objects/tests_type.cc:198 #, kde-format msgid "This curve does not contain the point." -msgstr "Esta corba no conté el punt." +msgstr "Aquesta corba no conté el punt." #: objects/tests_type.cc:212 #, kde-format msgid "Check whether this point is in a polygon" -msgstr "Comprova si este punt està a un polígon" +msgstr "Comprova si aquest punt està a un polígon" #: objects/tests_type.cc:214 #, kde-format msgid "Check whether the point is in this polygon" -msgstr "Comprova si el punt està en este polígon" +msgstr "Comprova si el punt està en aquest polígon" #: objects/tests_type.cc:215 #, kde-format @@ -5933,17 +5925,17 @@ #: objects/tests_type.cc:242 #, kde-format msgid "This polygon contains the point." -msgstr "Este polígon conté el punt." +msgstr "Aquest polígon conté el punt." #: objects/tests_type.cc:244 #, kde-format msgid "This polygon does not contain the point." -msgstr "Este polígon no conté el punt." +msgstr "Aquest polígon no conté el punt." #: objects/tests_type.cc:258 #, kde-format msgid "Check whether this polygon is convex" -msgstr "Comprova si este polígon és convex" +msgstr "Comprova si aquest polígon és convex" #: objects/tests_type.cc:259 #, kde-format @@ -5953,17 +5945,17 @@ #: objects/tests_type.cc:285 #, kde-format msgid "This polygon is convex." -msgstr "Este polígon és convex." +msgstr "Aquest polígon és convex." #: objects/tests_type.cc:287 #, kde-format msgid "This polygon is not convex." -msgstr "Este polígon no és convex." +msgstr "Aquest polígon no és convex." #: objects/tests_type.cc:301 #, kde-format msgid "Check if this point has the same distance" -msgstr "Comprova si este punt té la mateixa distància" +msgstr "Comprova si aquest punt té la mateixa distància" #: objects/tests_type.cc:302 #, kde-format @@ -5976,7 +5968,7 @@ #: objects/tests_type.cc:303 #, kde-format msgid "from this point" -msgstr "des d'este punt" +msgstr "des d'aquest punt" #: objects/tests_type.cc:304 #, kde-format @@ -5986,7 +5978,7 @@ #: objects/tests_type.cc:305 #, kde-format msgid "and from this second point" -msgstr "i des d'este segon punt" +msgstr "i des d'aquest segon punt" #: objects/tests_type.cc:306 #, kde-format @@ -6006,7 +5998,7 @@ #: objects/tests_type.cc:346 #, kde-format msgid "Check whether this vector is equal to another vector" -msgstr "Comprova si este vector és igual a un altre vector" +msgstr "Comprova si aquest vector és igual a un altre vector" #: objects/tests_type.cc:347 #, kde-format @@ -6016,7 +6008,7 @@ #: objects/tests_type.cc:348 #, kde-format msgid "Check whether this vector is equal to the other vector" -msgstr "Comprova si este vector és igual a l'altre vector" +msgstr "Comprova si aquest vector és igual a l'altre vector" #: objects/tests_type.cc:349 #, kde-format @@ -6036,7 +6028,7 @@ #: objects/tests_type.cc:388 #, kde-format msgid "Check whether this object exists" -msgstr "Comprova si este objecte existeix" +msgstr "Comprova si aquest objecte existeix" #: objects/tests_type.cc:389 #, kde-format @@ -6066,7 +6058,7 @@ #: objects/text_imp.cc:148 #, kde-format msgid "Select this label" -msgstr "Selecciona esta etiqueta" +msgstr "Selecciona aquesta etiqueta" #: objects/text_imp.cc:149 #, kde-format @@ -6091,7 +6083,7 @@ #: objects/text_imp.cc:153 #, kde-format msgid "Attach to this label" -msgstr "Adjunta a esta etiqueta" +msgstr "Adjunta a aquesta etiqueta" #: objects/text_imp.cc:154 #, kde-format @@ -6111,7 +6103,7 @@ #: objects/text_imp.cc:194 #, kde-format msgid "Select this numeric label" -msgstr "Selecciona esta etiqueta numèrica" +msgstr "Selecciona aquesta etiqueta numèrica" #: objects/text_imp.cc:195 #, kde-format @@ -6136,7 +6128,7 @@ #: objects/text_imp.cc:199 #, kde-format msgid "Attach to this numeric label" -msgstr "Adjunta a esta etiqueta numèrica" +msgstr "Adjunta a aquesta etiqueta numèrica" #: objects/text_imp.cc:200 #, kde-format @@ -6161,7 +6153,7 @@ #: objects/text_imp.cc:286 #, kde-format msgid "Select this boolean label" -msgstr "Selecciona esta etiqueta booleana" +msgstr "Selecciona aquesta etiqueta booleana" #: objects/text_imp.cc:287 #, kde-format @@ -6186,7 +6178,7 @@ #: objects/text_imp.cc:291 #, kde-format msgid "Attach to this boolean label" -msgstr "Adjunta a esta etiqueta booleana" +msgstr "Adjunta a aquesta etiqueta booleana" #: objects/text_imp.cc:292 #, kde-format @@ -6246,7 +6238,7 @@ #: objects/transform_types.cc:35 #, kde-format msgid "Translate this object" -msgstr "Trasllada este objecte" +msgstr "Trasllada aquest objecte" #: objects/transform_types.cc:36 #, kde-format @@ -6256,7 +6248,7 @@ #: objects/transform_types.cc:37 #, kde-format msgid "Translate by this vector" -msgstr "Trasllada per este vector" +msgstr "Trasllada per aquest vector" #: objects/transform_types.cc:38 #, kde-format @@ -6266,7 +6258,7 @@ #: objects/transform_types.cc:70 objects/transform_types.cc:105 #, kde-format msgid "Reflect this object" -msgstr "Reflecteix este objecte" +msgstr "Reflecteix aquest objecte" #: objects/transform_types.cc:71 objects/transform_types.cc:106 #, kde-format @@ -6276,7 +6268,7 @@ #: objects/transform_types.cc:72 #, kde-format msgid "Reflect in this point" -msgstr "Reflecteix en este punt" +msgstr "Reflecteix en aquest punt" #: objects/transform_types.cc:73 #, kde-format @@ -6286,7 +6278,7 @@ #: objects/transform_types.cc:107 #, kde-format msgid "Reflect in this line" -msgstr "Reflecteix en esta recta" +msgstr "Reflecteix en aquesta recta" #: objects/transform_types.cc:108 #, kde-format @@ -6296,7 +6288,7 @@ #: objects/transform_types.cc:140 #, kde-format msgid "Rotate this object" -msgstr "Gira este objecte" +msgstr "Gira aquest objecte" #: objects/transform_types.cc:141 #, kde-format @@ -6306,7 +6298,7 @@ #: objects/transform_types.cc:142 #, kde-format msgid "Rotate around this point" -msgstr "Gira respecte a este punt" +msgstr "Gira respecte a aquest punt" #: objects/transform_types.cc:143 #, kde-format @@ -6316,7 +6308,7 @@ #: objects/transform_types.cc:146 #, kde-format msgid "Rotate by this angle" -msgstr "Gira este angle" +msgstr "Gira aquest angle" #: objects/transform_types.cc:147 #, kde-format @@ -6327,7 +6319,7 @@ #: objects/transform_types.cc:272 objects/transform_types.cc:310 #, kde-format msgid "Scale this object" -msgstr "Escala este objecte" +msgstr "Escala aquest objecte" #: objects/transform_types.cc:183 objects/transform_types.cc:224 #, kde-format @@ -6337,7 +6329,7 @@ #: objects/transform_types.cc:184 objects/transform_types.cc:225 #, kde-format msgid "Scale with this center" -msgstr "Escala amb este centre" +msgstr "Escala amb aquest centre" #: objects/transform_types.cc:185 objects/transform_types.cc:226 #, kde-format @@ -6347,7 +6339,7 @@ #: objects/transform_types.cc:188 objects/transform_types.cc:275 #, kde-format msgid "Scale by this length" -msgstr "Escala per esta longitud" +msgstr "Escala per aquesta longitud" #: objects/transform_types.cc:189 objects/transform_types.cc:276 #, kde-format @@ -6360,7 +6352,7 @@ #: objects/transform_types.cc:231 objects/transform_types.cc:314 #, kde-format msgid "Scale this length..." -msgstr "Escala esta longitud..." +msgstr "Escala aquesta longitud..." #: objects/transform_types.cc:232 objects/transform_types.cc:315 #, kde-format @@ -6373,7 +6365,7 @@ #: objects/transform_types.cc:233 objects/transform_types.cc:316 #, kde-format msgid "...to this other length" -msgstr "...a esta altra longitud" +msgstr "...a aquesta altra longitud" #: objects/transform_types.cc:234 objects/transform_types.cc:317 #, kde-format @@ -6391,7 +6383,7 @@ #: objects/transform_types.cc:273 objects/transform_types.cc:311 #, kde-format msgid "Scale over this line" -msgstr "Escala sobre esta recta" +msgstr "Escala sobre aquesta recta" #: objects/transform_types.cc:273 objects/transform_types.cc:311 #, kde-format @@ -6401,7 +6393,7 @@ #: objects/transform_types.cc:355 #, kde-format msgid "Projectively rotate this object" -msgstr "Gira este objecte projectivament" +msgstr "Gira aquest objecte projectivament" #: objects/transform_types.cc:355 #, kde-format @@ -6411,7 +6403,7 @@ #: objects/transform_types.cc:356 #, kde-format msgid "Projectively rotate with this half-line" -msgstr "Gira projectivament amb esta semirecta" +msgstr "Gira projectivament amb aquesta semirecta" #: objects/transform_types.cc:356 #, kde-format @@ -6425,7 +6417,7 @@ #: objects/transform_types.cc:357 #, kde-format msgid "Projectively rotate by this angle" -msgstr "Gira este angle projectivament" +msgstr "Gira aquest angle projectivament" #: objects/transform_types.cc:357 #, kde-format @@ -6438,7 +6430,7 @@ #: objects/transform_types.cc:392 #, kde-format msgid "Harmonic Homology of this object" -msgstr "Homologia harmònica d'este objecte" +msgstr "Homologia harmònica d'aquest objecte" #: objects/transform_types.cc:393 objects/transform_types.cc:430 #: objects/transform_types.cc:472 objects/transform_types.cc:529 @@ -6450,7 +6442,7 @@ #: objects/transform_types.cc:394 #, kde-format msgid "Harmonic Homology with this center" -msgstr "Homologia harmònica amb este centre" +msgstr "Homologia harmònica amb aquest centre" #: objects/transform_types.cc:395 #, kde-format @@ -6460,7 +6452,7 @@ #: objects/transform_types.cc:396 #, kde-format msgid "Harmonic Homology with this axis" -msgstr "Homologia harmònica amb este eix" +msgstr "Homologia harmònica amb aquest eix" #: objects/transform_types.cc:397 #, kde-format @@ -6470,12 +6462,12 @@ #: objects/transform_types.cc:429 objects/transform_types.cc:471 #, kde-format msgid "Generic affinity of this object" -msgstr "Afinitat genèrica d'este objecte" +msgstr "Afinitat genèrica d'aquest objecte" #: objects/transform_types.cc:431 #, kde-format msgid "Map this triangle" -msgstr "Traça este triangle" +msgstr "Traça aquest triangle" #: objects/transform_types.cc:432 #, kde-format @@ -6486,7 +6478,7 @@ #: objects/transform_types.cc:433 #, kde-format msgid "onto this other triangle" -msgstr "en este altre triangle" +msgstr "en aquest altre triangle" #: objects/transform_types.cc:434 #, kde-format @@ -6571,12 +6563,12 @@ #: objects/transform_types.cc:528 objects/transform_types.cc:570 #, kde-format msgid "Generic projective transformation of this object" -msgstr "Transformació projectiva genèrica d'este objecte" +msgstr "Transformació projectiva genèrica d'aquest objecte" #: objects/transform_types.cc:530 #, kde-format msgid "Map this quadrilateral" -msgstr "Traça este quadrilàter" +msgstr "Traça aquest quadrilàter" #: objects/transform_types.cc:531 #, kde-format @@ -6589,7 +6581,7 @@ #: objects/transform_types.cc:532 #, kde-format msgid "onto this other quadrilateral" -msgstr "en este altre quadrilàter" +msgstr "en aquest altre quadrilàter" #: objects/transform_types.cc:533 #, kde-format @@ -6688,7 +6680,7 @@ #: objects/transform_types.cc:631 #, kde-format msgid "Cast the shadow of this object" -msgstr "Projecta l'ombra d'este objecte" +msgstr "Projecta l'ombra d'aquest objecte" #: objects/transform_types.cc:632 #, kde-format @@ -6698,7 +6690,7 @@ #: objects/transform_types.cc:633 #, kde-format msgid "Cast a shadow from this light source" -msgstr "Projecta una ombra des d'esta font de llum" +msgstr "Projecta una ombra des d'aquesta font de llum" #: objects/transform_types.cc:634 #, kde-format @@ -6708,7 +6700,7 @@ #: objects/transform_types.cc:636 #, kde-format msgid "Cast a shadow on the horizon represented by this line" -msgstr "Projecta una ombra en l'horitzó definit per esta recta" +msgstr "Projecta una ombra en l'horitzó definit per aquesta recta" #: objects/transform_types.cc:637 #, kde-format @@ -6718,22 +6710,22 @@ #: objects/transform_types.cc:819 #, kde-format msgid "Transform this object" -msgstr "Transforma este objecte" +msgstr "Transforma aquest objecte" #: objects/transform_types.cc:820 #, kde-format msgid "Transform using this transformation" -msgstr "Transforma usant esta transformació" +msgstr "Transforma usant aquesta transformació" #: objects/transform_types.cc:893 #, kde-format msgid "Apply a similitude to this object" -msgstr "Aplica una similitud a este objecte" +msgstr "Aplica una similitud a aquest objecte" #: objects/transform_types.cc:895 #, kde-format msgid "Apply a similitude with this center" -msgstr "Aplica una similitud amb este centre" +msgstr "Aplica una similitud amb aquest centre" #: objects/transform_types.cc:896 #, kde-format @@ -6743,7 +6735,7 @@ #: objects/transform_types.cc:897 #, kde-format msgid "Apply a similitude mapping this point onto another point" -msgstr "Aplica una similitud traçant este punt sobre un altre punt" +msgstr "Aplica una similitud traçant aquest punt sobre un altre punt" #: objects/transform_types.cc:898 #, kde-format @@ -6754,7 +6746,7 @@ #: objects/transform_types.cc:899 #, kde-format msgid "Apply a similitude mapping a point onto this point" -msgstr "Aplica una similitud traçant un punt sobre este punt" +msgstr "Aplica una similitud traçant un punt sobre aquest punt" #: objects/transform_types.cc:900 #, kde-format @@ -6766,7 +6758,7 @@ #: objects/vector_type.cc:26 #, kde-format msgid "Construct a vector from this point" -msgstr "Construeix un vector des d'este punt" +msgstr "Construeix un vector des d'aquest punt" #: objects/vector_type.cc:27 #, kde-format @@ -6776,7 +6768,7 @@ #: objects/vector_type.cc:28 #, kde-format msgid "Construct a vector to this point" -msgstr "Construeix un vector a este punt" +msgstr "Construeix un vector a aquest punt" #: objects/vector_type.cc:29 #, kde-format @@ -6786,7 +6778,7 @@ #: objects/vector_type.cc:61 #, kde-format msgid "Construct the vector sum of this vector and another one." -msgstr "Construeix el vector suma d'este vector i un altre." +msgstr "Construeix el vector suma d'aquest vector i un altre." #: objects/vector_type.cc:62 #, kde-format @@ -6798,7 +6790,7 @@ #: objects/vector_type.cc:63 #, kde-format msgid "Construct the vector sum of this vector and the other one." -msgstr "Construeix el vector suma d'este vector i de l'altre." +msgstr "Construeix el vector suma d'aquest vector i de l'altre." #: objects/vector_type.cc:64 #, kde-format @@ -6810,7 +6802,7 @@ #: objects/vector_type.cc:65 #, kde-format msgid "Construct the vector sum starting at this point." -msgstr "Construeix el vector suma començant en este punt." +msgstr "Construeix el vector suma començant en aquest punt." #: objects/vector_type.cc:66 #, kde-format @@ -6880,7 +6872,7 @@ "no errors, but the script does not generate a valid object. Please fix the " "script, and click the Finish button again." msgstr "" -"Pareix que hi ha un error al vostre script. L'intèrpret de Python no ha " +"Sembla que hi ha un error al vostre script. L'intèrpret de Python no ha " "informat de cap error, però el guió no genera cap objecte vàlid. Per favor, " "corregiu el guió i premeu el botó Acaba un altre cop." @@ -6911,7 +6903,7 @@ "no errors, but the script does not generate a valid object. Please fix the " "script." msgstr "" -"Pareix que hi ha un error al vostre script. L'intèrpret de Python no ha " +"Sembla que hi ha un error al vostre script. L'intèrpret de Python no ha " "informat de cap error, però l'script no genera cap objecte vàlid. Per favor, " "corregiu l'script." @@ -6943,7 +6935,7 @@ msgstr "" "

Podeu controlar una construcció de Kig a través d'un script en Python " "«pykig», \n" -"que pot executar-se amb l'orde\n" +"que pot executar-se amb l'ordre\n" "pykig.py. Seguidament en teniu un petit exemple \n" "(hexagons.kpy) que podeu provar:\n" "

\n"
@@ -6976,7 +6968,7 @@
 "

Podeu repetir la darrera construcció prement simplement la tecla\n" "«Z»; això esdevé molt útil si necessiteu construir una seqüència d'objectes\n" "emprant la mateixa construcció, especialment si no hi ha cap drecera\n" -"associada a esta construcció.

\n" +"associada a aquesta construcció.

\n" #. i18n: ectx: @info:tipoftheday #: tips:37 @@ -7096,3 +7088,48 @@ "i escollir equació cartesiana per veure la seua equació " "cartesiana, \n" "sempre que siga una corba algèbrica de grau baix.

\n" + +#, fuzzy +#~| msgid "Construct the midpoint of this point and another point" +#~ msgid "Construct the axis of the segment with this and another point" +#~ msgstr "Construeix el punt mig d'aquest i un altre punt" + +#, fuzzy +#~| msgid "Select the first of the two other points..." +#~ msgid "Select the first of the two points..." +#~ msgstr "Seleccioneu el primer dels dos altres punts..." + +#, fuzzy +#~| msgid "Construct a segment starting at this point" +#~ msgid "Construct the axis of the segment with the previous and this point" +#~ msgstr "Construeix un segment que comenci en aquest punt" + +#, fuzzy +#~| msgid "Select the first of the two other points..." +#~ msgid "Select the second of the two points..." +#~ msgstr "Seleccioneu el primer dels dos altres punts..." + +#~ msgid "Save changes to document %1?" +#~ msgstr "Voleu desar els canvis al document %1?" + +#~ msgid "Save Changes?" +#~ msgstr "Voleu desar els canvis?" + +#~ msgid "" +#~ "*.kig *.kigz *.seg *.fgeo *.fig *.FIG|All Supported Files (*.kig *.kigz *." +#~ "seg *.fgeo *.fig)\n" +#~ "*.kig|Kig Documents (*.kig)\n" +#~ "*.kigz|Compressed Kig Documents (*.kigz)\n" +#~ "*.kgeo|KGeo Documents (*.kgeo)\n" +#~ "*.seg|KSeg Documents (*.seg)\n" +#~ "*.fgeo|Dr. Geo Documents (*.fgeo)\n" +#~ "*.fig *.FIG|Cabri Documents (*.fig *.FIG)" +#~ msgstr "" +#~ "*.kig *.kigz *.seg *.fgeo *.fig *.FIG|Tots els fitxers acceptats (*.kig *." +#~ "kigz *.seg *.fgeo *.fig)\n" +#~ "*.kig|Documents Kig (*.kig)\n" +#~ "*.kigz|Documents Kig comprimits (*.kigz)\n" +#~ "*.kgeo|Documents KGeo (*.kgeo)\n" +#~ "*.seg|Documents KSeg (*.seg)\n" +#~ "*.fgeo|Documents Dr. Geo (*.fgeo)\n" +#~ "*.fig *.FIG|Documents Cabri (*.fig *.FIG)" diff -Nru kig-17.12.3/po/cs/kig.po kig-18.04.3/po/cs/kig.po --- kig-17.12.3/po/cs/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/cs/kig.po 2018-07-10 00:05:07.000000000 +0000 @@ -1,15 +1,15 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# Vít Pelčák , 2010, 2011, 2012, 2013, 2014, 2015, 2017. +# Vít Pelčák , 2010, 2011, 2012, 2013, 2014, 2015, 2017, 2018. # Tomáš Chvátal , 2012, 2013. # msgid "" msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2017-09-12 12:38+0100\n" -"Last-Translator: Vít Pelčák \n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-04-03 14:56+0100\n" +"Last-Translator: Vit Pelcak \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -162,8 +162,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|Dokument Asymptoty (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "Dokumenty Asymptoty (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -424,8 +424,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|LaTeX dokument (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "Dokumenty LaTeX (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -546,8 +546,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Scalable vector graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "Scalable vector graphics (*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -576,8 +576,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|XFig dokument (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "Dokumenty XFig (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -1025,29 +1025,25 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Kig dokumenty (*.kig)\n" -"*.kigz|Komprimované Kig dokumenty (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Dokumenty Kig (*.kig);;Komprimované dokumenty Kig (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Soubor \"%1\" již existuje. Přejete si jej přepsat?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Přepsat soubor?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Geometrie tisku" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" @@ -1055,7 +1051,7 @@ msgstr[1] "Skrýt %1 objekty" msgstr[2] "Skrýt %1 objektů" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3312,27 +3308,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Kig soubory\n" -"*|všechny soubory" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Soubory Typ Kig (*.kigt);;Všechny soubory (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "" +msgid "Kig Types Files (*.kigt)" +msgstr "Soubory Typ Kig (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Soubory nástrojů Geodebra (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Všechny soubory" +msgid "All Files (*)" +msgstr "Všechny soubory (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/da/kig.po kig-18.04.3/po/da/kig.po --- kig-17.12.3/po/da/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/da/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2015-12-08 19:57+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -164,8 +164,9 @@ msgstr "&Asymptote..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Asymptote-dokument (*.asy)" #: filters/asyexporter.cc:59 @@ -439,8 +440,9 @@ msgstr "&Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Latex-dokumenter (*.tex)" #: filters/latexexporter.cc:539 @@ -559,8 +561,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Skalerbar vektorgrafik (*.svg)" #: filters/svgexporter.cc:60 @@ -589,8 +592,9 @@ msgstr "&XFig-fil..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig dokumenter (*.fig)" #: filters/xfigexporter.cc:578 @@ -1056,37 +1060,38 @@ msgstr "Gem med Kigs format" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kig-dokumenter (*.kig)\n" "*.kigz|Komprimerede Kig-dokumenter (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Filen \"%1\" findes allerede. Ønsker du at overskrive den?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Overskriv fil?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Udskriv geometri" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Skjul %1 objekt" msgstr[1] "Skjul %1 objekter" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3405,10 +3410,11 @@ msgstr "Eksportér typer" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig-type filer\n" "*|Alle filer" @@ -3418,19 +3424,20 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Kig-type filer\n" "*|Alle filer" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 -#, kde-format -msgid "*|All Files" +#, fuzzy, kde-format +#| msgid "*|All Files" +msgid "All Files (*)" msgstr "*|Alle filer" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/de/kig.po kig-18.04.3/po/de/kig.po --- kig-17.12.3/po/de/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/de/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -5,15 +5,15 @@ # Thomas Reitelbach , 2005, 2006, 2007, 2008. # Martin Ereth , 2008. # Panagiotis Papadopoulos , 2010. -# Frederik Schwarzer , 2010, 2011, 2012, 2013, 2016. +# Frederik Schwarzer , 2010, 2011, 2012, 2013, 2016, 2018. # Felix Schweighofer , 2010. # Peter Rüthemann , 2010. msgid "" msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2016-11-22 20:31+0100\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-03-11 13:15+0100\n" "Last-Translator: Frederik Schwarzer \n" "Language-Team: German \n" "Language: de\n" @@ -177,8 +177,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|Asymptote-Dokumente (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "Asymptote-Dokument (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -449,8 +449,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|LaTeX-Dokumente (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "LaTeX-Dokument (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -571,8 +571,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Skalierbare Vektorgrafik (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "Skalierbare Vektorgrafik (*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -601,8 +601,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|XFig-Dokumente (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "XFig-Dokument (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -1061,36 +1061,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Kig-Dokumente (*.kig)\n" -"*.kigz|Komprimierte Kig-Dokumente (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Kig-Dokument (*.kig);;Komprimiertes Kig-Dokument (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Die Datei „%1“ existiert bereits. Möchten Sie sie überschreiben?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Datei überschreiben?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Geometrie drucken" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Ein Objekt ausblenden" msgstr[1] "%1 Objekte ausblenden" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3459,27 +3455,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Kig-Typdateien\n" -"*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Kig-Typdateien (*.kigt);;All Files (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "*.kigt|Kig-Typdateien" +msgid "Kig Types Files (*.kigt)" +msgstr "Kig-Typdateien (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "*.ggt|Geogebra-Extradateien" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Geogebra-Extradateien (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Alle Dateien" +msgid "All Files (*)" +msgstr "Alle Dateien (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/el/kig.po kig-18.04.3/po/el/kig.po --- kig-17.12.3/po/el/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/el/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2017-09-16 17:17+0200\n" "Last-Translator: Stelios \n" "Language-Team: Greek \n" @@ -172,8 +172,9 @@ msgstr "&Asymptote..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Έγγραφα Asymptote (*.asy)" #: filters/asyexporter.cc:59 @@ -446,8 +447,9 @@ msgstr "&Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Έγγραφα Latex (*.tex)" #: filters/latexexporter.cc:539 @@ -571,8 +573,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Διανυσματικά γραφικά (*.svg)" #: filters/svgexporter.cc:60 @@ -601,8 +604,9 @@ msgstr "Αρχείο &XFig..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|Έγγραφα XFig (*.fig)" #: filters/xfigexporter.cc:578 @@ -1058,37 +1062,38 @@ msgstr "Αποθήκευση μορφής Kig" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Έγγραφα Kig (*.kig)\n" "*.kigz|Συμπιεσμένα έγγραφα Kig (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Το αρχείο \"%1\" υπάρχει ήδη. Επιθυμείτε την αντικατάστασή του;" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Αντικατάσταση του αρχείου;" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Εκτύπωση γεωμετρίας" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Απόκρυψη %1 αντικειμένου" msgstr[1] "Απόκρυψη %1 αντικειμένων" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3426,27 +3431,31 @@ msgstr "Εξαγωγή τύπων" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Αρχεία τύπων Kig\n" "*|Όλα τα αρχεία" #: modes/typesdialog.cpp:482 -#, kde-format -msgid "*.kigt|Kig Types Files" +#, fuzzy, kde-format +#| msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "*.kigt|Αρχεία τύπων Kig" #: modes/typesdialog.cpp:484 -#, kde-format -msgid "*.ggt|Geogebra Tool Files" +#, fuzzy, kde-format +#| msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "*.ggt|Αρχεία εργαλείων Geogebra" #: modes/typesdialog.cpp:486 -#, kde-format -msgid "*|All Files" +#, fuzzy, kde-format +#| msgid "*|All Files" +msgid "All Files (*)" msgstr "*|Όλα τα αρχεία" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/en_GB/kig.po kig-18.04.3/po/en_GB/kig.po --- kig-17.12.3/po/en_GB/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/en_GB/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -5,21 +5,21 @@ # Jonathan Riddell , 2003. # Malcolm Hunter , 2004, 2005, 2006. # Andrew Coles , 2004, 2005, 2009, 2010. -# Steve Allewell , 2014, 2015. +# Steve Allewell , 2014, 2015, 2018. msgid "" msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2015-07-19 12:07+0100\n" -"Last-Translator: Stephen Allewell\n" -"Language-Team: British English \n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-03-10 14:14+0000\n" +"Last-Translator: Steve Allewell \n" +"Language-Team: British English \n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -168,8 +168,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "Asymptote Documents (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -436,8 +436,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "Latex Documents (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -557,8 +557,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "Scalable Vector Graphics (*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -587,8 +587,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "XFig Documents (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -1039,36 +1039,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "The file \"%1\" already exists. Do you wish to overwrite it?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Overwrite File?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Print Geometry" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Hide %1 Object" msgstr[1] "Hide %1 Objects" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3378,27 +3374,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Kig Types Files\n" -"*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Kig Types Files (*.kigt);;All Files (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" +msgstr "Kig Types Files (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Geogebra Tool Files (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|All Files" +msgid "All Files (*)" +msgstr "All Files (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/eo/kig.po kig-18.04.3/po/eo/kig.po --- kig-17.12.3/po/eo/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/eo/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2009-11-14 06:06-0500\n" "Last-Translator: Axel Rousseau \n" "Language-Team: esperanto \n" @@ -155,7 +155,7 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "" #: filters/asyexporter.cc:59 @@ -402,7 +402,7 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "" #: filters/latexexporter.cc:539 @@ -509,7 +509,7 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "" #: filters/svgexporter.cc:60 @@ -539,7 +539,7 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "" #: filters/xfigexporter.cc:578 @@ -968,34 +968,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Ĉu anstataŭigi la dosieron?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "" msgstr[1] "" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3220,24 +3218,22 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/es/kig.po kig-18.04.3/po/es/kig.po --- kig-17.12.3/po/es/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/es/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -5,7 +5,7 @@ # Miguel Revilla Rodríguez , 2002,2003, 2004. # Juan Manuel Garcia Molina , 2004. # Rafael Beccar , 2004, 2005. -# Eloy Cuadra , 2005, 2009, 2010, 2011, 2012, 2013, 2014, 2015. +# Eloy Cuadra , 2005, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2018. # Pablo de Vicente , 2005, 2006. # santi , 2006. # Santiago Fernández Sancho , 2007, 2008. @@ -13,15 +13,15 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2015-07-05 20:08+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-03-18 22:38+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #, kde-format @@ -176,8 +176,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|Documentos de Asymptote (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "Documentos de Asymptote (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -447,8 +447,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|Documentos Latex (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "Documentos Latex (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -570,8 +570,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Gráficos vectoriales escalables (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "Gráficos vectoriales escalables (*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -600,8 +600,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|Documentos de XFig (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "Documentos de XFig (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -1059,36 +1059,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Documentos de Kig (*.kig);;Documentos comprimidos de Kig (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "El archivo «%1» ya existe. ¿Desea sobrescribirlo?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "¿Sobrescribir el archivo?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Imprimir geometría" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Ocultar %1 objeto" msgstr[1] "Ocultar %1 objetos" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3433,27 +3429,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Archivos de tipos de Kig\n" -"*|Todos los archivos" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Archivos de tipos de Kig (*.kigt);;Todos los archivos (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "*.kigt|Archivos de tipos de Kig" +msgid "Kig Types Files (*.kigt)" +msgstr "Archivos de tipos de Kig (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "*.ggt|Archivos de herramientas de Geogebra" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Archivos de herramientas de Geogebra (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Todos los archivos" +msgid "All Files (*)" +msgstr "Todos los archivos (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/et/kig.po kig-18.04.3/po/et/kig.po --- kig-17.12.3/po/et/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/et/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2016-01-18 00:20+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -158,8 +158,9 @@ msgstr "&Asymptote..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Asymptote dokumendid (*.asy)" #: filters/asyexporter.cc:59 @@ -415,8 +416,9 @@ msgstr "&LaTeX..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|LaTeXi dokumendid (*.tex)" #: filters/latexexporter.cc:539 @@ -538,8 +540,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Scalable Vector Graphics (*.svg)" #: filters/svgexporter.cc:60 @@ -568,8 +571,9 @@ msgstr "&XFig fail..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig dokumendid (*.fig)" #: filters/xfigexporter.cc:578 @@ -1019,37 +1023,38 @@ msgstr "Salvesta Kigi vormingus" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kigi dokumendid (*.kig)\n" "*.kigz|Tihendatud Kigi dokumendid (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Fail \"%1\" on juba olemas. Kas kirjutada see üle?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Kas kirjutada fail üle?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Trüki geomeetria" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Peida %1 objekt" msgstr[1] "Peida %1 objekti" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3346,27 +3351,31 @@ msgstr "Ekspordi tüüp" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kigi tüübifailid\n" "*|Kõik failid" #: modes/typesdialog.cpp:482 -#, kde-format -msgid "*.kigt|Kig Types Files" +#, fuzzy, kde-format +#| msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "*.kigt|Kigi tüübifailid" #: modes/typesdialog.cpp:484 -#, kde-format -msgid "*.ggt|Geogebra Tool Files" +#, fuzzy, kde-format +#| msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "*.ggt|Geogebra tööriistafailid" #: modes/typesdialog.cpp:486 -#, kde-format -msgid "*|All Files" +#, fuzzy, kde-format +#| msgid "*|All Files" +msgid "All Files (*)" msgstr "*|Kõik failid" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/eu/kig.po kig-18.04.3/po/eu/kig.po --- kig-17.12.3/po/eu/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/eu/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2010-11-27 20:23+0100\n" "Last-Translator: Ignigo Salvador Azurmendi \n" "Language-Team: Basque \n" @@ -169,7 +169,7 @@ #: filters/asyexporter.cc:58 #, fuzzy, kde-format #| msgid "*.tex|Latex Documents (*.tex)" -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.tex|Latex dokumentuak (*.tex)" #: filters/asyexporter.cc:59 @@ -441,8 +441,9 @@ msgstr "&Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Latex dokumentuak (*.tex)" #: filters/latexexporter.cc:539 @@ -567,8 +568,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Bektore Grafiko Eskalagarriak (*.svg)" #: filters/svgexporter.cc:60 @@ -597,8 +599,9 @@ msgstr "&XFig fitxategia..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig dokumentuak (*.fig)" #: filters/xfigexporter.cc:578 @@ -1069,37 +1072,38 @@ msgstr "Gorde Kig formatuan" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kig dokumentuak (*.kig)\n" "*.kigz|Konprimatutako Kig dokumentuak (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "\"%1\" fitxategia dagoeneko existitzen da. Gainidatzi nahi al duzu?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Gainidatzi fitxategia?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Inprimatu geometria" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Ezkutatu objektu %1" msgstr[1] "Ezkutatu %1 objektu" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3443,10 +3447,11 @@ msgstr "Esportatu motak" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig-en mota-fitxategiak\n" "*|Fitxategi guztiak" @@ -3456,19 +3461,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Kig-en mota-fitxategiak\n" "*|Fitxategi guztiak" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/fa/kig.po kig-18.04.3/po/fa/kig.po --- kig-17.12.3/po/fa/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/fa/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2012-01-12 17:08+0330\n" "Last-Translator: Mohammad Reza Mirdamadi \n" "Language-Team: Farsi (Persian) <>\n" @@ -163,7 +163,7 @@ #: filters/asyexporter.cc:58 #, fuzzy, kde-format #| msgid "*.tex|Latex Documents (*.tex)" -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.tex|اسناد Latex (*.tex)" #: filters/asyexporter.cc:59 @@ -437,8 +437,9 @@ msgstr "&لاتکس‌" #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|اسناد Latex (*.tex)" #: filters/latexexporter.cc:539 @@ -559,8 +560,9 @@ msgstr "" #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|نگاره‌سازی بردار مقیاس‌پذیر(*.svg)" #: filters/svgexporter.cc:60 @@ -589,8 +591,9 @@ msgstr "پرونده &XFig...‌" #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|اسناد XFig (*.fig)" #: filters/xfigexporter.cc:578 @@ -1059,36 +1062,37 @@ msgstr "ذخیره در قالب Kig" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|اسناد Kig (*.kig)\n" "*.kigz|اسناد فشرده Kig (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "در حال حاضر پرونده »%1« موجود است. می‌خواهید آن را جای‌نوشت کنید؟" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "پرونده جای‌نوشت شود؟" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "چاپ هندسه" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "مخفی کردن %1 شیء" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3402,10 +3406,11 @@ msgstr "صادرات انواع" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|پرونده‌های انواع Kig\n" "*|تمام پرونده‌‌ها" @@ -3415,19 +3420,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|پرونده‌های انواع Kig\n" "*|تمام پرونده‌‌ها" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/fi/kig.po kig-18.04.3/po/fi/kig.po --- kig-17.12.3/po/fi/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/fi/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2015-07-05 18:02+0200\n" "Last-Translator: Lasse Liehu \n" "Language-Team: Finnish \n" @@ -165,8 +165,9 @@ msgstr "&Asymptote…" #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Asymptote-tiedostot (*.asy)" #: filters/asyexporter.cc:59 @@ -422,8 +423,9 @@ msgstr "&Latex…" #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Latex-tiedostot (*.tex)" #: filters/latexexporter.cc:539 @@ -547,8 +549,9 @@ # SVG on erisnimi. #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Scalable Vector Graphics (*.svg)" #: filters/svgexporter.cc:60 @@ -577,8 +580,9 @@ msgstr "&XFig-tiedostona…" #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig-kaaviot (*.fig)" #: filters/xfigexporter.cc:578 @@ -1029,37 +1033,38 @@ msgstr "Talleta Kigin muodossa" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kig-kaaviot (*.kig)\n" "*.kigz|Pakatut Kig-kaaviot (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Tiedosto \"%1\" on jo olemassa. Haluatko kirjoittaa sen yli?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Korvataanko tiedosto?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Tulosta kaavio" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Piilota %1 objekti" msgstr[1] "Piilota %1 objektia" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3391,27 +3396,31 @@ msgstr "Vie makroja" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig-makrotiedostot\n" "*|Kaikki tiedostot" #: modes/typesdialog.cpp:482 -#, kde-format -msgid "*.kigt|Kig Types Files" +#, fuzzy, kde-format +#| msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "*.kigt|Kig-makrotiedostot" #: modes/typesdialog.cpp:484 -#, kde-format -msgid "*.ggt|Geogebra Tool Files" +#, fuzzy, kde-format +#| msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "*.ggt|Geogebran työkalutiedostot" #: modes/typesdialog.cpp:486 -#, kde-format -msgid "*|All Files" +#, fuzzy, kde-format +#| msgid "*|All Files" +msgid "All Files (*)" msgstr "*|Kaikki tiedostot" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/fr/kig.po kig-18.04.3/po/fr/kig.po --- kig-17.12.3/po/fr/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/fr/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -22,7 +22,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2016-02-20 22:35+0100\n" "Last-Translator: Raphaël JAKSE \n" "Language-Team: French \n" @@ -187,8 +187,9 @@ msgstr "&Asymptote..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Documents Asymptote (*.asy)" #: filters/asyexporter.cc:59 @@ -458,8 +459,9 @@ msgstr "&LaTeX..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Documents LaTeX (*.tex)" #: filters/latexexporter.cc:539 @@ -582,8 +584,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Images SVG (*.svg)" #: filters/svgexporter.cc:60 @@ -614,8 +617,9 @@ msgstr "Fichier &XFig..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|Documents XFig(*.fig)" #: filters/xfigexporter.cc:578 @@ -1073,37 +1077,38 @@ msgstr "Enregistrer au format Kig" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Documents Kig (« *.kig »)\n" "*.kigz|Documents Kig compressés (« *.kigz »)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Le fichier « %1 » existe déjà. Voulez-vous le remplacer ?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Écraser le fichier ?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Imprimer le tracé" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Cacher %1 objet" msgstr[1] "Cacher %1 objets" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3463,30 +3468,33 @@ msgstr "Exporter les types" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Fichiers de type de Kig\n" "*|Tous les fichiers" #: modes/typesdialog.cpp:482 -#, kde-format -msgid "*.kigt|Kig Types Files" +#, fuzzy, kde-format +#| msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Fichiers de type de Kig\n" "*|Tous les fichiers" #: modes/typesdialog.cpp:484 -#, kde-format -msgid "*.ggt|Geogebra Tool Files" +#, fuzzy, kde-format +#| msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "*.ggt|Fichiers d'outils Geogebra" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Tous les fichiers" +msgid "All Files (*)" +msgstr "Tous les fichiers (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/ga/kig.po kig-18.04.3/po/ga/kig.po --- kig-17.12.3/po/ga/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/ga/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdeedu/kig.po\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -157,8 +157,9 @@ msgstr "&Asymptote..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Cáipéisí Asymptote (*.asy)" #: filters/asyexporter.cc:59 @@ -412,8 +413,9 @@ msgstr "&LaTeX..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Cáipéisí LaTeX (*.tex)" #: filters/latexexporter.cc:539 @@ -519,8 +521,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Grafaic Inscálaithe Veicteoireach (*.svg)" #: filters/svgexporter.cc:60 @@ -549,8 +552,9 @@ msgstr "Comhad &XFig..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|Cáipéisí XFig (*.fig)" #: filters/xfigexporter.cc:578 @@ -987,30 +991,31 @@ msgstr "Sábháil Formáid Kig" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Cáipéisí Kig (*.kig)\n" "*.kigz|Cáipéisí Comhbhrúite Kig (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Tá comhad \"%1\" ann cheana. An bhfuil fonn ort scríobh air?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Forscríobh an Comhad?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" @@ -1020,7 +1025,7 @@ msgstr[3] "Folaigh %1 Réad" msgstr[4] "Folaigh %1 Réad" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3259,10 +3264,11 @@ msgstr "Cineálacha Easpórtála" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Comhaid Cineálacha Kig\n" "*|Gach Comhad" @@ -3272,19 +3278,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Comhaid Cineálacha Kig\n" "*|Gach Comhad" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/gl/kig.po kig-18.04.3/po/gl/kig.po --- kig-17.12.3/po/gl/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/gl/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -11,9 +11,9 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2018-02-01 20:06+0100\n" -"Last-Translator: Adrián Chaves (Gallaecio) \n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-04-30 00:14+0100\n" +"Last-Translator: Adrian Chaves \n" "Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -169,8 +169,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|Documentos do Asymptote (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "Documentos do Asymptote (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -190,8 +190,8 @@ "The file \"%1\" could not be opened. Please check if the file permissions " "are set correctly." msgstr "" -"Non foi posíbel abrir o ficheiro «%1». Comproba que os permisos do ficheiro " -"son correctos." +"Non se puido abrir o ficheiro «%1». Comproba que os permisos do ficheiro son " +"correctos." #. i18n: ectx: property (title), widget (QGroupBox, groupBox) #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) @@ -347,7 +347,7 @@ "The file \"%1\" could not be opened. This probably means that it does not " "exist, or that it cannot be opened due to its permissions" msgstr "" -"Non foi posíbel abrir o ficheiro «%1». Isto significa, probabelmente, que o " +"Non se puido abrir o ficheiro «%1». Isto significa, probabelmente, que o " "ficheiro non existe ou que non se pode abrir por problemas de permisos" #: filters/filter.cc:88 @@ -440,8 +440,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|Documentos Latex (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "Documentos Latex (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -500,8 +500,7 @@ msgid "" "This file was created by Kig version \"%1\", which this version cannot open." msgstr "" -"Este ficheiro foi creado pola versión «%1» de Kig; esta versión non o pode " -"abrir." +"Este ficheiro creouse coa versión «%1» de Kig; esta versión non o pode abrir." #: filters/native-filter.cc:200 #, kde-format @@ -511,7 +510,7 @@ "You can try to open this file with an older Kig version (0.4 to 0.6),\n" "and then save it again, which will save it in the new format." msgstr "" -"Este ficheiro foi creado pola versión «%1» de Kig.\n" +"Este ficheiro creouse coa versión «%1» de Kig.\n" "A compatibilidade cos formatos antigos de Kig (antes do 0.4) retirouse.\n" "Pode intentar acceder a este ficheiro cunha versión máis antiga\n" "de Kig (da 0.4 á 0.6) e despois gardala de novo, o que o fará no novo\n" @@ -563,8 +562,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|SVG (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "SVG (*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -593,8 +592,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|Documentos XFig (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "Documentos XFig (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -795,7 +794,7 @@ #, kde-format msgid "Could not find the necessary Kig library, check your installation." msgstr "" -"Non foi posíbel atopar a biblioteca de Kig necesaria; comprobe a instalación." +"Non se puido atopar a biblioteca de Kig necesaria; comprobe a instalación." #: kig/kig_commands.cpp:100 #, kde-format @@ -1048,36 +1047,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Documentos de Kig (*.kig)\n" -"*.kigz|Documentos de Kig comprimidos (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Documentos de Kig (*.kig);;Documentos de Kig comprimidos (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "O ficheiro «%1» xa existe. Desexa substituílo?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Desexa substituír o ficheiro?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Imprimir a xeometría" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Agochar %1 obxecto" msgstr[1] "Agochar %1 obxectos" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -1333,8 +1328,8 @@ "Output goes to stdout unless --outfile is specified." msgstr "" "Non mostrar unha interface gráfica. Converter o ficheiro indicado para o " -"formato nativo de Kig. O resultado vai á saída normal a menos que sexa " -"indicada a opción «--outfile»." +"formato nativo de Kig. O resultado vai á saída normal a menos que se indique " +"a opción «--outfile»." #: kig/main.cpp:91 #, kde-format @@ -2238,12 +2233,12 @@ #: misc/lists.cc:302 misc/lists.cc:308 #, kde-format msgid "Could not open macro file '%1'" -msgstr "Non foi posíbel abrir o ficheiro de macros «%1»" +msgstr "Non se puido abrir o ficheiro de macros «%1»" #: misc/lists.cc:319 #, kde-format msgid "Kig cannot open the macro file \"%1\"." -msgstr "Kig non foi quen de acceder ao ficheiro de macros «%1»." +msgstr "Kig non pode abrir o ficheiro de macros «%1»." #: misc/lists.cc:320 #, kde-format @@ -2253,10 +2248,10 @@ "macro using a previous Kig version (0.4 to 0.6) and then export it again in " "the new format." msgstr "" -"Este ficheiro foi creado por unha versión moi antiga de Kig (antes da 0.4). " -"A compatibilidade con este formato foi retirado das versións recentes de " -"Kig. Pode intentar acceder a este ficheiro cunha versión máis antiga de Kig " -"(da 0.4 á 0.6) e despois gardala no novo formato." +"Este ficheiro creouse cunha versión moi antiga de Kig (antes da 0.4). A " +"compatibilidade con este formato retirouse das versións recentes de Kig. " +"Pode intentar acceder a este ficheiro cunha versión máis antiga de Kig (da " +"0.4 á 0.6) e despois gardala no novo formato." #: misc/lists.cc:376 #, kde-format @@ -3404,27 +3399,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Ficheiros de tipos de Kig\n" -"*|Todos os ficheiros" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Ficheiros de tipos de Kig (*.kigt);;Todos os ficheiros (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "*.kigt|Ficheiros de tipos de Kig" +msgid "Kig Types Files (*.kigt)" +msgstr "Ficheiros de tipos de Kig (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "*.ggt|Ficheiros de ferramenta de Geogebra" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Ficheiros de ferramenta de Geogebra (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Todos os ficheiros" +msgid "All Files (*)" +msgstr "Todos os ficheiros (*)" #: modes/typesdialog.cpp:487 #, kde-format @@ -4565,7 +4556,7 @@ #: objects/intersection_types.cc:249 #, kde-format msgid "Already computed intersection point" -msgstr "O punto de intersección xa foi calculado" +msgstr "O punto de intersección xa se calculou." #: objects/intersection_types.cc:420 #, kde-format diff -Nru kig-17.12.3/po/hi/kig.po kig-18.04.3/po/hi/kig.po --- kig-17.12.3/po/hi/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/hi/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2007-12-21 17:44+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -161,7 +161,7 @@ #: filters/asyexporter.cc:58 #, fuzzy, kde-format #| msgid "*.tex|Latex Documents (*.tex)" -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.tex|लेटेक्स दस्तावेज़ (*.tex)" #: filters/asyexporter.cc:59 @@ -420,8 +420,9 @@ msgstr "लेटेक्स... (&L)" #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|लेटेक्स दस्तावेज़ (*.tex)" #: filters/latexexporter.cc:539 @@ -532,8 +533,9 @@ msgstr "एसवीजी... (&S)" #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|स्केलेबल वेक्टर ग्राफिक्स (*.svg)" #: filters/svgexporter.cc:60 @@ -562,8 +564,9 @@ msgstr "एक्स-फिग फ़ाइल... (&X)" #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|एक्स-फिग दस्तावेज़ (*.fig)" #: filters/xfigexporter.cc:578 @@ -1019,37 +1022,38 @@ msgstr "केआईजी फ़ॉर्मेट सहेजें" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|केआईजी दस्तावेज़ (*.kig)\n" "*.kigz|संपीडित केआईजी दस्तावेज़ (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "फ़ाइल \"%1\" पहले से ही मौजूद है. क्या आप इसके ऊपर लिखना चाहते हैं?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "फ़ाइल को मिटाकर लिखें?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "ज्यामिती छापें" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "%1 वस्तुएँ छुपाएँ" msgstr[1] "%1 वस्तुएँ छुपाएँ" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3322,10 +3326,11 @@ msgstr "निर्यात क़िस्में" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|केआईजी प्रकार फ़ाइल\n" "*|सभी फ़ाइलें" @@ -3335,19 +3340,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|केआईजी प्रकार फ़ाइल\n" "*|सभी फ़ाइलें" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/hr/kig.po kig-18.04.3/po/hr/kig.po --- kig-17.12.3/po/hr/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/hr/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kig 0\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2006-12-10 04:43+0100\n" "Last-Translator: Renato Pavicic \n" "Language-Team: Croatian \n" @@ -159,7 +159,7 @@ #: filters/asyexporter.cc:58 #, fuzzy, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.kig|Kig dokumenti (*.kig)" #: filters/asyexporter.cc:59 @@ -419,7 +419,7 @@ #: filters/latexexporter.cc:538 #, fuzzy, kde-format -msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.kig|Kig dokumenti (*.kig)" #: filters/latexexporter.cc:539 @@ -528,7 +528,7 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "" #: filters/svgexporter.cc:60 @@ -557,8 +557,9 @@ msgstr "XFig &datoteka..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig dokumenti (*.fig)" #: filters/xfigexporter.cc:578 @@ -1000,33 +1001,31 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, fuzzy, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Datoteka „%1“ već postoji. Želite li da ga prebrišete?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Prepisati datoteku?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, fuzzy, kde-format msgid "Print Geometry" msgstr "Štampaj geometriju" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, fuzzy, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Pomakni objekt" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, fuzzy, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3276,28 +3275,26 @@ #: modes/typesdialog.cpp:466 #, fuzzy, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig-ovi datoteke vrsta\n" "*|Svi datoteke" #: modes/typesdialog.cpp:482 #, fuzzy, kde-format -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Kig-ovi datoteke vrsta\n" "*|Svi datoteke" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/hu/kig.po kig-18.04.3/po/hu/kig.po --- kig-17.12.3/po/hu/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/hu/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: KDE 4.0\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2014-01-22 21:38+0100\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian \n" @@ -159,8 +159,9 @@ msgstr "&Aszimptota…" #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Aszimptota dokumentumok (*.asy)" #: filters/asyexporter.cc:59 @@ -432,8 +433,9 @@ msgstr "&Latex…" #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Latex dokumentumok (*.tex)" #: filters/latexexporter.cc:539 @@ -553,8 +555,9 @@ msgstr "&SVG…" #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Scalable Vector Graphics (*.svg)" #: filters/svgexporter.cc:60 @@ -583,8 +586,9 @@ msgstr "XFig-fá&jl…" #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig-dokumentumok (*.fig)" #: filters/xfigexporter.cc:578 @@ -1051,37 +1055,38 @@ msgstr "Mentés a Kig formátumában" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kig-dokumentumok (*.kig)\n" "*.kigz|Tömörített Kig-dokumentumok (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "\"%1\" nevű fájl már létezik, felül szeretné írni?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Felülírja a fájlt?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "A geometria kinyomtatása" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "%1 objektum elrejtése" msgstr[1] "%1 objektum elrejtése" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3406,10 +3411,11 @@ msgstr "Típusok exportálása" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig típusleíró fájlok\n" "*|Minden fájl" @@ -3419,19 +3425,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Kig típusleíró fájlok\n" "*|Minden fájl" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/is/kig.po kig-18.04.3/po/is/kig.po --- kig-17.12.3/po/is/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/is/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2010-05-31 11:56+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -160,7 +160,7 @@ #: filters/asyexporter.cc:58 #, fuzzy, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.kig|Kig Skjöl (*.kig)" #: filters/asyexporter.cc:59 @@ -423,7 +423,7 @@ #: filters/latexexporter.cc:538 #, fuzzy, kde-format -msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.kig|Kig Skjöl (*.kig)" #: filters/latexexporter.cc:539 @@ -538,7 +538,7 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "" #: filters/svgexporter.cc:60 @@ -567,8 +567,9 @@ msgstr "&XFig skrá..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig skjöl (*.fig)" #: filters/xfigexporter.cc:578 @@ -1027,34 +1028,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Skráin \"%1\" er þegar til. Viltu skrifa yfir hana?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, fuzzy, kde-format msgid "Overwrite File?" msgstr "Skrifa yfir skrá?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Prenta rúmfræði" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "" msgstr[1] "" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3311,10 +3310,11 @@ msgstr "Flytja inn tegundir" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig Types Files\n" "*|All Files" @@ -3324,19 +3324,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Kig Types Files\n" "*|All Files" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/it/kig.po kig-18.04.3/po/it/kig.po --- kig-17.12.3/po/it/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/it/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2015-08-08 16:10+0200\n" "Last-Translator: Pino Toscano \n" "Language-Team: Italian \n" @@ -166,8 +166,9 @@ msgstr "&Asymptote..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Documenti Asymptote (*.asy)" #: filters/asyexporter.cc:59 @@ -442,8 +443,9 @@ msgstr "&LaTeX..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Documenti LaTeX (*.tex)" #: filters/latexexporter.cc:539 @@ -566,8 +568,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Grafica vettoriale riscalabile (*.svg)" #: filters/svgexporter.cc:60 @@ -598,8 +601,9 @@ msgstr "File di &XFig..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|Documenti XFig (*.fig)" #: filters/xfigexporter.cc:578 @@ -1052,37 +1056,38 @@ msgstr "Salva in formato di Kig" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Documenti Kig (*.kig)\n" "*.kigz|Documenti Kig compressi (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Il file \"%1\" esiste già. Vuoi sovrascriverlo?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Sovrascrivere il file?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Stampa geometria" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Nascondi %1 oggetto" msgstr[1] "Nascondi %1 oggetti" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3415,27 +3420,31 @@ msgstr "Esporta tipi" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|File di tipo di Kig\n" "*|Tutti i file" #: modes/typesdialog.cpp:482 -#, kde-format -msgid "*.kigt|Kig Types Files" +#, fuzzy, kde-format +#| msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "*.kigt|File di tipo di Kig" #: modes/typesdialog.cpp:484 -#, kde-format -msgid "*.ggt|Geogebra Tool Files" +#, fuzzy, kde-format +#| msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "*.ggt|File di strumento di Geogebra" #: modes/typesdialog.cpp:486 -#, kde-format -msgid "*|All Files" +#, fuzzy, kde-format +#| msgid "*|All Files" +msgid "All Files (*)" msgstr "*|Tutti i file" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/ja/kig.po kig-18.04.3/po/ja/kig.po --- kig-17.12.3/po/ja/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/ja/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2010-09-25 18:32-0700\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" @@ -167,7 +167,7 @@ #: filters/asyexporter.cc:58 #, fuzzy, kde-format #| msgid "*.tex|Latex Documents (*.tex)" -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.tex|LaTeX 文書 (*.tex)" #: filters/asyexporter.cc:59 @@ -439,8 +439,9 @@ msgstr "LaTeX(&L)..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|LaTeX 文書 (*.tex)" #: filters/latexexporter.cc:539 @@ -558,8 +559,9 @@ msgstr "SVG(&S)..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|スケーラブルベクターグラフィックス (*.svg)" #: filters/svgexporter.cc:60 @@ -588,8 +590,9 @@ msgstr "XFig ファイル(&X)..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig 文書 (*.fig)" #: filters/xfigexporter.cc:578 @@ -1062,37 +1065,38 @@ msgstr "Kig のフォーマットで保存" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kig 文書 (*.kig)\n" "*.kigz|圧縮された Kig 文書 (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "ファイル ‘%1’ は既に存在します。上書きしますか?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "ファイルを上書きしますか?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "図形を印刷" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "%1 個のオブジェクトを隠す" msgstr[1] "%1 個のオブジェクトを隠す" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3395,10 +3399,11 @@ msgstr "タイプをエクスポート" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig ファイルタイプ\n" "*|すべてのファイル" @@ -3408,19 +3413,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Kig ファイルタイプ\n" "*|すべてのファイル" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/kk/kig.po kig-18.04.3/po/kk/kig.po --- kig-17.12.3/po/kk/kig.po 2018-03-06 00:10:49.000000000 +0000 +++ kig-18.04.3/po/kk/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2013-06-28 05:43+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -157,8 +157,9 @@ msgstr " " #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Asymptote құжаттары (*.asy)" #: filters/asyexporter.cc:59 @@ -418,8 +419,9 @@ msgstr "&Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Latex құжаттары (*.tex)" #: filters/latexexporter.cc:539 @@ -536,8 +538,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Scalable Vector Graphics (*.svg)" #: filters/svgexporter.cc:60 @@ -566,8 +569,9 @@ msgstr "&XFig файлы..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig құжаттары (*.fig)" #: filters/xfigexporter.cc:578 @@ -1029,36 +1033,37 @@ msgstr "Kig пішімінде сақтау" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kig құжаттары (*.kig)\n" "*.kigz|Сығылған Kig құжаттары (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "\"%1\" деген файл бар екен. Үстінен жаза бермексіз бе?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Файл үстінен жазбақсыз ба?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Басып шығару" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "%1 нысанды жасыру" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3358,10 +3363,11 @@ msgstr "Түрлерін экспорттау" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig түрлер файлдары\n" "*|Бүкіл файлдар" @@ -3371,19 +3377,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Kig түрлер файлдары\n" "*|Бүкіл файлдар" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/km/kig.po kig-18.04.3/po/km/kig.po --- kig-17.12.3/po/km/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/km/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2012-07-16 11:37+0700\n" "Last-Translator: Sok Sophea \n" "Language-Team: Khmer <>\n" @@ -161,8 +161,9 @@ msgstr "អាស៊ីមតូត" #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "ឯកសារ *.asy|Asymptote (*.asy)" #: filters/asyexporter.cc:59 @@ -418,8 +419,9 @@ msgstr "Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "ឯកសារ *.tex|Latex (*.tex)" #: filters/latexexporter.cc:539 @@ -535,8 +537,9 @@ msgstr "SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg| ក្រាហិក​វ៉ិចទ័រ​ដែល​អាច​ធ្វើ​មាត្រដ្ឋាន (*.svg)" #: filters/svgexporter.cc:60 @@ -565,8 +568,9 @@ msgstr "ឯកសារ XFig..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "ឯកសារ *.fig|XFig (*.fig)" #: filters/xfigexporter.cc:578 @@ -1025,36 +1029,37 @@ msgstr "រក្សា​ទ្រង់ទ្រាយ​របស់​​ Kig" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "ឯកសារ *.kig|Kig (*.kig)\n" "ឯកសារ *.kigz|Compressed Kig (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "ឯកសារ​ \"%1\" មានរួចហើយ​ ។ តើ​អ្នក​ពិតជាចង់​សរសេរពីលើ​ឬ​?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "សរសេរ​ជាន់​លើ​ឯកសារឬ?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "បោះពុម្ព​ធរណីមាត្រ" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "លាក់វត្ថុ​ %1" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3317,10 +3322,11 @@ msgstr "នាំ​ចេញ​ប្រភេទ" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "ប្រភេទ​ឯកសារ *.kigt|Kig \n" "ឯកសារ *|All" @@ -3330,19 +3336,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "ប្រភេទ​ឯកសារ *.kigt|Kig \n" "ឯកសារ *|All" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/lt/kig.po kig-18.04.3/po/lt/kig.po --- kig-17.12.3/po/lt/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/lt/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2015-12-30 18:09+0200\n" "Last-Translator: Mindaugas Baranauskas \n" "Language-Team: lt \n" @@ -171,7 +171,7 @@ #: filters/asyexporter.cc:58 #, fuzzy, kde-format #| msgid "*.tex|Latex Documents (*.tex)" -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.tex|Latex dokumentai (*.tex)" #: filters/asyexporter.cc:59 @@ -438,8 +438,9 @@ msgstr "&Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Latex dokumentai (*.tex)" #: filters/latexexporter.cc:539 @@ -564,8 +565,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Scalable Vector Graphics (*.svg)" #: filters/svgexporter.cc:60 @@ -594,8 +596,9 @@ msgstr "&XFig failą..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig dokumentai (*.fig)" #: filters/xfigexporter.cc:578 @@ -1072,30 +1075,31 @@ msgstr "Įrašyti Kig formatu" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kig dokumentai (*.kig)\n" "*.kigz|Suspausti Kig dokumentai (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Failas pavadinimu „%1“ jau egzistuoja. Perrašyti failą?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Perrašyti failą?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Spausdinti geometriją" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" @@ -1104,7 +1108,7 @@ msgstr[2] "Slėpti %1 objektų" msgstr[3] "Slėpti %1 objektą" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3476,10 +3480,11 @@ msgstr "Eksportuoti tipus" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig tipo failai\n" "*|Visi failai" @@ -3489,19 +3494,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Kig tipo failai\n" "*|Visi failai" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/lv/kig.po kig-18.04.3/po/lv/kig.po --- kig-17.12.3/po/lv/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/lv/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2012-06-24 18:40+0300\n" "Last-Translator: Einars Sprugis \n" "Language-Team: Latvian \n" @@ -164,8 +164,9 @@ msgstr "&Asymptote..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Asymptote dokumenti (*.asy)" #: filters/asyexporter.cc:59 @@ -426,8 +427,9 @@ msgstr "&Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Latex dokumenti (*.tex)" #: filters/latexexporter.cc:539 @@ -547,8 +549,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Mērogojamo vektoru grafika (*.svg)" #: filters/svgexporter.cc:60 @@ -577,8 +580,9 @@ msgstr "&XFig fails..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig dokumenti (*.fig)" #: filters/xfigexporter.cc:578 @@ -1049,30 +1053,31 @@ msgstr "Saglabāt Kig formātā" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kig dokumenti (*.kig)\n" "*.kigz|Kompresēti Kig dokumenti (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Fails \"%1\" jau pastāv. Vai vēlaties to pārrakstīt?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Pārrakstīt failu?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Drukāt ģeometriju" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" @@ -1080,7 +1085,7 @@ msgstr[1] "Paslēpt %1 objektus" msgstr[2] "Paslēpt %1 objektus" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3403,10 +3408,11 @@ msgstr "Eksportēt tipus" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig tipu faili\n" "*|Visi faili" @@ -3416,19 +3422,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Kig tipu faili\n" "*|Visi faili" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/mr/kig.po kig-18.04.3/po/mr/kig.po --- kig-17.12.3/po/mr/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/mr/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2013-03-28 14:37+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" @@ -157,7 +157,7 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "" #: filters/asyexporter.cc:59 @@ -404,7 +404,7 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "" #: filters/latexexporter.cc:539 @@ -511,7 +511,7 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "" #: filters/svgexporter.cc:60 @@ -541,7 +541,7 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "" #: filters/xfigexporter.cc:578 @@ -970,34 +970,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, fuzzy, kde-format msgid "Overwrite File?" msgstr "फाईल खोडून पुन्हा लिहायची?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "" msgstr[1] "" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3222,24 +3220,22 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/nb/kig.po kig-18.04.3/po/nb/kig.po --- kig-17.12.3/po/nb/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/nb/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2013-04-08 21:55+0200\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -165,8 +165,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|Asymptote-dokumenter (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "" #: filters/asyexporter.cc:59 #, kde-format @@ -430,8 +430,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|LaTeX-dokumenter (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "" #: filters/latexexporter.cc:539 #, kde-format @@ -550,8 +550,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "" #: filters/svgexporter.cc:60 #, kde-format @@ -580,8 +580,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|XFig-dokumenter (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "" #: filters/xfigexporter.cc:578 #, kde-format @@ -1022,36 +1022,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" -"*.kig|Kig-dokumenter (*.kig)\n" -"*.kigz|Komprimerte Kig-dokumenter (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Fila «%1» finnes fra før. Vil du skrive over den?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Skrive over fil?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Skriv ut geometri" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Skjul %1 objekt" msgstr[1] "Skjul %1 objekter" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3359,27 +3355,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" -"*.kigt|Kig typefiler\n" -"*|Alle filer" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Alle filer" +msgid "All Files (*)" +msgstr "Alle filer (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/nds/kig.po kig-18.04.3/po/nds/kig.po --- kig-17.12.3/po/nds/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/nds/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2014-06-20 16:55+0200\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -162,8 +162,9 @@ msgstr "&Asymptote…" #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Asymptote-Dokmenten (*.asy)" #: filters/asyexporter.cc:59 @@ -434,8 +435,9 @@ msgstr "&Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Latex-Dokmenten (*.tex)" #: filters/latexexporter.cc:539 @@ -556,8 +558,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Skaleerbor Vektorgrafiken (*.svg)" #: filters/svgexporter.cc:60 @@ -586,8 +589,9 @@ msgstr "&XFig-Datei..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig-Dokmenten (*.fig)" #: filters/xfigexporter.cc:578 @@ -1056,37 +1060,38 @@ msgstr "In Kig-Formaat sekern" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kig-Dokmenten (*.kig)\n" "*.kigz|Komprimeert Kig-Dokmenten (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "De Datei \"%1\" gifft dat al. Wullt Du ehr överschrieven?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Datei överschrieven?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Druckgrött" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "%1 Objekt versteken" msgstr[1] "%1 Objekten versteken" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3409,10 +3414,11 @@ msgstr "Typen exporteren" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig-Typdateien\n" "*|All Dateien" @@ -3422,19 +3428,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Kig-Typdateien\n" "*|All Dateien" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/nl/kig.po kig-18.04.3/po/nl/kig.po --- kig-17.12.3/po/nl/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/nl/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -12,13 +12,13 @@ # Rinse de Vries , 2004, 2005, 2007. # Bram Schoenmakers , 2005, 2006. # Jaap Woldringh , 2008, 2009, 2010, 2013, 2014. -# Freek de Kruijf , 2010, 2011, 2012, 2014, 2015, 2016, 2017. +# Freek de Kruijf , 2010, 2011, 2012, 2014, 2015, 2016, 2017, 2018. msgid "" msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2017-01-02 21:09+0100\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-03-07 14:51+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -31,12 +31,13 @@ #, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Dominique Devriese,Rinse de Vries,Jaap Woldringh,Tom Albers" +msgstr "" +"Dominique Devriese,Rinse de Vries,Jaap Woldringh,Tom Albers,Freek de Kruijf" #, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "devriese@kde.org,rinse@kde.nl,,tomalbers@kde.nl" +msgstr "devriese@kde.org,rinse@kde.nl,,tomalbers@kde.nl,freekdekruijf@kde.nl" #, kde-format msgid "Circle by Center && Line" @@ -178,8 +179,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|Asymptoot-documenten (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "Asymptoot-documenten (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -452,8 +453,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|Latex documenten (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "Latex documenten (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -577,8 +578,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "Scalable Vector Graphics (*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -607,8 +608,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|XFig-documenten (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "XFig-documenten (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -1068,36 +1069,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Kig Documenten (*.kig)\n" -"*.kigz|Gecomprimeerde Kig Documenten (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Kig documenten (*.kig);;Gecomprimeerde Kig documenten (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Het bestand \"%1\" bestaat reeds. Wilt u het overschrijven?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Bestand overschrijven?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Afdrukafmetingen" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "%1 object verbergen" msgstr[1] "%1 objecten verbergen" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3434,27 +3431,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Kig-typen-bestanden\n" -"*|Alle bestanden" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Kig-typen-bestanden (*.kigt);;Alle bestanden (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "*.kigt|Kig-typen-bestanden" +msgid "Kig Types Files (*.kigt)" +msgstr "Kig-typen-bestanden (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "*.ggt|Geogebra Tool-bestanden" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Geogebra Tool-bestanden (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Alle bestanden" +msgid "All Files (*)" +msgstr "Alle bestanden (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/nn/kig.po kig-18.04.3/po/nn/kig.po --- kig-17.12.3/po/nn/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/nn/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2015-12-07 21:12+0100\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" @@ -164,7 +164,7 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "" #: filters/asyexporter.cc:59 @@ -428,8 +428,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|LaTeX-dokumente(*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "" #: filters/latexexporter.cc:539 #, kde-format @@ -549,8 +549,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "" #: filters/svgexporter.cc:60 #, kde-format @@ -579,8 +579,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|XFig-dokument (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "" #: filters/xfigexporter.cc:578 #, kde-format @@ -1022,36 +1022,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" -"*.kig|Kig-dokument (*.kig)\n" -"*.kigz|Komprimerte Kig-dokument (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Fila «%1» finst frå før. Vil du skriva over henne?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Skriva over fil?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Skriv ut geometri" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Gøym %1 objekt" msgstr[1] "Gøym %1 objekt" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3354,27 +3350,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" -"*.kigt|Kig typefiler\n" -"*|Alle filer" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Alle filer" +msgid "All Files (*)" +msgstr "Alle filer (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/pa/kig.po kig-18.04.3/po/pa/kig.po --- kig-17.12.3/po/pa/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/pa/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2007-11-20 06:43+0530\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi \n" @@ -160,7 +160,7 @@ #: filters/asyexporter.cc:58 #, fuzzy, kde-format #| msgid "*.tex|Latex Documents (*.tex)" -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.tex|Latex ਦਸਤਾਵੇਜ਼ (*.tex)" #: filters/asyexporter.cc:59 @@ -407,8 +407,9 @@ msgstr "&Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Latex ਦਸਤਾਵੇਜ਼ (*.tex)" #: filters/latexexporter.cc:539 @@ -516,7 +517,7 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "" #: filters/svgexporter.cc:60 @@ -545,8 +546,9 @@ msgstr "&XFig ਫਾਇਲ..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig ਦਸਤਾਵੇਜ਼ (*.fig)" #: filters/xfigexporter.cc:578 @@ -983,34 +985,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "ਫਾਇਲ \"%1\" ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ। ਕੀ ਤੁਸੀਂ ਇਸ ਉੱਪਰ ਹੀ ਲਿਖਣਾ ਚਾਹੁੰਦੇ ਹੋ?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "ਉੱਪਰ ਲਿਖੋ?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "ਰਚਨਾ ਛਾਪੋ" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "ਇਕਾਈ %1 ਲੁਕਵੀਂ" msgstr[1] "%1 ਇਕਾਈਆਂ ਲੁਕਵੀਆਂ" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3255,10 +3255,11 @@ msgstr "ਕਿਸਮ ਨਿਰਯਾਤ" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig ਕਿਸਮ ਫਾਇਲਾਂ\n" "*|ਸਭ ਫਾਇਲਾਂ" @@ -3268,19 +3269,19 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Kig ਕਿਸਮ ਫਾਇਲਾਂ\n" "*|ਸਭ ਫਾਇਲਾਂ" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/pl/kig.po kig-18.04.3/po/pl/kig.po --- kig-17.12.3/po/pl/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/pl/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -5,13 +5,13 @@ # Marta Rybczyńska , 2007, 2008, 2010. # Maciej Wikło , 2009. # Marcin Floryan , 2010. -# Łukasz Wojniłowicz , 2011, 2012, 2013, 2014, 2015, 2016, 2017. +# Łukasz Wojniłowicz , 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018. msgid "" msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2017-03-04 06:24+0100\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-05-01 06:21+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" "Language: pl\n" @@ -168,8 +168,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|Dokumenty Asymptote (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "Dokumenty Asymptote (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -430,8 +430,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|Dokumenty Latex (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "Dokumenty Latex (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -551,8 +551,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "Skalowalna grafika wektorowa (*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -581,8 +581,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|Dokumenty XFig (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "Dokumenty XFig (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -1042,29 +1042,25 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Dokumenty Kig (*.kig)\n" -"*.kigz|Skompresowane Dokumenty Kig (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Dokumenty Kig (*kig);;Skompresowane Dokumenty Kig (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Plik \"%1\" już istnieje. Czy chcesz go nadpisać?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Nadpisać plik?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Drukuj geometrię" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" @@ -1072,7 +1068,7 @@ msgstr[1] "Ukryj %1 obiekty" msgstr[2] "Ukryj %1 obiektów" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3405,27 +3401,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Pliki z definicją typów obiektów Kig\n" -"*|Wszystkie pliki" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Pliki Kig (*.kigt);;Wszystkie pliki(*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "*.kigt|Pliki typów Kig" +msgid "Kig Types Files (*.kigt)" +msgstr "Pliki Kig (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "*.ggt|Pliki narzędzia Geogebra" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Pliki narzędzia Geogebra (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Wszystkie pliki" +msgid "All Files (*)" +msgstr "Wszystkie pliki (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/pt/kig.po kig-18.04.3/po/pt/kig.po --- kig-17.12.3/po/pt/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/pt/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -2,8 +2,8 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2015-07-02 12:13+0100\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-03-08 11:36+0000\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" "Language: pt\n" @@ -24,7 +24,7 @@ "X-POFile-SpellExtra: PolygonSide Eric def hideobjects cnovo cos Gatti\n" "X-POFile-SpellExtra: Francesca Bézier bézier Gajdos Petr PGF Tikz\n" "X-POFile-SpellExtra: PSTricks Raoul Asymptote asymptote Bourquin feedback\n" -"X-POFile-SpellExtra: Semi org Narvaez Geogebra ggt\n" +"X-POFile-SpellExtra: Semi org Narvaez Geogebra ggt asy\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -174,8 +174,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.tex|Documentos do Asymptote (*.tex)" +msgid "Asymptote Documents (*.asy)" +msgstr "Documentos do Asymptote (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -447,8 +447,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|Documentos Latex (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "Documentos de Latex (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -572,8 +572,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "Gráficos Vectoriais Escaláveis (*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -602,8 +602,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|Documentos XFig (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "Documentos do XFig (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -1058,36 +1058,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Documentos do Kig (*.kig)\n" -"*.kigz|Documentos Comprimidos do Kig (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Documentos do Kig (*.kig);;Documentos Comprimidos do Kig (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "O ficheiro \"%1\" já existe. Deseja sobrepô-lo?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Sobrepor o Ficheiro?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Imprimir a Geometria" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Esconder o %1 Objecto" msgstr[1] "Esconder os %1 Objectos" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3422,27 +3418,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Ficheiros de Tipos do Kig\n" -"*|Todos os Ficheiros" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Ficheiros de Tipos do Kig (*.kigt);;Todos os Ficheiros (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "*.kigt|Ficheiros de Tipos do Kig" +msgid "Kig Types Files (*.kigt)" +msgstr "Ficheiros de Tipos do Kig (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "*.ggt|Ficheiros de Ferramentas do Geogebra" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Ficheiros de Ferramentas do Geogebra (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Todos os Ficheiros" +msgid "All Files (*)" +msgstr "Todos os Ficheiros (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/pt_BR/kig.po kig-18.04.3/po/pt_BR/kig.po --- kig-17.12.3/po/pt_BR/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/pt_BR/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2015-07-02 08:20-0300\n" "Last-Translator: André Marcelo Alvarenga \n" "Language-Team: Brazilian Portuguese \n" @@ -175,8 +175,9 @@ msgstr "&Asymptote..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Documentos Asymptote (*.asy)" #: filters/asyexporter.cc:59 @@ -447,8 +448,9 @@ msgstr "Late&x..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Documentos Latex (*.tex)" #: filters/latexexporter.cc:539 @@ -570,8 +572,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Gráficos de vetor escaláveis (*.svg)" #: filters/svgexporter.cc:60 @@ -602,8 +605,9 @@ msgstr "&Arquivo XFig..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|Documentos XFig (*.fig)" #: filters/xfigexporter.cc:578 @@ -1059,37 +1063,38 @@ msgstr "Formato Kig a salvar" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Documentos do Kig (*.kig)\n" "*.kigz|Documentos do Kig comprimidos (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "O arquivo \"%1\" já existe. Deseja sobrescrevê-lo?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Sobrescrever o arquivo?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Imprimir geometria" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Ocultar %1 objeto" msgstr[1] "Ocultar %1 objetos" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3428,27 +3433,31 @@ msgstr "Exportar tipos" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Arquivos de tipos do Kig\n" "*|Todos os arquivos" #: modes/typesdialog.cpp:482 -#, kde-format -msgid "*.kigt|Kig Types Files" +#, fuzzy, kde-format +#| msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "*.kigt|Arquivos de tipos do Kig" #: modes/typesdialog.cpp:484 -#, kde-format -msgid "*.ggt|Geogebra Tool Files" +#, fuzzy, kde-format +#| msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "*.ggt|Arquivos de ferramenta do Geogebra" #: modes/typesdialog.cpp:486 -#, kde-format -msgid "*|All Files" +#, fuzzy, kde-format +#| msgid "*|All Files" +msgid "All Files (*)" msgstr "*|Todos os arquivos" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/ro/kig.po kig-18.04.3/po/ro/kig.po --- kig-17.12.3/po/ro/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/ro/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: @PACKAGE\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2012-12-22 11:56+0200\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -162,7 +162,7 @@ #: filters/asyexporter.cc:58 #, fuzzy, kde-format #| msgid "*.tex|Latex Documents (*.tex)" -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.tex|Documente Latex (*.tex)" #: filters/asyexporter.cc:59 @@ -410,8 +410,9 @@ msgstr "&Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Documente Latex (*.tex)" #: filters/latexexporter.cc:539 @@ -519,7 +520,7 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "" #: filters/svgexporter.cc:60 @@ -548,8 +549,9 @@ msgstr "Fișier &XFig..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|Documente XFig (*.fig)" #: filters/xfigexporter.cc:578 @@ -982,27 +984,25 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Fișierul „%1” există deja. Doriți să îl suprascrieți?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Suprascrieți fișierul?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" @@ -1010,7 +1010,7 @@ msgstr[1] "" msgstr[2] "" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3265,24 +3265,22 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/ru/kig.po kig-18.04.3/po/ru/kig.po --- kig-17.12.3/po/ru/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/ru/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2017-11-13 22:12+0300\n" "Last-Translator: Alexander Potashev \n" "Language-Team: Russian \n" @@ -164,8 +164,9 @@ msgstr "&Asymptote..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Документы asymptote (*.asy)" #: filters/asyexporter.cc:59 @@ -431,8 +432,9 @@ msgstr "&LaTeX..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Документы LaTeX (*.tex)" #: filters/latexexporter.cc:539 @@ -554,8 +556,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Векторные изображения SVG (*.svg)" #: filters/svgexporter.cc:60 @@ -584,8 +587,9 @@ msgstr "&Файл XFig..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|Документы XFig (*.fig)" #: filters/xfigexporter.cc:578 @@ -1039,30 +1043,31 @@ msgstr "Сохранение в формате Kig" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Документы Kig (*.kig)\n" "*.kigz|Сжатые Документы Kig (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Файл «%1» уже существует. Вы хотите его заменить?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Перезаписать файл?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Печать" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" @@ -1071,7 +1076,7 @@ msgstr[2] "Скрыть %1 объектов" msgstr[3] "Скрыть объект" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3370,10 +3375,11 @@ msgstr "Экспорт типов" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Файлы типов Kig (*.kigt)\n" "*|Все файлы" @@ -3383,19 +3389,20 @@ #| msgid "" #| "*.kigt|Kig Types Files\n" #| "*|All Files" -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" "*.kigt|Файлы типов Kig (*.kigt)\n" "*|Все файлы" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 -#, kde-format -msgid "*|All Files" +#, fuzzy, kde-format +#| msgid "*|All Files" +msgid "All Files (*)" msgstr "Все файлы (*)" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/sk/kig.po kig-18.04.3/po/sk/kig.po --- kig-17.12.3/po/sk/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/sk/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2015-07-13 13:47+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" @@ -158,8 +158,9 @@ msgstr "Asymptota..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Dokumenty asymptoty (*.asy)" #: filters/asyexporter.cc:59 @@ -422,8 +423,9 @@ msgstr "&LaTeX..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|LaTeX dokumenty (*.tex)" #: filters/latexexporter.cc:539 @@ -542,8 +544,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Scalable vector graphics (*.svg)" #: filters/svgexporter.cc:60 @@ -572,8 +575,9 @@ msgstr "&XFig súbor..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig dokumenty (*.fig)" #: filters/xfigexporter.cc:578 @@ -1023,30 +1027,31 @@ msgstr "Uložiť Kig Formát" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kig dokumenty (*.kig)\n" "*.kigz|komprimované Kig dokumenty (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Súbor \"%1\" už existuje. Chcete ho prepísať?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Prepísať súbor?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Geometria tlače" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" @@ -1054,7 +1059,7 @@ msgstr[1] "Skryť %1 objekty" msgstr[2] "Skryť %1 objektov" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3353,27 +3358,31 @@ msgstr "Exportovať typy" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig súbory typov\n" "*|Všetky súbory" #: modes/typesdialog.cpp:482 -#, kde-format -msgid "*.kigt|Kig Types Files" +#, fuzzy, kde-format +#| msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "*.kigt|Súbory typu Kig" #: modes/typesdialog.cpp:484 -#, kde-format -msgid "*.ggt|Geogebra Tool Files" +#, fuzzy, kde-format +#| msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "*.ggt|Súbory nástroja Geogebra" #: modes/typesdialog.cpp:486 -#, kde-format -msgid "*|All Files" +#, fuzzy, kde-format +#| msgid "*|All Files" +msgid "All Files (*)" msgstr "*|Všetky súbory" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/sl/kig.po kig-18.04.3/po/sl/kig.po --- kig-17.12.3/po/sl/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/sl/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -1,7 +1,7 @@ # translation of kig.po to Slovenian # Translation of kig.po to Slovenian # Copyright (C) 2003,2004, 2006 Free Software Foundation, Inc. -# $Id: kig.po 1501482 2017-10-24 02:54:44Z scripty $ +# $Id: kig.po 1511922 2018-03-07 04:03:04Z scripty $ # $Source$ # # Jure Repinc , 2003, 2004, 2006. @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2016-07-12 17:05+0200\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" @@ -164,8 +164,9 @@ msgstr "&Asymptote ..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Dokumenti Asymptote (*.asy)" #: filters/asyexporter.cc:59 @@ -428,8 +429,9 @@ msgstr "&LaTeX ..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Dokumenti Latex (*.tex)" #: filters/latexexporter.cc:539 @@ -548,8 +550,9 @@ msgstr "&SVG ..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Raztegljiva vektorska grafika (*.svg)" #: filters/svgexporter.cc:60 @@ -578,8 +581,9 @@ msgstr "Datoteka &XFig ..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|Dokumenti XFig (*.fig)" #: filters/xfigexporter.cc:578 @@ -1036,30 +1040,31 @@ msgstr "Shrani kot vrsto Kig" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Dokumenti Kig (*.kig)\n" "*.kigz|Stisnjeni dokumenti Kig (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Datoteka \"%1\" že obstaja. Ali jo želite prepisati?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Prepišem datoteko?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Natisni geometrijo" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" @@ -1068,7 +1073,7 @@ msgstr[2] "Skrij %1 predmeta" msgstr[3] "Skrij %1 predmete" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3376,27 +3381,31 @@ msgstr "Izvozi vrste" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Datoteke vrste Kig\n" "*|Vse datoteke" #: modes/typesdialog.cpp:482 -#, kde-format -msgid "*.kigt|Kig Types Files" +#, fuzzy, kde-format +#| msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "*.kigt|Datoteke vrste Kig" #: modes/typesdialog.cpp:484 -#, kde-format -msgid "*.ggt|Geogebra Tool Files" +#, fuzzy, kde-format +#| msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "*.ggt|Datoteke orodja Geogebra" #: modes/typesdialog.cpp:486 -#, kde-format -msgid "*|All Files" +#, fuzzy, kde-format +#| msgid "*|All Files" +msgid "All Files (*)" msgstr "*|Vse datoteke" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/sv/kig.po kig-18.04.3/po/sv/kig.po --- kig-17.12.3/po/sv/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/sv/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -2,20 +2,20 @@ # Copyright (C). # # Stefan Asserhäll , 2004, 2005, 2006, 2007, 2008, 2009, 2010. -# Stefan Asserhall , 2010, 2011, 2012, 2013, 2014, 2015. +# Stefan Asserhall , 2010, 2011, 2012, 2013, 2014, 2015, 2018. msgid "" msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2015-07-02 15:54+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-03-08 21:37+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #, kde-format @@ -161,8 +161,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asv|Asymptote-dokument (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "Asymptote-dokument (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -432,8 +432,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|Latex-dokument (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "Latex-dokument (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -553,8 +553,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Skalbar vektorgrafik (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "Skalbar vektorgrafik (*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -583,8 +583,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|Xfig-dokument (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "Xfig-dokument (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -1037,36 +1037,32 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Kig-dokument (*.kig)\n" -"*.kigz|Komprimerade Kig-dokument (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Kig-dokument (*.kig);;Komprimerade Kig-dokument (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Filen \"%1\" finns redan. Vill du skriva över den?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Skriv över fil?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Skriv ut geometri" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "Dölj %1 objekt" msgstr[1] "Dölj %1 objekt" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3377,27 +3373,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Kig-typfiler\n" -"*|Alla filer" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Kig-typfiler (*.kigt);;Alla filer (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "*.kigt|Kig-typfiler" +msgid "Kig Types Files (*.kigt)" +msgstr "Kig-typfiler (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "*.ggt|Geogebra-verktygsfiler" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Geogebra-verktygsfiler (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|Alla filer" +msgid "All Files (*)" +msgstr "Alla filer (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/tr/kig.po kig-18.04.3/po/tr/kig.po --- kig-17.12.3/po/tr/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/tr/kig.po 2018-07-10 00:05:08.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2017-06-09 14:24+0100\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish \n" @@ -171,8 +171,9 @@ msgstr "&Asimptot..." #: filters/asyexporter.cc:58 -#, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +#, fuzzy, kde-format +#| msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "*.asy|Asimptot Belgeleri (*.asy)" #: filters/asyexporter.cc:59 @@ -432,8 +433,9 @@ msgstr "&Latex..." #: filters/latexexporter.cc:538 -#, kde-format -msgid "*.tex|Latex Documents (*.tex)" +#, fuzzy, kde-format +#| msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "*.tex|Latex Belgeleri (*.tex)" #: filters/latexexporter.cc:539 @@ -554,8 +556,9 @@ msgstr "&SVG..." #: filters/svgexporter.cc:59 -#, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +#, fuzzy, kde-format +#| msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "*.svg|Ölçeklenebilir Vektör Grafikleri (*.svg)" #: filters/svgexporter.cc:60 @@ -584,8 +587,9 @@ msgstr "&XFig Dosyası..." #: filters/xfigexporter.cc:577 -#, kde-format -msgid "*.fig|XFig Documents (*.fig)" +#, fuzzy, kde-format +#| msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "*.fig|XFig Belgeleri (*.fig)" #: filters/xfigexporter.cc:578 @@ -1034,37 +1038,38 @@ msgstr "Kig Biçimini Kaydet" #: kig/kig_part.cpp:726 -#, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +#, fuzzy, kde-format +#| msgid "" +#| "*.kig|Kig Documents (*.kig)\n" +#| "*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" "*.kig|Kig Belgeleri (*.kig)\n" "*.kigz|Sıkıştırılmış Kig Belgeleri (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "\"%1\" dosyası mevcut. Üzerine yazmak ister misiniz?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Dosyanın üstüne yazılsın mı?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Yazdırma Boyutları" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "%1 Nesneyi Gizle" msgstr[1] "%1 Nesneyi Gizle" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3375,27 +3380,31 @@ msgstr "Türleri Aktar" #: modes/typesdialog.cpp:466 -#, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +#, fuzzy, kde-format +#| msgid "" +#| "*.kigt|Kig Types Files\n" +#| "*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" "*.kigt|Kig Dosyaları\n" "*|Tüm Dosyalar" #: modes/typesdialog.cpp:482 -#, kde-format -msgid "*.kigt|Kig Types Files" +#, fuzzy, kde-format +#| msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "*.kigt|Kig Tür Dosyaları" #: modes/typesdialog.cpp:484 -#, kde-format -msgid "*.ggt|Geogebra Tool Files" +#, fuzzy, kde-format +#| msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "*.ggt|Geogebra Araç Dosyaları" #: modes/typesdialog.cpp:486 -#, kde-format -msgid "*|All Files" +#, fuzzy, kde-format +#| msgid "*|All Files" +msgid "All Files (*)" msgstr "*|Tüm Dosyalar" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/ug/kig.po kig-18.04.3/po/ug/kig.po --- kig-17.12.3/po/ug/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/ug/kig.po 2018-07-10 00:05:09.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur Computer Science Association \n" @@ -157,7 +157,7 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" +msgid "Asymptote Documents (*.asy)" msgstr "" #: filters/asyexporter.cc:59 @@ -404,7 +404,7 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" +msgid "Latex Documents (*.tex)" msgstr "" #: filters/latexexporter.cc:539 @@ -511,7 +511,7 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" msgstr "" #: filters/svgexporter.cc:60 @@ -541,7 +541,7 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" +msgid "XFig Documents (*.fig)" msgstr "" #: filters/xfigexporter.cc:578 @@ -968,33 +968,31 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" msgstr "" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "ھۆججەت «%1» مەۋجۇت. قاپلامسىز؟" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "ھۆججەت قاپلامسىز؟" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3220,24 +3218,22 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" +msgid "Kig Types Files (*.kigt);;All Files (*)" msgstr "" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" +msgid "Kig Types Files (*.kigt)" msgstr "" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" +msgid "Geogebra Tool Files (*.ggt)" msgstr "" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" +msgid "All Files (*)" msgstr "" #: modes/typesdialog.cpp:487 diff -Nru kig-17.12.3/po/uk/kig.po kig-18.04.3/po/uk/kig.po --- kig-17.12.3/po/uk/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/uk/kig.po 2018-07-10 00:05:09.000000000 +0000 @@ -1,16 +1,16 @@ # Translation of kig.po to Ukrainian -# Copyright (C) 2007-2015 This_file_is_part_of_KDE +# Copyright (C) 2007-2018 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # -# Yuri Chornoivan , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015. +# Yuri Chornoivan , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2018. # Ivan Petrouchtchak , 2007. msgid "" msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2015-07-02 22:17+0300\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-03-07 07:05+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -19,7 +19,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -161,8 +161,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|документи Asymptote (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "документи Asymptote (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -422,8 +422,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|Документи Latex (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "документи Latex (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -543,8 +543,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|Масштабовна векторна графіка (*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "масштабовна векторна графіка (*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -573,8 +573,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|Документи XFig (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "документи XFig (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -1034,29 +1034,25 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Документи Kig (*.kig)\n" -"*.kigz|Стиснуті документи Kig (*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "документи Kig (*.kig);;стиснуті документи Kig (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "Файл «%1» вже існує. Бажаєте його перезаписати?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "Перезаписати файл?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "Друк" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" @@ -1065,7 +1061,7 @@ msgstr[2] "приховування %1 об’єктів" msgstr[3] "приховування об’єкта" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3162,7 +3158,7 @@ #: modes/popup/builtinobjectactionsprovider.cc:55 #, kde-format msgid "Dark Red" -msgstr "Темночервоний" +msgstr "Темно-червоний" #: modes/popup/builtinobjectactionsprovider.cc:79 #, kde-format @@ -3392,27 +3388,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Файли типів Kig\n" -"*|Всі файли" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "файли типів Kig (*.kigt);;усі файли (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "*.kigt|файли типів Kig" +msgid "Kig Types Files (*.kigt)" +msgstr "файли типів Kig (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "*.ggt|файли інструментів Geogebra" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "файли інструментів Geogebra (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|усі файли" +msgid "All Files (*)" +msgstr "усі файли (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/zh_CN/kfile_drgeo.po kig-18.04.3/po/zh_CN/kfile_drgeo.po --- kig-17.12.3/po/zh_CN/kfile_drgeo.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/zh_CN/kfile_drgeo.po 2018-07-10 00:05:09.000000000 +0000 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-19 20:13+0100\n" -"PO-Revision-Date: 2018-02-28 02:29-0500\n" +"PO-Revision-Date: 2018-07-03 17:42\n" "Last-Translator: guoyunhebrave \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -Nru kig-17.12.3/po/zh_CN/kfile_kig.po kig-18.04.3/po/zh_CN/kfile_kig.po --- kig-17.12.3/po/zh_CN/kfile_kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/zh_CN/kfile_kig.po 2018-07-10 00:05:09.000000000 +0000 @@ -8,7 +8,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2016-11-19 20:13+0100\n" -"PO-Revision-Date: 2018-02-28 02:29-0500\n" +"PO-Revision-Date: 2018-07-03 17:42\n" "Last-Translator: guoyunhebrave \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -Nru kig-17.12.3/po/zh_CN/kig.po kig-18.04.3/po/zh_CN/kig.po --- kig-17.12.3/po/zh_CN/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/zh_CN/kig.po 2018-07-10 00:05:09.000000000 +0000 @@ -11,8 +11,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2018-02-28 02:29-0500\n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-07-03 17:42\n" "Last-Translator: guoyunhebrave \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -165,8 +165,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|Asymptote 文档(*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "渐近线文档 (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -416,8 +416,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|Latex 文档(*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "Latex 文档 (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -533,8 +533,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|可缩放矢量图形(*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "可缩放矢量图形 (*. svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -563,8 +563,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|XFig 文档 (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "XFig 文件 (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -999,35 +999,31 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Kig 文档(*.kig)\n" -"*.kigz|压缩的 Kig 文档(*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Kig 文档 (*.kig);;压缩的 Kig 文档 (*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "文件“%1”已经存在。是否覆盖?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "覆盖文件吗?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "打印几何" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "隐藏 %1 个对象" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -1086,7 +1082,7 @@ #: kig/kigpartui.rc:27 #, kde-format msgid "&View" -msgstr "查看(&V)" +msgstr "视图(&V)" #. i18n: ectx: Menu (objects) #: kig/kigpartui.rc:35 @@ -3274,29 +3270,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Kig 类型文件\n" -"*|全部文件" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Kig 类型文件 (*. kigt);;所有文件 (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "" -"*.kigt|Kig 类型文件\n" -"*|全部文件" +msgid "Kig Types Files (*.kigt)" +msgstr "Kig 类型文件 (*. kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Geogebra 工具文件 (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|全部文件" +msgid "All Files (*)" +msgstr "所有文件 (*)" #: modes/typesdialog.cpp:487 #, kde-format diff -Nru kig-17.12.3/po/zh_TW/kig.po kig-18.04.3/po/zh_TW/kig.po --- kig-17.12.3/po/zh_TW/kig.po 2018-03-06 00:10:50.000000000 +0000 +++ kig-18.04.3/po/zh_TW/kig.po 2018-07-10 00:05:09.000000000 +0000 @@ -9,14 +9,15 @@ # Franklin Weng , 2010, 2012. # Franklin Weng , 2011, 2013, 2014, 2015. # Jeff Huang , 2016. +# pan93412 , 2018. msgid "" msgstr "" "Project-Id-Version: kig\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2017-10-24 03:10+0200\n" -"PO-Revision-Date: 2016-11-16 21:32+0800\n" -"Last-Translator: Jeff Huang \n" -"Language-Team: Chinese \n" +"POT-Creation-Date: 2018-03-07 03:24+0100\n" +"PO-Revision-Date: 2018-04-24 21:05+0800\n" +"Last-Translator: pan93412 \n" +"Language-Team: Chinese \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -166,8 +167,8 @@ #: filters/asyexporter.cc:58 #, kde-format -msgid "*.asy|Asymptote Documents (*.asy)" -msgstr "*.asy|Asymptote 文件 (*.asy)" +msgid "Asymptote Documents (*.asy)" +msgstr "Asymptote 文件 (*.asy)" #: filters/asyexporter.cc:59 #, kde-format @@ -417,8 +418,8 @@ #: filters/latexexporter.cc:538 #, kde-format -msgid "*.tex|Latex Documents (*.tex)" -msgstr "*.tex|Latex 文件 (*.tex)" +msgid "Latex Documents (*.tex)" +msgstr "Latex 文件 (*.tex)" #: filters/latexexporter.cc:539 #, kde-format @@ -534,8 +535,8 @@ #: filters/svgexporter.cc:59 #, kde-format -msgid "*.svg|Scalable Vector Graphics (*.svg)" -msgstr "*.svg|可縮放向量圖形(*.svg)" +msgid "Scalable Vector Graphics (*.svg)" +msgstr "可縮放向量圖形(*.svg)" #: filters/svgexporter.cc:60 #, kde-format @@ -564,8 +565,8 @@ #: filters/xfigexporter.cc:577 #, kde-format -msgid "*.fig|XFig Documents (*.fig)" -msgstr "*.fig|XFig 文件 (*.fig)" +msgid "XFig Documents (*.fig)" +msgstr "XFig 文件 (*.fig)" #: filters/xfigexporter.cc:578 #, kde-format @@ -1002,35 +1003,31 @@ #: kig/kig_part.cpp:726 #, kde-format -msgid "" -"*.kig|Kig Documents (*.kig)\n" -"*.kigz|Compressed Kig Documents (*.kigz)" -msgstr "" -"*.kig|Kig 文件(*.kig)\n" -"*.kigz|壓縮的 Kig 文件(*.kigz)" +msgid "Kig Documents (*.kig);;Compressed Kig Documents (*.kigz)" +msgstr "Kig 文件 (*.kig);;壓縮的 Kig 文件(*.kigz)" -#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 +#: kig/kig_part.cpp:739 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:471 #, kde-format msgid "The file \"%1\" already exists. Do you wish to overwrite it?" msgstr "檔案 %1 已經存在。您要覆寫它嗎?" -#: kig/kig_part.cpp:741 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 +#: kig/kig_part.cpp:740 misc/kigfiledialog.cc:57 modes/typesdialog.cpp:473 #, kde-format msgid "Overwrite File?" msgstr "覆寫檔案嗎?" -#: kig/kig_part.cpp:895 +#: kig/kig_part.cpp:894 #, kde-format msgid "Print Geometry" msgstr "列印幾何" -#: kig/kig_part.cpp:962 +#: kig/kig_part.cpp:961 #, kde-format msgid "Hide %1 Object" msgid_plural "Hide %1 Objects" msgstr[0] "隱藏 %1 個物件" -#: kig/kig_part.cpp:981 +#: kig/kig_part.cpp:980 #, kde-format msgid "Show %1 Object" msgid_plural "Show %1 Objects" @@ -3277,27 +3274,23 @@ #: modes/typesdialog.cpp:466 #, kde-format -msgid "" -"*.kigt|Kig Types Files\n" -"*|All Files" -msgstr "" -"*.kigt|Kig 類型檔案\n" -"*|全部檔案" +msgid "Kig Types Files (*.kigt);;All Files (*)" +msgstr "Kig 格式檔案 (*.kigt);;全部檔案 (*)" #: modes/typesdialog.cpp:482 #, kde-format -msgid "*.kigt|Kig Types Files" -msgstr "*.kigt|Kig 類型檔案" +msgid "Kig Types Files (*.kigt)" +msgstr "Kig 格式檔案 (*.kigt)" #: modes/typesdialog.cpp:484 #, kde-format -msgid "*.ggt|Geogebra Tool Files" -msgstr "*.ggt | Geogebra 工具檔" +msgid "Geogebra Tool Files (*.ggt)" +msgstr "Geogebra 工具檔 (*.ggt)" #: modes/typesdialog.cpp:486 #, kde-format -msgid "*|All Files" -msgstr "*|所有檔案" +msgid "All Files (*)" +msgstr "所有檔案 (*)" #: modes/typesdialog.cpp:487 #, kde-format