remove translations, provide POT files

many translations are bogus now and have to be reviewed thus
translations will be done anew

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2020-11-28 19:16:51 +00:00
parent 5d26846b73
commit 7d416a25b0
45 changed files with 1685 additions and 113788 deletions

3
.gitignore vendored
View file

@ -34,6 +34,3 @@ package/debian/katie-*/
# tarballs from tarball.sh and oldmake.sh
*.tar.xz
scripts/cmake-*.tar.gz
# temporary files used to update the translations
translations/*.pot

View file

@ -535,7 +535,9 @@ add_subdirectory(src/uitools)
add_subdirectory(src/tools)
add_subdirectory(translations)
if(WITH_INTL AND INTL_FOUND)
add_subdirectory(translations)
endif()
if(KATIE_TESTS OR KATIE_BENCHMARKS)
add_subdirectory(tests)

View file

@ -257,29 +257,6 @@ function(KATIE_SETUP_TARGET FORTARGET)
OUTPUT "${rscout}"
)
endif()
elseif("${rscext}" MATCHES ".po" AND WITH_INTL AND INTL_FOUND)
make_directory("${CMAKE_CURRENT_BINARY_DIR}")
set(rscout "${CMAKE_CURRENT_BINARY_DIR}/${rscname}.mo")
if("${rscname}" MATCHES "qt_tools")
set(rscbase "qt_tools")
string(REPLACE "qt_tools_" "" rsclocale "${rscname}")
else()
set(rscbase "qt")
string(REPLACE "qt_" "" rsclocale "${rscname}")
endif()
add_custom_target(
${FORTARGET}_${rscname} ALL
COMMAND ${INTL_MSGFMT} -v "${resource}" -o "${rscout}"
DEPENDS "${KATIE_LRELEASE}"
COMMENT "Generating ${rscname}.mo"
)
set_source_files_properties("${rscout}" PROPERTIES GENERATED TRUE)
install(
FILES "${rscout}"
DESTINATION "${KATIE_TRANSLATIONS_PATH}/${rsclocale}/LC_MESSAGES"
RENAME "${rscbase}.mo"
COMPONENT Runtime
)
endif()
endforeach()
set_property(SOURCE "${resourcesdep}" APPEND PROPERTY OBJECT_DEPENDS "${targetresources}")

View file

@ -1563,43 +1563,6 @@ man/man1/uic-katie.1.gz
share/applications/designer-katie.desktop
share/applications/qdbusviewer-katie.desktop
share/applications/qtconfig-katie.desktop
share/locale/CN/LC_MESSAGES/qt_tools.mo
share/locale/TW/LC_MESSAGES/qt_tools.mo
share/locale/ar/LC_MESSAGES/qt.mo
share/locale/cs/LC_MESSAGES/qt.mo
share/locale/cs/LC_MESSAGES/qt_tools.mo
share/locale/da/LC_MESSAGES/qt.mo
share/locale/de/LC_MESSAGES/qt.mo
share/locale/de/LC_MESSAGES/qt_tools.mo
share/locale/es/LC_MESSAGES/qt.mo
share/locale/eu/LC_MESSAGES/qt.mo
share/locale/eu/LC_MESSAGES/qt_tools.mo
share/locale/fa/LC_MESSAGES/qt.mo
share/locale/fr/LC_MESSAGES/qt.mo
share/locale/fr/LC_MESSAGES/qt_tools.mo
share/locale/gl/LC_MESSAGES/qt.mo
share/locale/he/LC_MESSAGES/qt.mo
share/locale/he/LC_MESSAGES/qt_tools.mo
share/locale/hu/LC_MESSAGES/qt.mo
share/locale/hu/LC_MESSAGES/qt_tools.mo
share/locale/ja/LC_MESSAGES/qt.mo
share/locale/ja/LC_MESSAGES/qt_tools.mo
share/locale/ko/LC_MESSAGES/qt.mo
share/locale/ko/LC_MESSAGES/qt_tools.mo
share/locale/lt/LC_MESSAGES/qt.mo
share/locale/pl/LC_MESSAGES/qt.mo
share/locale/pl/LC_MESSAGES/qt_tools.mo
share/locale/pt/LC_MESSAGES/qt.mo
share/locale/ru/LC_MESSAGES/qt.mo
share/locale/ru/LC_MESSAGES/qt_tools.mo
share/locale/sk/LC_MESSAGES/qt.mo
share/locale/sl/LC_MESSAGES/qt.mo
share/locale/sl/LC_MESSAGES/qt_tools.mo
share/locale/sv/LC_MESSAGES/qt.mo
share/locale/uk/LC_MESSAGES/qt.mo
share/locale/uk/LC_MESSAGES/qt_tools.mo
share/locale/zh_CN/LC_MESSAGES/qt.mo
share/locale/zh_TW/LC_MESSAGES/qt.mo
share/pixmaps/designer-katie.png
share/pixmaps/qdbusviewer-katie.png
share/pixmaps/qtconfig-katie.png

View file

@ -25,7 +25,7 @@ qtcommand = ['xgettext', '--from-code=UTF-8', '-o', 'translations/qt.pot',
'-kQT_TR_NOOP:1', '-kQT_TR_NOOP_UTF8:1',
'-kQT_TRANSLATE_NOOP:1c,2','-kQT_TRANSLATE_NOOP_UTF8:1c,2',
'-kQT_TRANSLATE_NOOP3:1c,2,3', '-kQT_TRANSLATE_NOOP3_UTF8:1c,2,3',
'-ktranslate', '-ktr', '-ktrUtf8']
'-ktranslate:1c,2', '-ktr:1', '-ktrUtf8:1']
qtcommand.extend(cfiles)
subprocess.check_call(qtcommand)
@ -33,13 +33,13 @@ qttoolscommand = ['xgettext', '--from-code=UTF-8', '-o', 'translations/qt_tools.
'-kQT_TR_NOOP:1', '-kQT_TR_NOOP_UTF8:1',
'-kQT_TRANSLATE_NOOP:1c,2','-kQT_TRANSLATE_NOOP_UTF8:1c,2',
'-kQT_TRANSLATE_NOOP3:1c,2,3', '-kQT_TRANSLATE_NOOP3_UTF8:1c,2,3',
'-ktranslate', '-ktr', '-ktrUtf8']
'-ktranslate:1c,2', '-ktr:1', '-ktrUtf8:1']
qttoolscommand.extend(tfiles)
subprocess.check_call(qttoolscommand)
for t in glob.glob('translations/*.po'):
potfile = 'translations/qt.pot'
if t.startswith('qt_tools'):
if 'qt_tools' in t:
potfile = 'translations/qt_tools.pot'
subprocess.check_call(['msgmerge', '--verbose', '--update', t, potfile])
subprocess.check_call(['msgattrib', '--no-fuzzy', '--no-obsolete', t, '-o', t])

View file

@ -1,2 +1,27 @@
file(GLOB TRANSLATIONS "*.po")
katie_setup_target(translations ${TRANSLATIONS})
foreach(tmpres ${TRANSLATIONS})
get_filename_component(resource "${tmpres}" ABSOLUTE)
get_filename_component(rscname "${resource}" NAME_WE)
make_directory("${CMAKE_CURRENT_BINARY_DIR}")
set(rscout "${CMAKE_CURRENT_BINARY_DIR}/${rscname}.mo")
if("${rscname}" MATCHES "qt_tools")
set(rscbase "qt_tools")
string(REPLACE "qt_tools_" "" rsclocale "${rscname}")
else()
set(rscbase "qt")
string(REPLACE "qt_" "" rsclocale "${rscname}")
endif()
add_custom_target(
${FORTARGET}_${rscname} ALL
COMMAND ${INTL_MSGFMT} -v "${resource}" -o "${rscout}"
COMMENT "Generating ${rscname}.mo"
)
set_source_files_properties("${rscout}" PROPERTIES GENERATED TRUE)
install(
FILES "${rscout}"
DESTINATION "${KATIE_TRANSLATIONS_PATH}/${rsclocale}/LC_MESSAGES"
RENAME "${rscbase}.mo"
COMPONENT Runtime
)
endforeach()

View file

@ -1,3 +1,2 @@
All translations are contributed by the Qt community.
They are provided without guarantees, will often be stale, and may even
disappear entirely from future releases.
To contribute translation use the .pot files provided as base. If you are
interested visit https://www.transifex.com/smil3y/katie.

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

837
translations/qt_tools.pot Normal file
View file

@ -0,0 +1,837 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-11-28 19:47+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: src/tools/qtconfig/previewframe.cpp:75
msgid "Desktop settings will only take effect after an application restart."
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:68
msgctxt "MainWindow"
msgid ""
"<p><b><font size+=2>Appearance</font></b></p><hr><p>Use this tab to "
"customize the appearance of your Qt applications.</p><p>You can select the "
"default GUI Style from the drop down list and customize the colors.</"
"p><p>Any GUI Style plugins in your plugin path will automatically be added "
"to the list of built-in Qt styles. (See the Library Paths tab for "
"information on adding new plugin paths.)</p><p>When you choose 3-D Effects "
"and Window Background colors, the Qt Configuration program will "
"automatically generate a palette for you. To customize colors further, press "
"the Tune Palette button to open the advanced palette editor.<p>The Preview "
"Window shows what the selected Style and colors look like."
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:84
msgctxt "MainWindow"
msgid ""
"<p><b><font size+=2>Fonts</font></b></p><hr><p>Use this tab to select the "
"default font for your Qt applications. The selected font is shown (initially "
"as 'Sample Text') in the line edit below the Family, Style and Point Size "
"drop down lists.</p><p>Qt has a powerful font substitution feature that "
"allows you to specify a list of substitute fonts. Substitute fonts are used "
"when a font cannot be loaded, or if the specified font doesn't have a "
"particular character.<p>For example, if you select the font Lucida, which "
"doesn't have Korean characters, but need to show some Korean text using the "
"Mincho font family you can do so by adding Mincho to the list. Once Mincho "
"is added, any Korean characters that are not found in the Lucida font will "
"be taken from the Mincho font. Because the font substitutions are lists, "
"you can also select multiple families, such as Song Ti (for use with Chinese "
"text)."
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:103
msgctxt "MainWindow"
msgid ""
"<p><b><font size+=2>Interface</font></b></p><hr><p>Use this tab to customize "
"the feel of your Qt applications.</p><p>If the Resolve Symlinks checkbox is "
"checked Qt will follow symlinks when handling URLs. For example, in the file "
"dialog, if this setting is turned on and /usr/tmp is a symlink to /var/tmp, "
"entering the /usr/tmp directory will cause the file dialog to change to /var/"
"tmp. With this setting turned off, symlinks are not resolved or followed.</"
"p><p>The Global Strut setting is useful for people who require a minimum "
"size for all widgets (e.g. when using a touch panel or for users who are "
"visually impaired). Leaving the Global Strut width and height at 0 will "
"disable the Global Strut feature."
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:118
msgctxt "MainWindow"
msgid ""
"<p><b><font size+=2>Printer</font></b></p><hr><p>Use this tab to configure "
"the way Qt generates output for the printer.You can specify if Qt should try "
"to embed fonts into its generated output.If you enable font embedding, the "
"resulting postscript will be more portable and will more accurately reflect "
"the visual output on the screen; however the resulting postscript file size "
"will be bigger.<p>When using font embedding you can select additional "
"directories where Qt should search for embeddable font files. By default, "
"the X server font path is used."
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:201
msgid "Desktop Settings (Default)"
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:207
msgid "Choose style and palette based on your desktop settings."
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:222
msgid "Unknown"
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:368
msgid "No changes to be saved."
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:372
msgid "Saving changes..."
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:457
msgid "Saved changes."
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:723
msgid "Select a Directory"
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:738
msgid ""
"<h3>%1</h3><br/>Version %2<br/><br/>Copyright (C) 2015 The Qt Company Ltd."
"<br/><br/>Copyright (C) 2016-2020 Ivailo Monev"
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:743 src/tools/qtconfig/mainwindow.cpp:744
#: src/tools/qtconfig/mainwindow.cpp:751
msgid "Katie Configuration"
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:770
msgid "Save Changes"
msgstr ""
#: src/tools/qtconfig/mainwindow.cpp:771
msgid "Save changes to settings?"
msgstr ""
#: src/tools/qtconfig/paletteeditoradvanced.cpp:46
#: src/tools/qtconfig/paletteeditoradvanced.cpp:52
msgid "Choose a color"
msgstr ""
#: src/tools/qtconfig/paletteeditoradvanced.cpp:47
msgid "Choose a color for the selected central color role."
msgstr ""
#: src/tools/qtconfig/paletteeditoradvanced.cpp:53
msgid "Choose a color for the selected effect color role."
msgstr ""
#: src/tools/qdbusviewer/qdbusviewermain.cpp:51
msgctxt "QtDBusViewer"
msgid "Katie D-Bus Viewer"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewermain.cpp:58
msgid "Session Bus"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewermain.cpp:59
msgid "System Bus"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewermain.cpp:61
#: src/tools/designer/qdesigner_workbench.cpp:191
msgid "&File"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewermain.cpp:62
#: src/tools/designer/qdesigner_actions.cpp:182
msgid "&Quit"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewermain.cpp:65
#: src/tools/designer/qdesigner_workbench.cpp:208
msgid "&Help"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewermain.cpp:66
msgid "&About"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewermain.cpp:70
msgid "About &Katie"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:75
msgid "Search..."
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:86
msgid "&Refresh"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:202
msgid "Arguments"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:203
msgid "Please enter the value of the property %1 (type %2)"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:211
msgid "Unable to marshall"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:212
msgid "Value conversion failed, unable to set property"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:249
msgid "Unable to find method"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:250
msgid "Unable to find method %1 on path %2 in interface %3"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:272
msgid "Please enter parameters for the method \"%1\""
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:322
msgid "&Connect"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:327
msgid "&Call"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:332
msgid "&Set value"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:334
msgid "&Get value"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:367
msgid "Unable to connect to service %1, path %2, interface %3, signal %4"
msgstr ""
#: src/tools/qdbusviewer/qdbusviewer.cpp:489
#: src/tools/qdbusviewer/qdbusviewer.cpp:490
msgid "D-Bus Viewer"
msgstr ""
#: src/tools/designer/versiondialog.cpp:158
msgid "<h3>%1</h3><br/><br/>Version %2"
msgstr ""
#: src/tools/designer/versiondialog.cpp:159
#: src/tools/designer/mainwindow.cpp:127
msgid "Katie Designer"
msgstr ""
#: src/tools/designer/versiondialog.cpp:160
msgid ""
"<br/>Katie Designer is a graphical user interface designer for Qt "
"applications.<br/>"
msgstr ""
#: src/tools/designer/versiondialog.cpp:162
msgid ""
"%1<br/>Copyright (C) 2015 The Qt Company Ltd.<br/>Copyright (C) 2016-2020 "
"Ivailo Monev"
msgstr ""
#: src/tools/designer/appfontdialog.cpp:143
msgctxt "AppFontManager"
msgid "'%1' is not a file."
msgstr ""
#: src/tools/designer/appfontdialog.cpp:147
msgctxt "AppFontManager"
msgid "The font file '%1' does not have read permissions."
msgstr ""
#: src/tools/designer/appfontdialog.cpp:155
msgctxt "AppFontManager"
msgid "The font file '%1' is already loaded."
msgstr ""
#: src/tools/designer/appfontdialog.cpp:162
msgctxt "AppFontManager"
msgid "The font file '%1' could not be loaded."
msgstr ""
#: src/tools/designer/appfontdialog.cpp:179
msgctxt "AppFontManager"
msgid "'%1' is not a valid font id."
msgstr ""
#: src/tools/designer/appfontdialog.cpp:190
msgctxt "AppFontManager"
msgid "There is no loaded font matching the id '%1'."
msgstr ""
#: src/tools/designer/appfontdialog.cpp:205
msgctxt "AppFontManager"
msgid "The font '%1' (%2) could not be unloaded."
msgstr ""
#: src/tools/designer/appfontdialog.cpp:231
msgid "Fonts"
msgstr ""
#: src/tools/designer/appfontdialog.cpp:289
msgid "Add font files"
msgstr ""
#: src/tools/designer/appfontdialog.cpp:294
msgid "Remove current font file"
msgstr ""
#: src/tools/designer/appfontdialog.cpp:298
msgid "Remove all font files"
msgstr ""
#: src/tools/designer/appfontdialog.cpp:317
msgid "Add Font Files"
msgstr ""
#: src/tools/designer/appfontdialog.cpp:318
msgid "Font files (*.ttf)"
msgstr ""
#: src/tools/designer/appfontdialog.cpp:331
msgid "Error Adding Fonts"
msgstr ""
#: src/tools/designer/appfontdialog.cpp:355
msgid "Error Removing Fonts"
msgstr ""
#: src/tools/designer/appfontdialog.cpp:377
msgid "Remove Fonts"
msgstr ""
#: src/tools/designer/appfontdialog.cpp:377
msgid "Would you like to remove all fonts?"
msgstr ""
#: src/tools/designer/appfontdialog.cpp:410
msgid "Additional Fonts"
msgstr ""
#: src/tools/designer/qdesigner_formwindow.cpp:209
msgid "%1 - %2[*]"
msgstr ""
#: src/tools/designer/qdesigner_formwindow.cpp:219
#: src/tools/designer/qdesigner_actions.cpp:833
#: src/tools/designer/qdesigner_actions.cpp:873
msgid "Save Form?"
msgstr ""
#: src/tools/designer/qdesigner_formwindow.cpp:220
msgid "Do you want to save the changes to this document before closing?"
msgstr ""
#: src/tools/designer/qdesigner_formwindow.cpp:222
msgid "If you don't save, your changes will be lost."
msgstr ""
#: src/tools/designer/newform.cpp:65
msgid "Show this Dialog on Startup"
msgstr ""
#: src/tools/designer/newform.cpp:66
msgctxt "NewForm"
msgid "C&reate"
msgstr ""
#: src/tools/designer/newform.cpp:67
msgctxt "NewForm"
msgid "Recent"
msgstr ""
#: src/tools/designer/newform.cpp:70
msgid "New Form"
msgstr ""
#: src/tools/designer/newform.cpp:99
msgctxt "NewForm"
msgid "&Close"
msgstr ""
#: src/tools/designer/newform.cpp:102
msgctxt "NewForm"
msgid "&Open..."
msgstr ""
#: src/tools/designer/newform.cpp:106
#: src/tools/designer/qdesigner_actions.cpp:490
msgid "&Recent Forms"
msgstr ""
#: src/tools/designer/newform.cpp:170
#: src/tools/designer/qdesigner_actions.cpp:751
msgid "Read error"
msgstr ""
#: src/tools/designer/newform.cpp:193
msgid "A temporary form file could not be created in %1."
msgstr ""
#: src/tools/designer/newform.cpp:199
msgid "The temporary form file %1 could not be written."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:122
msgid "Saved %1."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:148
msgid ""
"%1 already exists.\n"
"Do you want to replace it?"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:172
msgid "Edit Widgets"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:173
msgid "&New..."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:174
msgid "&Open..."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:175
msgid "&Save"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:176
msgid "Save &As..."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:177
msgid "Save A&ll"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:178
msgid "Save As &Template..."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:179
#: src/tools/designer/qdesigner_actions.cpp:1032
msgid "&Close"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:180
msgid "Save &Image..."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:181
msgid "&Print..."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:184
msgid "View &Code..."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:185
msgid "&Minimize"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:187
msgid "Bring All to Front"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:189
msgid "Preferences..."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:190
msgid "Additional Fonts..."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:262
msgid "CTRL+SHIFT+S"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:387
msgid "CTRL+R"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:405
msgid "CTRL+M"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:436
msgid "About Plugins"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:442
#: src/tools/designer/qdesigner_actions.cpp:1013
msgid "About Katie Designer"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:448
msgid "About Katie"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:484
msgid "Clear &Menu"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:567
#: src/tools/designer/qdesigner_actions.cpp:764
msgid "Open Form"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:568
#: src/tools/designer/qdesigner_actions.cpp:605
#: src/tools/designer/qdesigner_actions.cpp:765
msgid "Designer UI files (*.%1);;All Files (*)"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:605
#: src/tools/designer/qdesigner_actions.cpp:853
msgid "Save Form As"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:692
msgid "Designer"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:692
msgid "Feature not implemented yet!"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:707
msgid "Code generation failed"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:752
msgid ""
"%1\n"
"Do you want to update the file location or generate a new form?"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:755
msgid "&Update"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:756
msgid "&New Form"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:834
msgid "Could not open file"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:838
msgid ""
"The file %1 could not be opened.\n"
"Reason: %2\n"
"Would you like to retry or select a different file?"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:844
msgid "Select New File"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:874
msgid "Could not write file"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:877
msgid ""
"It was not possible to write the entire file %1 to disk.\n"
"Reason:%2\n"
"Would you like to retry?"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:1030
msgid "&Close Preview"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:1071
#: src/tools/designer/qdesigner_actions.cpp:1094
msgid "The backup file %1 could not be written."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:1201
msgid "The backup directory %1 could not be created."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:1207
msgid "The temporary backup directory %1 could not be created."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:1237
msgid "Preview failed"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:1261
msgid "Image files (*.%1)"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:1270
#: src/tools/designer/qdesigner_actions.cpp:1287
msgid "Save Image"
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:1283
msgid "Saved image %1."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:1288
msgid "The file %1 could not be written."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:1301
msgid "Please close all forms to enable the loading of additional fonts."
msgstr ""
#: src/tools/designer/qdesigner_actions.cpp:1352
msgid "Printed %1."
msgstr ""
#: src/tools/designer/saveformastemplate.cpp:64
msgid "Add path..."
msgstr ""
#: src/tools/designer/saveformastemplate.cpp:87
msgid "Template Exists"
msgstr ""
#: src/tools/designer/saveformastemplate.cpp:88
msgid ""
"A template with the name %1 already exists.\n"
"Do you want overwrite the template?"
msgstr ""
#: src/tools/designer/saveformastemplate.cpp:91
msgid "Overwrite Template"
msgstr ""
#: src/tools/designer/saveformastemplate.cpp:98
msgid "Open Error"
msgstr ""
#: src/tools/designer/saveformastemplate.cpp:99
msgid "There was an error opening template %1 for writing. Reason: %2"
msgstr ""
#: src/tools/designer/saveformastemplate.cpp:112
msgid "Write Error"
msgstr ""
#: src/tools/designer/saveformastemplate.cpp:113
msgid "There was an error writing the template %1 to disk. Reason: %2"
msgstr ""
#: src/tools/designer/saveformastemplate.cpp:140
msgid "Pick a directory to save templates in"
msgstr ""
#: src/tools/designer/mainwindow.cpp:111
msgid "Main"
msgstr ""
#: src/tools/designer/mainwindow.cpp:117 src/tools/designer/mainwindow.cpp:247
msgid "File"
msgstr ""
#: src/tools/designer/mainwindow.cpp:118 src/tools/designer/mainwindow.cpp:251
msgid "Edit"
msgstr ""
#: src/tools/designer/mainwindow.cpp:119 src/tools/designer/mainwindow.cpp:255
msgid "Tools"
msgstr ""
#: src/tools/designer/mainwindow.cpp:120 src/tools/designer/mainwindow.cpp:259
msgid "Form"
msgstr ""
#: src/tools/designer/mainwindow.cpp:216
msgid "Configure Toolbars..."
msgstr ""
#: src/tools/designer/mainwindow.cpp:231
msgid "Window"
msgstr ""
#: src/tools/designer/mainwindow.cpp:232
msgid "Help"
msgstr ""
#: src/tools/designer/mainwindow.cpp:239
msgid "Style"
msgstr ""
#: src/tools/designer/mainwindow.cpp:241
msgid "Dock views"
msgstr ""
#: src/tools/designer/mainwindow.cpp:263
#: src/tools/designer/qdesigner_workbench.cpp:231
msgid "Toolbars"
msgstr ""
#: src/tools/designer/qdesigner_toolwindow.cpp:179
msgid "Property Editor"
msgstr ""
#: src/tools/designer/qdesigner_toolwindow.cpp:233
msgid "Action Editor"
msgstr ""
#: src/tools/designer/qdesigner_toolwindow.cpp:275
msgid "Object Inspector"
msgstr ""
#: src/tools/designer/qdesigner_toolwindow.cpp:310
msgid "Resource Browser"
msgstr ""
#: src/tools/designer/qdesigner_toolwindow.cpp:344
msgid "Signal/Slot Editor"
msgstr ""
#: src/tools/designer/qdesigner_toolwindow.cpp:385
#: src/tools/designer/qdesigner_workbench.cpp:397
msgid "Widget Box"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:193
msgid "&Edit"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:197
msgid "F&orm"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:198
msgid "Preview in"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:202
msgid "&View"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:204
msgid "&Settings"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:206
msgid "&Window"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:686
msgid "Save Forms?"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:687
#, c-format
msgid ""
"There are %n forms with unsaved changes. Do you want to review these changes "
"before quitting?"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:690
msgid "If you do not review your documents, all your changes will be lost."
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:691
msgid "Discard Changes"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:693
msgid "Review Changes"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:788
msgid "Backup Information"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:789
msgid ""
"The last session of Designer was not terminated correctly. Backup files were "
"left behind. Do you want to load them?"
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:899
msgid "The file <b>%1</b> could not be opened."
msgstr ""
#: src/tools/designer/qdesigner_workbench.cpp:945
msgid "The file <b>%1</b> is not a valid Designer UI file."
msgstr ""
#: src/tools/designer/qdesigner_appearanceoptions.cpp:77
msgid "Docked Window"
msgstr ""
#: src/tools/designer/qdesigner_appearanceoptions.cpp:78
msgid "Multiple Top-Level Windows"
msgstr ""
#: src/tools/designer/qdesigner_appearanceoptions.cpp:83
msgid "Toolwindow Font"
msgstr ""
#: src/tools/designer/qdesigner_appearanceoptions.cpp:128
msgctxt "QDesignerAppearanceOptionsPage"
msgid "Appearance"
msgstr ""
#: src/tools/designer/qdesigner.cpp:121
msgctxt "QDesigner"
msgid "%1 - warning"
msgstr ""
#: src/tools/designer/qttoolbardialog/qttoolbardialog.cpp:1234
msgid "Custom Toolbar"
msgstr ""
#: src/tools/designer/qttoolbardialog/qttoolbardialog.cpp:1777
msgid "< S E P A R A T O R >"
msgstr ""
#: src/tools/designer/fontpanel/fontpanel.cpp:54
msgid "Font"
msgstr ""
#: src/tools/designer/fontpanel/fontpanel.cpp:59
msgid "&Family"
msgstr ""
#: src/tools/designer/fontpanel/fontpanel.cpp:63
msgid "&Style"
msgstr ""
#: src/tools/designer/fontpanel/fontpanel.cpp:67
msgid "&Point size"
msgstr ""

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff