Neverendingo (Talk | contribs) m (Text replace - "<code ini>" to "<syntaxhighlight lang="ini">") |
|||
| Line 39: | Line 39: | ||
: This little utility, once activated, can present a report about conflicting shortcuts in menus. Not only is this helpful for translators but also for developers. A little hand editing of {{path|`kde-config --localprefix`/share/config/kdeglobals}} activates this feature: | : This little utility, once activated, can present a report about conflicting shortcuts in menus. Not only is this helpful for translators but also for developers. A little hand editing of {{path|`kde-config --localprefix`/share/config/kdeglobals}} activates this feature: | ||
| − | < | + | <syntaxhighlight lang="ini"> |
[Development] | [Development] | ||
CheckAccelerators=F12 | CheckAccelerators=F12 | ||
Contents |
Languages: عربي | Asturianu | Català | Česky | Kaszëbsczi | Dansk | Deutsch | English | Esperanto | Español | Eesti | فارسی | Suomi | Français | Galego | Italiano | 日本語 | 한국어 | Norwegian | Polski | Português Brasileiro | Română | Русский | Svenska | Slovenčina | Slovenščina | српски | Türkçe | Tiếng Việt | Українська | 简体中文 | 繁體中文
Esta sessão contém informação sobre ferramentas para desenvolvimento do KDE.
Uma lista de ferramentas as quais são usadas para analisar o programa. Nesta categoria estão depuradores e ferramentas de acompanhamento de performance, por exemplo.
[Development] CheckAccelerators=F12 AutoCheckAccelerators=false AlwaysShowCheckAccelerators=false </code> : Pressing F12 will show a dialog containing which accelerators in the currently focussed interface conflict and provide suggestions for new accelerators. If no accelerators conflict or Dr. Klash has nothing to suggest, no popup dialog will be displayed. : With <tt>AutoCheckAccelerators</tt> enabled the dialog will popup automatically if a conflict exists and <tt>AlwaysShowCheckAccelerators</tt> can force the dialog to always popup even if there are no conflicts to report. ; The x-test language : This helper language serves as a debugging aid for people finding untranslated strings in applications. If you start your application with the "x-test" locale, all translated strings will appear with trailing and leading xx's. First you have to check out these "translations" from l10n-kde4/x-test and install them. : After you've built l10n-kde4/x-test and installed it, run your application using the "x-test" locale. This can be done by launching it from the command line like this: > KDE_LANG=x-test kspread : This will start KSpread using the "x-test" locale no matter what your current language setting is. Look for strings that do not have the xx's. If xx's are missing from a string, it could be due to missing i18n calls or even missing or incorrectly generated .pot files. Consult the i18n tutorials for further information. : When checking for untranslated strings, be sure to check all the WhatsThis help and tooltips. === Examinando arquivos .po === You can look at the translated .po files to see if a string is present and has been translated. For example, here's a portion of {{path|l10n/de/messages/kdebase/konqueror.po}}: #: konq_mainwindow.cc:3707 konq_tabs.cc:84 msgid "&New Tab" msgstr "Neues &Unterfenster" The string to be translated is given on the msgid line. The translated string is on the msgstr line. Notice that the exact same string to translate came from {{path|konq_mainwindow.cc}} and also from {{path|konq_tabs.cc}}. This saves the translators from having to translate the same identical string twice. You can also use KBabel to examine {{path|.po}} files. KBabel is part of the kdesdk module. {{note|More information on writing and translating documentation can be found on [http://l10n.kde.org/ the l10n project site].}} == Ferramentas auxiliares == ; [[Development/Tools/Using kde-config|Get information about KDE's installation - kde-config]] : The tool kde-config helps to find out more about a KDE installation. ; [[Development/Tools/Using kfmclient|Driving Konqueror From Scripts - kfmclient]] : kfmclient is a small tool to communicate with Konqueror. ;[[Development/Tools/Using kconf_update|Updating User Configuration Files - kconf_update]] : kconf_update is a tool designed to update config files. ;[[Development/Tools/apidox|Generating apidox]] : tools that help develop and generate API documentation for your code. ;[[Development/Tools/Automoc4|Automoc4]] : This is a helper tool needed to build KDE4. It automatically generates moc-files. == Garantia de Qualidade == ; Continuous Building - Dashboard : [http://developer.kde.org/~dirk/dashboard/ all kde modules on Dirk's dashboard] : [http://public.kitware.com/dashboard.php?name=kde kdelibs on kitware] ; [http://englishbreakfastnetwork.org/ English Breakfast Network] - Static Analysis : [http://www.englishbreakfastnetwork.org/krazy/ Krazy ] - Code Analysis, [[Development/Tutorials/Code_Checking|Usage Tutorial]] : [http://www.englishbreakfastnetwork.org/apidocs/ APIDOX] - API Documentation Statistics : [http://www.englishbreakfastnetwork.org/sanitizer/ Sanitizer] - DocBook Checker : [http://www.englishbreakfastnetwork.org/usability/ Usability Checks]