m |
(translation to spanish) |
||
| Line 1: | Line 1: | ||
{{Template:I18n/Language Navigation Bar|Development/Tools}} | {{Template:I18n/Language Navigation Bar|Development/Tools}} | ||
| − | + | Esta sección contiene informacion sobre las herramientas para el desarrollo de KDE. | |
== Depurado y análisis == | == Depurado y análisis == | ||
| − | + | Lista de herramientas usadas para analizar un programa. Incluye depuradores y perfiles (profilers), por ejemplo: | |
; Valgrind | ; Valgrind | ||
| − | : [[Development/Tools/Valgrind|Valgrind]] | + | : [[Development/Tools/Valgrind|Valgrind]] te ayuda a encontrar fugas de memoria y bloques de memoria sin inicializar. Como funcionalidades avanzadas tenemos un profiler y más. Valgrind es una de las herramientas de desarrollo mas importante!. |
; The GNU Project Debugger (GDB) | ; The GNU Project Debugger (GDB) | ||
| − | : [http://sources.redhat.com/gdb/ GDB] | + | : [http://sources.redhat.com/gdb/ GDB] te ayuda a depurar código fuente. Como GDB está siendo desarrollado todo el tiempo, es recomendable usar la versión 6.x. Exiten interfaces de usuario. Mira también el tutorial de depurado [[../Tutorials/Debugging/Debugging with GDB|Debugging with GDB]]. |
| + | |||
; KDbg | ; KDbg | ||
| − | : [http://www.kdbg.org/ KDbg] | + | : [http://www.kdbg.org/ KDbg] es una interfaz gráfica de usuario de GDB, con la cual puedes establecer breakpoints, ir paso a paso a traves del código etc. |
; MS Windows tools (Process Explorer, Console, WinDbg, DebugView...) | ; MS Windows tools (Process Explorer, Console, WinDbg, DebugView...) | ||
| − | : | + | : Mas información en [[Projects/KDE_on_Windows/Tools|KDE on Windows page]]. |
| − | == | + | == Herramientas de desarrollo == |
; KDevelop | ; KDevelop | ||
| − | : [http://www.kdevelop.org KDevelop] | + | : [http://www.kdevelop.org KDevelop] es un excelente IDE para el desarrollo de aplicaciones KDE y Qt en C++. Incluye un depurador integrado, un potente editor con realce de sintaxis, un ''Project Wizard'' para crear aplicaciones desde plantillas, automake/autoconf, e incluso la documentación de clases. Puedes encontrar mas detalles en [http://kdevelop.org/mediawiki/index.php/Main_Page KDevelop wiki]. |
| − | : | + | :Las instrucciones sobre como usar KDevelop con aplicaciones KDE4 están disponibles en [[Getting_Started/Set_up_KDE_4_for_development#KDevelop|this page]]. |
; Qt Designer | ; Qt Designer | ||
| − | |||
| − | ; MS Visual Studio® Express 2005 IDE (Windows | + | : Con Trolltech [http://www.trolltech.com/products/qt/features/designer Qt Designer] es facil diseñar interfaces con botones y "checkboxes". Tiene características adicionales como deshacer/rehacer,comprobación de conflictos etc. Puedes encontrar mas detalles en el tutorial [[Development/Tutorials/Using_Qt_Designer|Using Qt Designer]] y en [http://doc.trolltech.com/4.2/designer-manual.html documentación de Qt]. |
| + | |||
| + | ; MS Visual Studio® Express 2005 IDE (solo Windows) | ||
: Visual C++® 2005 Express Edition [http://www.microsoft.com/germany/msdn/vstudio/products/express/visualc/default.mspx] is the free version of the Microsoft Visual Studio 2005 compiler from Microsoft, which is officially supported by Trolltech since Qt 4.3.2. It is a choice for compiling Qt and KDE applications on Windows. [[Projects/KDE_on_Windows/Issues/MSVC|more info...]] | : Visual C++® 2005 Express Edition [http://www.microsoft.com/germany/msdn/vstudio/products/express/visualc/default.mspx] is the free version of the Microsoft Visual Studio 2005 compiler from Microsoft, which is officially supported by Trolltech since Qt 4.3.2. It is a choice for compiling Qt and KDE applications on Windows. [[Projects/KDE_on_Windows/Issues/MSVC|more info...]] | ||
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 sección contiene informacion sobre las herramientas para el desarrollo de KDE.
Lista de herramientas usadas para analizar un programa. Incluye depuradores y perfiles (profilers), por ejemplo:
[Development]
CheckAccelerators=F12
AutoCheckAccelerators=false
AlwaysShowCheckAccelerators=false
> KDE_LANG=x-test kspread
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 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 konq_mainwindow.cc and also from konq_tabs.cc. This saves the translators from having to translate the same identical string twice.
You can also use KBabel to examine .po files. KBabel is part of the kdesdk module.
| Note |
|---|
| More information on writing and translating documentation can be found on the l10n project site. |