diff --git a/share/qtcreator/gdbmacros/gdbmacros.cpp b/share/qtcreator/gdbmacros/gdbmacros.cpp index 0af17f99cb3..6463538c5b7 100644 --- a/share/qtcreator/gdbmacros/gdbmacros.cpp +++ b/share/qtcreator/gdbmacros/gdbmacros.cpp @@ -77,6 +77,7 @@ #if USE_QT_GUI # include # include +# include # include # include # include @@ -478,6 +479,7 @@ struct QDumper void putHash(const char *name, QChar value); void putHash(const char *name, float value); void putHash(const char *name, double value); + void putStringValue(const QString &value); void beginHash(); // start of data hash output void endHash(); // start of data hash output @@ -710,6 +712,16 @@ void QDumper::putBase64Encoded(const char *buf, int n) } } +void QDumper::putStringValue(const QString &str) +{ + if (str.isNull()) { + putItem("value", "\"\" (null)"); + } else { + putItem("value", str); + putItem("valueencoded", "2"); + } +} + void QDumper::disarm() { success = true; @@ -784,10 +796,9 @@ void QDumper::putHash(const char *name, const QString &value) { beginHash(); putItem("name", name); - putItem("value", value); + putStringValue(value); putItem("type", NS"QString"); putItem("numchild", "0"); - putItem("valueencoded", "2"); endHash(); } @@ -859,9 +870,8 @@ void QDumper::putHash(const char *name, QChar value) { beginHash(); putItem("name", name); - putItem("value", QString(QLatin1String("'%1' (%2, 0x%3)")) + putStringValue(QString(QLatin1String("'%1' (%2, 0x%3)")) .arg(value).arg(value.unicode()).arg(value.unicode(), 0, 16)); - putItem("valueencoded", "2"); putItem("type", NS"QChar"); putItem("numchild", "0"); endHash(); @@ -2850,8 +2860,7 @@ static void qDumpQString(QDumper &d) return; } - d.putItem("value", str); - d.putItem("valueencoded", "2"); + d.putStringValue(str); d.putItem("type", NS"QString"); //d.putItem("editvalue", str); // handled generically below d.putItem("numchild", "0"); @@ -2880,8 +2889,7 @@ static void qDumpQStringList(QDumper &d) d.beginChildren(n ? NS"QString" : 0); for (int i = 0; i != n; ++i) { d.beginHash(); - d.putItem("value", list[i]); - d.putItem("valueencoded", "2"); + d.putStringValue(list.at(i)); d.endHash(); } if (n < list.size()) diff --git a/share/qtcreator/translations/qtcreator_de.ts b/share/qtcreator/translations/qtcreator_de.ts index 77c63fb7c7a..18d3d3f50e9 100644 --- a/share/qtcreator/translations/qtcreator_de.ts +++ b/share/qtcreator/translations/qtcreator_de.ts @@ -1512,7 +1512,7 @@ Sollen sie überschrieben werden? Could not set permissions to writable. - Die Datei konnte schreibbar gemacht werden. + Die Datei konnte nicht schreibbar gemacht werden. @@ -14657,7 +14657,7 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: - <line number> + <line number> <Zeilennummer> diff --git a/share/qtcreator/translations/qtcreator_es.ts b/share/qtcreator/translations/qtcreator_es.ts index 06a78c52d7c..8dddfe5d799 100644 --- a/share/qtcreator/translations/qtcreator_es.ts +++ b/share/qtcreator/translations/qtcreator_es.ts @@ -13301,7 +13301,7 @@ The following encodings are likely to fit: - <line number> + <line number> <número de línea> diff --git a/share/qtcreator/translations/qtcreator_fr.ts b/share/qtcreator/translations/qtcreator_fr.ts index 9144b67c1e4..eb5dd7e035d 100644 --- a/share/qtcreator/translations/qtcreator_fr.ts +++ b/share/qtcreator/translations/qtcreator_fr.ts @@ -6,8 +6,7 @@ Failed to load core: %1 - traduire core ? - Échec dans le chargement du core : %1 + Échec dans le chargement du core : %1 @@ -17,13 +16,12 @@ Could not find 'Core.pluginspec' in %1 - 'Core.pluginspec' introuvable dans %1 + 'Core.pluginspec' introuvable dans %1 Qt Creator - Plugin loader messages - Un s à plugin ? - Qt Creator - Messages du chargeur de plugin + Qt Creator - Messages du chargeur de plugin Couldn't find 'Core.pluginspec' in %1 @@ -45,8 +43,7 @@ Core File: - 'core' encore... - Fichier Core : + Fichier core : @@ -59,8 +56,7 @@ Attach to Process ID: - PID ? - Attacher au processus d'ID : + Attacher au processus de PID : @@ -129,7 +125,7 @@ + - + + @@ -267,22 +263,22 @@ Ctrl+M - + Ctrl+M Meta+M - + Meta+M Move Up - Monter + Vers le Haut Move Down - Descendre + Vers le Bas @@ -292,12 +288,12 @@ Ctrl+, - + Ctrl+, Meta+, - + Meta+, @@ -307,12 +303,12 @@ Ctrl+. - + Ctrl+. Meta+. - + Meta+. @@ -356,7 +352,7 @@ Clear system environment - Nettoyer l'environnement système + Nettoyer l'environnement système @@ -423,27 +419,27 @@ Run Environment - + Environnement d'éxecution Clean Environment - + Environnement de nettoyage System Environment - + Environnement système Build Environment - Environnement de compilation + Environnement de compilation Running executable: <b>%1</b> %2 - + Exécution en cours : <b>%1</b> %2 Environment @@ -460,7 +456,7 @@ Qt Creator has detected an <b>in-source-build in %1</b> which prevents shadow builds. Qt Creator will not allow you to change the build directory. If you want a shadow build, clean your source directory and re-open the project. - + Qt Creator a détecté une <b>compilation dans les sources de %1</b> qui empêche les shadow builds. Qt Creator ne permettra pas de changer le répertoire de compilation. Si vous voulez effectuer un "shadow build", nettoyez le répertoire source et rouvrez le projet. Qt Creator has detected an in-source-build which prevents shadow builds. Qt Creator will not allow you to change the build directory. If you want a shadow build, clean your source directory and re-open the project. @@ -472,8 +468,7 @@ Please specify the path to the cmake executable. No cmake executable was found in the path. - Traduction de path, ici chemin ? - Veuillez spécifier le chemin de l'exécutable cmake. Aucun exécutable cmake n'a été trouvé dans le chemin. + Veuillez spécifier l'emplacement de l'exécutable cmake. Aucun exécutable cmake n'a été trouvé dans la liste de répertoires standards. @@ -483,12 +478,12 @@ The path %1 is not a executable. - %1 n'est pas le chemin d'un exécutable. + %1 n'est pas le chemin d'un exécutable. The path %1 is not a valid cmake. - %1 n'est pas un cmake valide. + %1 n'est pas un cmake valide. @@ -504,22 +499,22 @@ The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used toolchain here and rerun cmake. Or simply finish the wizard directly toolchain -> chaine de compilation ? terminer ou terminez ? - Le répertoire %1 contient déjà un fichier cbp, ce qui est assez récent. Vous pouvez passer des arguments spéciaux ou changez la chaine de compilation utilisée ici et réexécuter cmake. Ou simplement terminer l'assistant directement + Le répertoire %1 contient déjà un fichier cbp qui est assez récent. Vous pouvez passer des arguments spéciaux, ou changer la chaine de compilation utilisée ici et réexécuter cmake. Vous pouvez aussi terminer l'assistant directement The directory %1 does not contain a cbp file. Qt Creator needs to create this file by running cmake. Some projects require command line arguments to the initial cmake call. - Le répertoire %1 ne contient pas de fichier cbp. Qt Creator a besoin de créer ce fichier en exécutant cmake. Certains projets nécessitent des arguments de ligne de commande pour le premier appel à cmake. + Le répertoire %1 ne contient pas de fichier cbp. Qt Creator a besoin de créer ce fichier en exécutant cmake. Certains projets nécessitent des arguments de ligne de commande pour le premier appel à cmake. The directory %1 contains an outdated .cbp file. Qt Creator needs to update this file by running cmake. If you want to add additional command line arguments, add them below. Note that cmake remembers command line arguments from the previous runs. - le répertoire %1 contient un fichier cbp obsolète. Qt Creator a besoin de mettre à jour ce fichier en exécutant cmake. Si vous voulez passer des arguments de ligne de commande, ajoutez les ci dessous. Notez que cmake conserve les arguments passés lors des exécutions précédentes. + Le répertoire %1 contient un fichier cbp obsolète. Qt Creator a besoin de mettre à jour ce fichier en exécutant cmake. Si vous voulez passer des arguments de ligne de commande supplémentaires, ajoutez les ci dessous. Notez que cmake conserve les arguments passés lors des exécutions précédentes. The directory %1 specified in a build-configuration, does not contain a cbp file. Qt Creator needs to recreate this file, by running cmake. Some projects require command line arguments to the initial cmake call. Note that cmake remembers command line arguments from the previous runs. - Le répertoire %1 sélectionné dans une des configuration de compilation, ne contient pas de fichier cbp. Qt Creator a besoin de mettre à jour ce fichier en exécutant cmake. Certains projets nécessitent des arguments de ligne de commande pour le premier appel à cmake. Notez que cmake conserve les arguments passés lors des exécutions précédentes. + Le répertoire %1, sélectionné dans une des configurations de compilation, ne contient pas de fichier cbp. Qt Creator a besoin de mettre à jour ce fichier en exécutant cmake. Certains projets nécessitent des arguments de ligne de commande pour le premier appel à cmake. Notez que cmake conserve les arguments passés lors des exécutions précédentes. @@ -534,7 +529,7 @@ NMake Generator (%1) - Générateur NMake (%1) + Générateur NMake (%1) @@ -576,8 +571,7 @@ <b>Make:</b> %1 %2 - Traduire Make ? Construire ? - <b>Make : </b>%1 %2 + <b>Make : </b>%1 %2 @@ -590,7 +584,7 @@ Please enter the directory in which you want to build your project. Qt Creator recommends to not use the source directory for building. This ensures that the source directory remains clean and enables multiple builds with different settings. - Veuillez spécifier le répertoire où vous voulez compiler votre projet. Qt Creator recommande de de pas utiliser le répertoire source pour la compilation. Cela garantit que le répertoire source reste propre et permet des compilations multiples avec différents paramètres. + Veuillez spécifier le répertoire où vous voulez compiler votre projet. Qt Creator recommande de de pas utiliser le répertoire source pour la compilation. Cela garantit que le répertoire source reste propre et permet des compilations multiples avec différents paramètres. @@ -644,12 +638,12 @@ Symbol paths: - Chemins des symboles : + Chemins des symboles : Source paths: - Chemins des sources : + Chemins des sources : @@ -675,7 +669,7 @@ Verbose Symbol Loading - + Chargement verbeux des symboles @@ -705,37 +699,38 @@ &Code Pasting - + &Collage de code Paste Snippet... - Coller le fragment... + snippet is quite common in French for programming + Coller le snippet... Alt+C,Alt+P - + Alt+C,Alt+P Fetch Snippet... - Récuperer le fragment... + Récuperer le snippet... Alt+C,Alt+F - + Alt+C,Alt+F This protocol supports no listing - Ce protocole ne prend en charge aucune liste + Ce protocole ne prend en charge le listage Waiting for items - En attente des éléments + En attente des éléments @@ -766,7 +761,7 @@ Paste: quelque chose de plus français pour la référence de paste? - Collage : + Collage : @@ -799,7 +794,7 @@ Display Output Pane after sending a post - Afficher le résultat après publication + Afficher le résultat après publication @@ -814,17 +809,17 @@ Pastebin.ca - + Pastebin.ca Pastebin.com - + Pastebin.com Code Pasting - + Collage de code @@ -837,7 +832,7 @@ Checking this will populate the source file view automatically but might slow down debugger startup considerably. - Cocher cette case peuplera automatiquement la vue du fichier source mais risque de ralentir considérablement le lancement du débogueur. + Cocher cette case peuplera automatiquement la vue du fichier source mais risque de ralentir considérablement le lancement du débogueur. @@ -847,19 +842,19 @@ Use alternating row colors in debug views - Alterner la couleur de ligne dans le débogueur visuel + Alterner la couleur de ligne dans le débogueur visuel When this option is checked, 'Step Into' compresses several steps into one in certain situations, leading to 'less noisy' debugging. So will, e.g., the atomic reference counting code be skipped, and a single 'Step Into' for a signal emission will end up directly in the slot connected to it. - Lorsque cette option est cochée, 'Entrer dans' compresse plusieurs étapes en une dans certains cas, afin d'éviter une 'pollution' du déboguage. Cela conduit par exemple - à passer le comptage de référence atomique, et un simple 'Entrer dans' depuis une émission de signal conduit directement au slot qui y est connecté. + Lorsque cette option est cochée, « Entrer dans » compresse plusieurs étapes en une dans certains cas, afin d'éviter une 'pollution' du déboguage. Cela conduit par exemple + à passer le comptage de référence atomique, et un simple « Entrer dans » depuis une émission de signal conduit directement au slot qui y est connecté. Skip known frames when stepping - Passer les trames connues en pas à pas + Passer les trames connues en pas à pas Checking this will enable tooltips for variable values during debugging. Since this can slow down debugging and does not provide reliable information as it does not use scope information, it is switched off by default. @@ -889,12 +884,12 @@ Show a message box when receiving a signal message box -> message, boîte de message, fenêtre de message ? - Afficher un message à la réception d'un signal + Afficher un message à la réception d'un signal Use tooltips in main editor while debugging - Utiliser les info-bulles dans l'éditeur principal lors du déboguage + Utiliser les info-bulles dans l'éditeur principal lors du déboguage @@ -902,37 +897,37 @@ Code Completion - Complétion du code + Complétion du code Do a case-sensitive match for completion items. - Tenir compte de la casse lors de la complétion. + Tenir compte de la casse lors de la complétion. &Case-sensitive completion - Sensible à la &casse + Sensible à la &casse Automatically insert (, ) and ; when appropriate. - Insérer (, ) et; si approprié. + Insérer automatiquement (, ) et; si approprié. &Automatically insert brackets - Insertion &automatique des parenthèses + Insertion &automatique des parenthèses Insert the common prefix of available completion items. - Insérer le préfixe commun des élements disponibles. + Insérer le préfixe commun des élements disponibles. Autocomplete common &prefix - Autocomplétion pour le &préfixe commun + Autocomplétion pour le &préfixe commun @@ -977,7 +972,7 @@ Existing files - Fichiers existants + Fichiers existants @@ -1022,7 +1017,7 @@ Voulez vous les écraser? Revert to Saved - Revenir à la version sauvegardée + Revenir à la version sauvegardée @@ -1033,13 +1028,13 @@ Voulez vous les écraser? Close All - Fermer Tout + Fermer Tout Close Others - Fermer les Autres Éditeurs + Fermer les autres éditeurs Next Document in History @@ -1052,102 +1047,102 @@ Voulez vous les écraser? Next Open Document in History - + Document ouvert suivant dans l'historique Previous Open Document in History - + Document ouvert précédent dans l'historique Go Back - Précédent + Précédent Go Forward - Suivant + Suivant Open in External Editor - Ouvrir dans l'Éditeur Externe + Ouvrir dans l'éditeur externe Revert File to Saved - Restaurer le fichier sauvegardé + Restaurer le fichier sauvegardé Ctrl+W - + Ctrl+W Ctrl+Shift+W - + Ctrl+Shift+W Alt+Tab - + Alt+Tab Ctrl+Tab - + Ctrl+Tab Alt+Shift+Tab - + Alt+Shift+Tab Ctrl+Shift+Tab - + Ctrl+Shift+Tab Ctrl+Alt+Left - + Ctrl+Alt+Left Alt+Left - + Alt+Left Ctrl+Alt+Right - + Ctrl+Alt+Right Alt+Right - + Alt+Right Meta+E - + Meta+E Ctrl+E - + Ctrl+E Split - Scinder + Scinder Split Side by Side - Scinder Verticalement + Scinder verticalement @@ -1167,48 +1162,48 @@ Voulez vous les écraser? %1,2 - + %1,2 %1,3 - + %1,3 %1,0 - + %1,0 %1,1 - + %1,1 %1,o - + %1,o &Advanced - &Avancé + &Avancé Alt+V,Alt+I - + nav.net All Files (*) - + Tout les fichiers (*) Opening File - Ouverture du Fichier + Ouverture du Fichier @@ -1228,18 +1223,18 @@ Voulez vous les écraser? The file %1 is read only. - Le fichier %1 est en lecture seule. + Le fichier %1 est en lecture seule. Open with VCS (%1) - Ouvrir avec VCS (%1) + Ouvrir avec VCS (%1) Make writable - Rendre Inscriptible + Rendre inscriptible @@ -1250,17 +1245,17 @@ Voulez vous les écraser? Failed! - Échec! + Échec ! Could not open the file for editing with SCC. - Impossible d'ouvrir le fichier pour écrire avec SCC. + Impossible d'ouvrir le fichier pour édition avec SCC. Could not set permissions to writable. - Impossible d'attribuer les droits en écriture. + Impossible d'attribuer les droits en écriture. @@ -1275,12 +1270,12 @@ Voulez vous les écraser? &Save %1 - Enregi&strer %1 + Enregi&strer %1 Revert %1 to Saved - Restaurer %1 + Restaurer %1 à la version sauvegardée @@ -1290,17 +1285,17 @@ Voulez vous les écraser? Close All Except %1 - Fermer tout sauf %1 + Fermer tout sauf %1 You will lose your current changes if you proceed reverting %1. - Vous perdrez tous les changements en cours si vous restaurez %1. + Vous perdrez tous les changements en cours si vous restaurez %1. Proceed - Continuer + Continuer @@ -1326,23 +1321,22 @@ Voulez vous les écraser? Cannot save file - sauver ou sauvegarder ? - Impossible de sauver le fichier + Impossible d'enregistrer le fichier Cannot save changes to '%1'. Do you want to continue and lose your changes? - Impossible de sauvegarder les modifications dans '%1'. Voulez vous continuer et perdre vos modifications? + Impossible d'enregistrer les modifications dans '%1'. Voulez vous continuer et perdre vos modifications? Overwrite? - Écraser ? + Écraser ? An item named '%1' already exists at this location. Do you want to overwrite it? - Un élément nommé '%1' existe déjà. Voulez-vous l'écraser ? + Un élément nommé '%1' existe déjà. Voulez-vous l'écraser ? @@ -1364,7 +1358,7 @@ Voulez vous les écraser? Edit sonne mieux pour le mode... non ? - Éditeur + Éditeur @@ -1372,12 +1366,12 @@ Voulez vous les écraser? Split Left/Right - Scinder gauche/droite + Scinder gauche/droite Split Top/Bottom - Scinder haut/bas + Scinder haut/bas @@ -1397,7 +1391,7 @@ Voulez vous les écraser? Restore Default Layout - Restaurer l'arrangement par défaut + Restaurer l'arrangement par défaut @@ -1407,7 +1401,7 @@ Voulez vous les écraser? Alt+Left - + Alt+Gauche @@ -1417,7 +1411,7 @@ Voulez vous les écraser? Alt+Right - + Alt+Droite @@ -1449,13 +1443,13 @@ Voulez vous les écraser? Go Forward - Suivant + Suivant Placeholder - Signet + Paramètre fictif @@ -1465,17 +1459,17 @@ Voulez vous les écraser? Make writable - Rendre inscriptible + Rendre inscriptible File is writable - Le fichier est inscriptible + Le fichier est inscriptible Copy full path to clipboard - Copier le chemin complet vers le presse-papier + Copier le chemin complet vers le presse-papier @@ -1483,22 +1477,22 @@ Voulez vous les écraser? General settings - Réglages généraux + Réglages généraux User &interface color: - Couleur de l'&interface utilisateur : + Couleur de l'&interface utilisateur : Reset to default - Restaurer les réglages par default + Restaurer les réglages par default R - R + R @@ -1533,23 +1527,22 @@ Voulez vous les écraser? When files are externally modified: - modifié à l'extérieur ? - Quand un fichier a été modifié à l'extérieur : + Quand des fichiers ont été modifiés en dehors de Qt Creator : Always ask - Demander quoi faire + Demander quoi faire Reload all modified files - Recharger tous les fichiers modifiés + Recharger tous les fichiers modifiés Ignore modifications - Ignorer les modifications + Ignorer les modifications @@ -1572,22 +1565,22 @@ Voulez vous les écraser? &Edit - &Édition + &Édition &Tools - O&utils + O&utils &Window - F&enêtre + F&enêtre &Help - &Aide + &Aide &New... @@ -1604,17 +1597,17 @@ Voulez vous les écraser? &New File or Project... - &Nouveau fichier ou projet... + &Nouveau fichier ou projet... &Open File or Project... - &Ouvrir le fichier ou le projet... + &Ouvrir un fichier ou projet... &Open File With... - &Ouvrir le fichier avec... + Ouvrir le fichier &avec... @@ -1625,86 +1618,86 @@ Voulez vous les écraser? &Save - &Enregistrer + &Enregistrer Save &As... - Enregistrer &sous... + Enregistrer &sous... Ctrl+Shift+S - + Ctrl+Shift+S Save A&ll - &Tout enregistrer + &Tout enregistrer &Print... - Im&primer... + Im&primer... E&xit - &Quitter + &Quitter Ctrl+Q - + Ctrl+Q &Undo - Ann&uler + Ann&uler &Redo - Re&faire + Re&faire Cu&t - Co&uper + Co&uper &Copy - Cop&ier + Cop&ier &Paste - C&oller + C&oller &Select All - Tout &sélectionner + Tout &sélectionner &Go To Line... - &Aller à la ligne... + &Aller à la ligne... Ctrl+L - + Ctrl+L &Options... - &Options... + &Options... @@ -1719,7 +1712,7 @@ Voulez vous les écraser? Show Sidebar - Afficher la barre latérale + Afficher la barre latérale @@ -1729,28 +1722,28 @@ Voulez vous les écraser? About &Qt Creator - A propos de &Qt Creator + À propos de &Qt Creator About &Qt Creator... - A propos de &Qt Creator... + À propos de &Qt Creator... About &Plugins... - A propos des &Plugins... + À propos des &Plugins... New... Title of dialog - Nouveau... + Nouveau... Settings... - + Paramètres... @@ -1774,7 +1767,7 @@ Voulez vous les écraser? Split - Scinder + Scinder @@ -1787,7 +1780,7 @@ Voulez vous les écraser? Activate %1 Pane - Activer le Panneau %1 + Activer le panneau %1 @@ -1800,7 +1793,7 @@ Voulez vous les écraser? 1 - + 1 @@ -1844,7 +1837,7 @@ Voulez vous les écraser? * - + * @@ -1880,7 +1873,7 @@ Voulez vous les écraser? Output &Panes - &Paneaux de sortie + &Paneaux de sortie @@ -1893,7 +1886,7 @@ Voulez vous les écraser? Error Details - Détails de l'erreur + Détails de l'erreur @@ -1909,13 +1902,12 @@ Voulez vous les écraser? Plugin Details of %1 Détail sur le plugin %1 ? - Détail sur plugin %1 + Détails du plugin %1 Plugin Errors of %1 - Pas de s - Erreurs du plugins %1 + Erreurs du plugin %1 @@ -1923,7 +1915,7 @@ Voulez vous les écraser? Processes - Processus + Processus @@ -1987,7 +1979,7 @@ Voulez vous les écraser? Split - Scinder + Scinder @@ -2006,13 +1998,13 @@ Voulez vous les écraser? From revision %1<br/> This gets conditionally inserted as argument %8 into the description string. - Depuis la révision %1<br/> + Depuis la révision %1<br/> <h3>Qt Creator %1</h3>Based on Qt %2 (%3 bit)<br/><br/>Built on %4 at %5<br /><br/>%8<br/>Copyright 2008-%6 %7. All rights reserved.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> %4 == __DATE__ et %5 ==__TIME__. Pour les formulations légales, dans le doute, mieux vaut laisser l'anglais... - <h3>Qt Creator %1</h3>Basé sur Qt %2 (%3 bit)<br/><br/>Compilé le %4 à %5<br /><br/>%8<br/>Copyright 2008-%6 %7. Tous droits réservés.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> + <h3>Qt Creator %1</h3>Basé sur Qt %2 (%3 bit)<br/><br/>Compilé le %4 à %5<br /><br/>%8<br/>Copyright 2008-%6 %7. Tous droits réservés.<br/><br/>Ce programme est fournit « EN L'ÉTAT », SANS GARANTIE D'AUCUNE SORTE, INCLUANT, SANS S'Y LIMITER, LES GARANTIES D'ABSENCE DE DÉFAUT, DE QUALITÉ MARCHANDE, D'ADÉQUATION À UN USAGE PARTICULIER.<br/> @@ -2191,17 +2183,17 @@ Voulez vous les écraser? Dialog - + Boîte de dialogue TextLabel - + Label de texte CheckBox - + Case à cocher @@ -2252,7 +2244,7 @@ Voulez vous les écraser? Cannot change to working directory '%1': %2 - Impossible de changer le répertoire de travail '%1' : %2 + Impossible de changer le répertoire de travail '%1' : %2 @@ -2277,12 +2269,12 @@ Voulez vous les écraser? Cannot obtain a handle to the inferior: %1 - Impossible d'obtenir le descripteur du processus : %1 + Impossible d'obtenir le descripteur du processus : %1 Cannot obtain exit status from inferior: %1 - Impossible d'obtenir la valeur de retour du processus : %1 + Impossible d'obtenir la valeur de retour du processus : %1 @@ -2395,7 +2387,7 @@ Voulez vous les écraser? Inherits QObject - + hérite de QObject @@ -2494,7 +2486,7 @@ Voulez vous les écraser? <Enter_Name> - <Entrer_Nom> + <Entrer_Nom> @@ -2561,7 +2553,7 @@ Voulez vous les écraser? The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes? - + Le fichier %1 n'est pas enregistré et a été modifé en dehors de Qt Creator. Voulez-vous le recharger et ignorer vos changements ? @@ -2579,12 +2571,12 @@ Voulez vous les écraser? This change cannot be undone. - + Ce changement ne peut être annulé. Yes, I know what I am doing. - Simplifier les déclarations + Simplifier les déclarations. Simplify Declarations @@ -2638,7 +2630,7 @@ Voulez vous les écraser? C++ - + C++ @@ -2683,12 +2675,12 @@ Voulez vous les écraser? Find Usages - Trouver des utilisations + Trouver des utilisations Ctrl+Shift+U - Ctrl+Shift+U + Ctrl+Shift+U @@ -2737,8 +2729,8 @@ Voulez vous les écraser? Scanning - Balayage ? - Numérisation + Balayage ? (Numérisation ça fait franchement scanner) + Analyse @@ -2756,7 +2748,7 @@ Voulez vous les écraser? C++ - + C++ @@ -2799,7 +2791,7 @@ Voulez vous les écraser? ** To protect a percent sign, use '%%'. **************************************************************************/ - /************************************************************************** + /************************************************************************** ** Modèle de licence Qt Creator ** Mot-clés spéciaux: %USER% %DATE% %YEAR% ** Variables d'environnement : %$VARIABLE% @@ -2809,7 +2801,7 @@ Voulez vous les écraser? Edit... - Éditer... + Modifier... @@ -2857,8 +2849,7 @@ Voulez vous les écraser? Switch Header/Source - "Sauter", ça pourrait prêter à confusion, non ? - Basculer entre en-tête/source + Basculer entre en-tête/source @@ -2918,20 +2909,20 @@ Voulez vous les écraser? Found an outdated version of the debugging helper library (%1); version %2 is required. - + Une version obsolète de la librairie d'assistance au déboggage a été trouvée (%1); version %2 requise. %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 - - - + + %n type connu, version de Qt : %1, espace de noms Qt : %2, version du collecteur : %3 + %n types connus, version de Qt : %1, espace de noms Qt : %2, version du collecteur : %3 <none> - + <aucun> @@ -2975,7 +2966,7 @@ Voulez vous les écraser? Select start address - Sélectionner l'adresse de départ + Sélectionner l'adresse de départ @@ -3092,7 +3083,7 @@ Voulez vous les écraser? Address - + Adresse @@ -3210,33 +3201,33 @@ Voulez vous les écraser? Version: %1 - + Version : %1 <html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html> - + <html>La version des <i>Outils de déboggage pour Windows</i>installée (%1) est relativement ancienne. Une mise à jour vers la version %2 est recommandée pour un affichage correct des types Qt.</html> Debugger - Débogueur + Débogueur The dumper library was not found at %1. - + La bibliothèque de collection de données n'a pas été trouvée en %1. The console stub process was unable to start '%1'. - + Le processus de console n'a pas pu lancer '%1'. Attaching to core files is not supported! - A noun could be better instead of Attacher - Attacher à un fichier core n'est pas supporté! + A noun could be better instead of Attacher ← attachement ? + L'attachement à un fichier core n'est pas supporté! @@ -3277,38 +3268,38 @@ Voulez vous les écraser? Reverse stepping is not implemented. - L'échelonnage inversé n'est pas implémenté. + Le déplacement inversé n'est pas implémenté. Thread %1 cannot be stepped. - + Le fil d'éxecution %1 ne peut être parcouru pas à pas. Stepping %1 Intensification ? - Echellonage %1 + Pas à pas %1 Running to 0x%1... - + Lancement à l'adresse 0x%1… Running requested... - + Éxecution requise… Running up to %1:%2... - + Éxecution jusqu'à %1 : %2… Running up to function '%1()'... - + Éxecution jusqu'à la fonction '%1()'… @@ -3340,12 +3331,12 @@ Voulez vous les écraser? Ignoring initial breakpoint... - + Point d'arrêt initial ignoré… Interrupted in thread %1, current thread: %2 - + Interruption dans le fil d'éxecution %1, fil d'éxecution courant : %2 @@ -3384,47 +3375,48 @@ Voulez vous les écraser? Loading the custom dumper library '%1' (%2) ... - + Chargement de la bibliothèque du collecteur de données personnalisé '%1' (%2)... Loading of the custom dumper library '%1' (%2) failed: %3 - + Échec du chargement de la bibliothèque du collecteur de données personnalisé '%1' (%2) : %3 Loaded the custom dumper library '%1' (%2). - + Bibliothèque du collecteur de données personnalisé '%1' chargée (%2). Stopped / Custom dumper library initialized. - + Stopped? + Collecteur de données personnalisé initialisé. Disabling dumpers due to debuggee crash... - + Désactive les collecteurs de données à cause d'un crash du débogué... The debuggee does not appear to be Qt application. - + Le débogué ne semble pas être une application Qt. Initializing dumpers... - + Initialise les collecteurs de données... The custom dumper library could not be initialized: %1 - + La bibliothèque de collecteurs de données personnalisé n'a pas pu être initialisé : %1 Querying dumpers for '%1'/'%2' (%3) - + Recherche de collecteur pour '%1'/'%2' (%3) @@ -3511,8 +3503,8 @@ Voulez vous les écraser? Step Into - Pas sur??? - Aller dans + check all the instances of "Step Into" if you modify this one + Entrer dans @@ -3543,12 +3535,12 @@ Voulez vous les écraser? Add to Watch Window - + Ajouter à la fenêtre d'observeur Reverse Direction - + Inverser la direction @@ -3619,17 +3611,17 @@ Voulez vous les écraser? Turn off helper usage - + Désactiver cet avertissement The debugger could not load the debugging helper library. - + Le débogueur n'a pas pu charger la bibliothèque d'aide au déboguage. The debugging helper is used to nicely format the values of some Qt and Standard Library data types. It must be compiled for each used Qt version separately. This can be done in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' in the 'Debugging Helper' row. - + L'aide au déboguage est utilisé pour visualiser facilement les valeurs de certains types de Qt et de la bibliothèque standard C++. Elle doit être compilé séparément pour chaque version de Qt. Ceci peut être fait dans la page de préférences de Qt en sélectionnant une version de Qt et en cliquant sur "Recompiler" à la ligne "Aide au déboguage". @@ -3670,17 +3662,17 @@ Voulez vous les écraser? Close Debugging Session - + Fermer la session de déboguage A debugging session is still in progress. Would you like to terminate it? - + Une session de déboguage est en cours. Voulez vous la terminer ? A debugging session is still in progress. Terminating the session in the current state (%1) can leave the target in an inconsistent state. Would you still like to terminate it? - + Une session de déboguage est en cours. Terminer la session dans l'état courant (%1) risque de laisser la cible dans un état incohérent. Voulez vous la terminer néanmoins ? @@ -3688,38 +3680,38 @@ Voulez vous les écraser? Option '%1' is missing the parameter. - Option '%1' le paramètre est manquant. + Option '%1' : le paramètre est manquant. The parameter '%1' of option '%2' is not a number. - Le paramètre '%1' de l'option '%2' n'est pas un nombre. + Le paramètre '%1' de l'option '%2' n'est pas un nombre. Invalid debugger option: %1 - Option du débogueur invalide : %1 + Option du débogueur invalide : %1 Error evaluating command line arguments: %1 - Erreur durant l'évaluation des arguments de la ligne de commande : %1 + Erreur durant l'évaluation des arguments de la ligne de commande : %1 Start and Debug External Application... - Démarrer et déboguer une application externe... + Démarrer et déboguer une application externe... Attach to Running External Application... - Attacher à l'application externe en cours d'éxecution... + Attacher à l'application externe en cours d'éxecution... Attach to Core... idem, core? - Attacher au core... + Attacher au core... @@ -3754,7 +3746,7 @@ Voulez vous les écraser? Reset to default layout - Restaurer la disposition par défaut + Restaurer la disposition par défaut @@ -3765,12 +3757,12 @@ Voulez vous les écraser? Attaching to PID %1. Attachement ? - Attachement au PID %1. + Attachement au PID %1. Remove Breakpoint - Supprimer le point d'arrêt + Supprimer le point d'arrêt @@ -3785,25 +3777,25 @@ Voulez vous les écraser? Set Breakpoint - Définir un point d'arrêt + Définir un point d'arrêt Warning Alerte? - Avertissement + Avertissement Cannot attach to PID 0 de s'attacher ? Pas sur - Impossible de s'attacher au PID 0 + Impossible de s'attacher au PID 0 Attaching to core %1. core, toujours? - Attachement au core %1. + Attachement au core %1. @@ -3811,7 +3803,7 @@ Voulez vous les écraser? Debugger properties... - + propriétés du débogueur… @@ -3826,7 +3818,7 @@ Voulez vous les écraser? Use alternating row colors - + Utiliser des couleurs de lignes alternées @@ -3836,62 +3828,62 @@ Voulez vous les écraser? Log time stamps - + horodater le journal Operate by instruction - + opérer par instruction This switches the debugger to instruction-wise operation mode. In this mode, stepping operates on single instructions and the source location view also shows the disassembled instructions. - + Ceci passe le débogueur en mode instruction par instruction. Dans ce mode, avancer pas à pas agit sur une seul instruction, et la vue des source affiche aussi les instructions désassemblés. Dereference pointers automatically - + déréférencer les pointeurs automatiquement This switches the Locals&Watchers view to automatically derefence pointers. This saves a level in the tree view, but also loses data for the now-missing intermediate level. - + Ceci active le déférencement automatique des pointeurs dans les vues "Variables locales" et "Observateur". Ceci réduit l'arbre d'un niveau, mais certaines données sont cachées. Watch expression "%1" - + Observer l'expression "%1" Remove watch expression "%1" - + Retirer "%1" des expressions à observer Watch expression "%1" in separate window - + Observer l'expression "%1" dans une fenêtre séparée Use debugging helper - + utiliser l'assistant de déboguage Debug debugging helper - + Utiliser les aides au déboguage Use code model - + Utiliser le modèle de code Recheck debugging helper availability - + Revérifier la disponibilité de l'assistant de déboguage @@ -3901,7 +3893,7 @@ Voulez vous les écraser? Use tooltips in main editor when debugging - + Utiliser les info-bulles dans l'éditeur principal lors du déboguage @@ -3911,57 +3903,57 @@ Voulez vous les écraser? Use tooltips in locals view when debugging - + Utiliser des info-bulles dans la vue "variables locales" lors du déboguage Checking this will enable tooltips in the locals view during debugging. - + Cocher ceci activera les info-bulles dans la vue des variables locales lors du déboguage. Use tooltips in breakpoints view when debugging - + Utiliser les info-bulles dans la vue des points d'arrêts lors du déboguage Checking this will enable tooltips in the breakpoints view during debugging. - + Cocher ceci actiera les info-bulles dans la vue des points d'arrêt lors du déboguage. Show address data in breakpoints view when debugging - + Afficher l'adresse des données dans la vue des points d'arrêts lors du déboguage Checking this will show a column with address information in the breakpoint view during debugging. - + Cocher ceci affichera l'adresse des données dans la vue des points d'arrêts lors du déboguage. Show address data in stack view when debugging - + Afficher les adresses des données dans la vue de la pile lors du déboguage Checking this will show a column with address information in the stack view during debugging. - + Cocher ceci affichera les adresses des données dans la vue de la pile lors du déboguage. Automatically quit debugger - + Quitter le déboggueur automatiquement List source files - + Lister les fichiers source Skip known frames - + Sauter les séquences connues @@ -3971,12 +3963,12 @@ Voulez vous les écraser? Reload full stack - + Recharger l'intégralité de la pile Execute line - + Executer la ligne @@ -3984,17 +3976,17 @@ Voulez vous les écraser? Debugging Helper - + Assistant de déboguage Choose DebuggingHelper Location - + Choisir l'emplacement de l'assistant de déboguage Ctrl+Shift+F11 - + Ctrl+Maj+F11 @@ -4002,92 +3994,93 @@ Voulez vous les écraser? The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. - + Échec du démarrage du processus Gdb. Soit le programme '%1' est manquant, soit les droîts sont insufisants pour exécuter le programme. The Gdb process crashed some time after starting successfully. - + Le processus Gdb a crashé après avoir démarré correctement. The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. - + this string appear twice in the translation + La dernière fonction waitFor...() est arrivé à échéance. Le status de QProcess est inchangé, vous pouvez essayer d'appeler waitFor...() à nouveau. An error occurred when attempting to write to the Gdb process. For example, the process may not be running, or it may have closed its input channel. - + Une érreur s'est produite lors d'une tentative d'écriture sur le processus Gdb. Le processus peut ne pas être démarré, ou il peut avoir fermé son entrée standard. An error occurred when attempting to read from the Gdb process. For example, the process may not be running. - + Une erreur s'est produite lors d'un tentative de lecture depuis le processus Gdb. Le processus peut ne pas être en cours d'exécution. Library %1 loaded. - + Bibliothèque %1 chargée. Library %1 unloaded. - + Bibliothèque %1 déchargée. Thread group %1 created. - + Group de thread %1 créé. Thread %1 created. - + Thread %1 créé. Thread group %1 exited. - + Groupe de thread %1 terminé. Thread %1 in group %2 exited. - + Thread %1 dans le groupe %2 terminé. Thread %1 selected. - + Thread %1 sélecitonné. Reading %1... - + Lecture de %1... Stopping temporarily. - + Arrêt temporaire. Jumped. Stopped. - + Sauté. Arrêté. Processing queued commands. - + Traite les commandes en file d'attente. Loading %1... - + Charge %1... Stopped at breakpoint. - + Arrêté au point d'arrêt. @@ -4098,7 +4091,7 @@ Voulez vous les écraser? An unknown error in the Gdb process occurred. - + Une erreur inconnue est survenue dans le processus Gdb. @@ -4108,38 +4101,38 @@ Voulez vous les écraser? Stop requested... - + Arrêt demandé... Executable failed - + Échec de l'exécutable Process failed to start. - + Le processus n'a pu pas démarrer. Executable failed: %1 - + Échec de l'exécutable : %1 Program exited with exit code %1. - + Le programme s'est terminé avec le code de sortie %1. Program exited after receiving signal %1. - + Le programme s'est terminé après la reception du signal %1. Program exited normally. - + Le programme s'est terminé normallement. @@ -4150,12 +4143,12 @@ Voulez vous les écraser? <Unknown> - + <inconnu> Signal received - + Signal reçu @@ -4312,29 +4305,30 @@ Using gdb 6.7 or later is strongly recommended. Unable to run '%1': %2 - + Impossible d'exécuter '%1' : %2 Execution Error - + Erreur d'exécution Cannot continue debugged process: - + Impossible de continuer le processus débogué : + Continuing after temporary stop... - + Continu après un arrêt temporaire... <unknown> End address of loaded module - + <inconnue> @@ -4368,37 +4362,37 @@ Using gdb 6.7 or later is strongly recommended. <0 items> - + <0 éléments> <%n items> In string list - - + <%n élément> + <%n éléments> <shadowed> - + <%n élément> <n/a> - + <%n élément> <anonymous union> - + <union anonyme> <no information> About variable's value - + <aucune information> @@ -4447,12 +4441,12 @@ Using gdb 6.7 or later is strongly recommended. Modules - + Modules Update module list - + Mettre à jour la liste des modules @@ -4467,62 +4461,62 @@ Using gdb 6.7 or later is strongly recommended. Show source files for module "%1" - + Afficher les fichiers source du module "%1" Load symbols for all modules - + Charger les symboles pour tout les modules Load symbols for module - + Charcher les symboles pour le module Edit file - + Éditer le fichier Show symbols - + Afficher les symboles Load symbols for module "%1" - + Charger les symboles pour le module "%1" Edit file "%1" - + Éditer le fichier "%1" Show symbols in file "%1" - + Affichier les symboles dans le fichier "%1" Address - + Adresse Code - + Code Symbol - + Symbole Symbols in "%1" - + Symboles dans "%1" @@ -4530,17 +4524,17 @@ Using gdb 6.7 or later is strongly recommended. Cannot create temporary file: %1 - + Impossible de créer le fichier temporaire : %1 Cannot create FiFo %1: %2 - + Impossible de créer le FiFo %1 : %2 Cannot open FiFo %1: %2 - + Impossible d'ouvrir le FiFo %1 : %2 @@ -4553,7 +4547,7 @@ Using gdb 6.7 or later is strongly recommended. Value (base %1) - + Valeur (base %1) @@ -4561,37 +4555,37 @@ Using gdb 6.7 or later is strongly recommended. Registers - + Registres Open memory editor - + Ouvrir l'éditeur de mémoire Open memory editor at %1 - + Ouvrir l'éditeur de mémoire à l'adresse %1 Hexadecimal - + Hexadécimal Decimal - + Décimal Octal - + Octal Binary - + Binaire @@ -4606,7 +4600,7 @@ Using gdb 6.7 or later is strongly recommended. Reload register listing - + Recharger la liste des registres @@ -4614,22 +4608,22 @@ Using gdb 6.7 or later is strongly recommended. Running requested... - + Exécution... '%1' contains no identifier - + '%1' ne contient pas d'identifiant String literal %1 - + Chaîne de caractères %1 Cowardly refusing to evaluate expression '%1' with potential side effects - + Refuse lâchement d'évaluer l'expression '%1' avec des effects secondaires potentiels @@ -4643,12 +4637,12 @@ Using gdb 6.7 or later is strongly recommended. Internal name - + Nom interne Full name - + Nom complet @@ -4656,12 +4650,12 @@ Using gdb 6.7 or later is strongly recommended. Source Files - + Fichiers source Reload data - + Recharger les données @@ -4671,7 +4665,7 @@ Using gdb 6.7 or later is strongly recommended. Open file "%1"' - + Ouvrir le fichier "%1" @@ -4680,52 +4674,52 @@ Using gdb 6.7 or later is strongly recommended. Address: - + Adresse : Function: - + Fonction : File: - + Fichier : Line: - + Ligne : From: - + À partir de : To: - + Vers : ... - + ... <More> - + <plus> Level - + Niveau @@ -4745,7 +4739,7 @@ Using gdb 6.7 or later is strongly recommended. Address - + Adresse @@ -4768,27 +4762,27 @@ Using gdb 6.7 or later is strongly recommended. Address - + Adresse Thread: %1 - + Thread: %1 Thread: %1 at %2 (0x%3) - + Thread: %1 à %2 (0x%3) Thread: %1 at %2, %3:%4 (0x%5) - + Thread: %1 à %2, %3:%4 (0x%5) Thread ID - + ID du Thread @@ -4796,32 +4790,32 @@ Using gdb 6.7 or later is strongly recommended. Stack - + Pile Copy contents to clipboard - + Copier le contenu dans le presse papier Open memory editor - + Ouvrir l'éditeur de mémoire Open memory editor at %1 - + Ouvrir l'éditeur de mémoire à l'adresse %1 Open disassembler - + Ouvrir le désasembleur Open disassembler at %1 - + Ouvrir le désasembleur à l'adresse %1 @@ -4844,12 +4838,12 @@ Using gdb 6.7 or later is strongly recommended. Executable: - + Exécutable : Arguments: - + Arguments : @@ -4865,7 +4859,7 @@ Using gdb 6.7 or later is strongly recommended. Thread - + Thread @@ -4884,12 +4878,12 @@ Using gdb 6.7 or later is strongly recommended. <not in scope> - + <pas dans la portée> %1 <shadowed %2> - + %1 <shadowed %2> @@ -4897,7 +4891,7 @@ Using gdb 6.7 or later is strongly recommended. Expression - + Expression @@ -4907,57 +4901,57 @@ Using gdb 6.7 or later is strongly recommended. ... <cut off> - + ... <coupé> Value - + Valeur Object Address - + Adresse de l'objet Stored Address - + Adresse stockée Root - + Racine Locals - + Variables locales Watchers - + Observateurs Tooltip - + Info-bulle <Edit> - + <Éditer> Internal ID - + ID interne Generation - + Génération @@ -4965,22 +4959,22 @@ Using gdb 6.7 or later is strongly recommended. decimal - + décimal hexadecimal - + hexadécimal binary - + binaire octal - + octal @@ -4990,7 +4984,7 @@ Using gdb 6.7 or later is strongly recommended. Value - + Valeur @@ -5003,47 +4997,47 @@ Using gdb 6.7 or later is strongly recommended. Locals and Watchers - + Variables locales et observateurs Change format for type '%1' - + Modifier le format pour le type '%1' Change format for expression '%1' - + Modifier le format pour l'expression '%1' Change format for type - + Modifier le format pour le type Change format for expression - + Modifier le format pour l'expression Select widget to watch - + Sélectionner le widget à observer Open memory editor... - + Ouvrir l'éditeur de mémoire... Open memory editor at %1 - + Ouvrir l'éditeur de mémoire à l'adresse %1 Refresh code model snapshot - + Rafraîchir l'instanté ud code @@ -5058,7 +5052,7 @@ Using gdb 6.7 or later is strongly recommended. Insert new watch item - + Insérer un nouvel élémen observé @@ -5066,12 +5060,12 @@ Using gdb 6.7 or later is strongly recommended. Clear contents - Effacer le contenu + Effacer le contenu Save contents - Sauver le contenu + Sauver le contenu @@ -5079,47 +5073,49 @@ Using gdb 6.7 or later is strongly recommended. Debugging helper - + Aide au débogage This will enable nice display of Qt and Standard Library objects in the Locals&Watchers view - + Traduction de Locals&Watchers ? + Cela permettra un affichage correct des objets de Qt et de la bibliothèque standard dans a vue Locals&Watchers Use debugging helper - + Utiliser l'aide au déboguage This will load a dumper library - + Ceci charchera une bibliothèque de collecte de données Use debugging helper from custom location - + Utiliser un collecteur de données à partir d'un emplacement personnalisé Location: - + Emplacement : Debug debugging helper - + Déboguer l'aide au déboguage Makes use of Qt Creator's code model to find out if a variable has already been assigned a value at the point the debugger interrupts. - + Utilise le modèle de code de Qt Creator pour trouver si une valeur à déjà été assigné à une variable au point où le débogueur interomps l'exécution. Use code model - + pas exactement ça ? + Utiliser le modèle de code @@ -5127,12 +5123,12 @@ Using gdb 6.7 or later is strongly recommended. Unable to add dependency - Impossible d'ouvrir les dépendances + Impossible d'ajouter une dépendance This would create a circular dependency. - Ceci créerais une dépendance circulaire. + Ceci créerais une dépendance circulaire. @@ -5140,17 +5136,17 @@ Using gdb 6.7 or later is strongly recommended. %1 has no dependencies. - + %1 n'a aucune dépendances. %1 depends on %2. - + %1 dépend de %2. %1 depends on: %2. - + %1 dépend de : %2. @@ -5158,27 +5154,27 @@ Using gdb 6.7 or later is strongly recommended. The file name is empty. - Le nom de fichier est vide. + Le nom de fichier est vide. XML error on line %1, col %2: %3 - Erreur XML à la ligne %1, col %2: %3 + Erreur XML à la ligne %1, col %2 : %3 The <RCC> root element is missing. - L'élement racine <RCC> est manquant. + L'élement racine <RCC> est manquant. Designer - + Designer Class Generation - + Génération de classe @@ -5186,7 +5182,7 @@ Using gdb 6.7 or later is strongly recommended. Qt Designer Form Class - + Classe d'interface graphique Qt Designer @@ -5194,22 +5190,22 @@ Using gdb 6.7 or later is strongly recommended. Choose a class name - + Choisissez un nom de classe Class - + Classe Configure... - Configurer... + Configurer... %1 - Error - + %1 - Erreur @@ -5217,27 +5213,27 @@ Using gdb 6.7 or later is strongly recommended. Qt - Qt + Qt Qt Designer Form - + Interface graphique Qt Designer Creates a Qt Designer form file (.ui). - + Crée un fichier d'interface graphique Qt Designer (.ui). Qt Designer Form Class - + Classe d'interface graphique Qt Designer Creates a Qt Designer form file (.ui) with a matching class. - + Crée un fichier d'interface graphique Qt Designer (.ui) avec une classe correspondante. @@ -5246,115 +5242,117 @@ Using gdb 6.7 or later is strongly recommended. Widget Box - + Liste des widgets Object Inspector - + Je trouve que "Inspecteur d'objet" est peu adapté. Explorateur d'objet n'est pas excellent non plus, à changer surement. + Explorateur d'objet Property Editor - + Editeur de propriété Signals & Slots Editor - + Editeur de Signaux & Slots Action Editor - + Editeur d'Action For&m editor - + Editeur d'&interface graphique Edit widgets - + Éditer les widgets F3 - + F3 Edit signals/slots - + Éditer signaux/slots F4 - + F4 Edit buddies - + Je traduis "buddies" par "amis" même si c'est incorrect puisque la traduction exacte est "potes". Seuleument "potes" est trop familier. "Copains" serait plus convenable ? + Éditer les amis Edit tab order - + Éditer l'ordre des tab Meta+H - + Meta+H Ctrl+H - + Ctrl+H Meta+L - + Meta+L Ctrl+L - + Ctrl+L Meta+G - + Meta+G Ctrl+G - + Ctrl+G Meta+J - + Meta+J Ctrl+J - + Ctrl+J Views - + Vues Signals && Slots Editor - + Editeur de Signaux && Slots @@ -5364,32 +5362,32 @@ Using gdb 6.7 or later is strongly recommended. Reset to Default Layout - + Restaurer la disposition par défaut Ctrl+Alt+R - + Ctrl+Alt+R About Qt Designer plugins.... - + À propos des plugins Qt Designer.... Preview in - + Aperçu dans Designer - + Designer The image could not be created: %1 - + L'image ne peut pas être créée: %1 @@ -5397,12 +5395,12 @@ Using gdb 6.7 or later is strongly recommended. Choose a form template - + Choisir un modèle d'interface graphique %1 - Error - + %1 - Erreur @@ -5410,17 +5408,17 @@ Using gdb 6.7 or later is strongly recommended. Error saving %1 - + Erreur lors de l'enregistrement de %1 Unable to open %1: %2 - + Impossible d'ouvrir %1 : %2 Unable to write to %1: %2 - + Impossible d'écrire dans %1 : %2 @@ -5428,7 +5426,7 @@ Using gdb 6.7 or later is strongly recommended. Qt Designer Form - + Interface graphique Qt Designer @@ -5436,23 +5434,25 @@ Using gdb 6.7 or later is strongly recommended. The class definition of '%1' could not be found in %2. - + La déclaration de la classe %1 est introuvable dans %2. Error finding/adding a slot. - + Erreur lors de la recherche/de l'ajout d'un slot. ? + Erreur de recherche/ajout de slot. No documents matching '%1' could be found. Rebuilding the project might help. - + Impossible de trouver un document correspondant à %1. +Regénérer le projet peut résoudre ce problème. Unable to add the method definition. - + Impossible d'ajouter la déclaration de la méthode. @@ -5460,17 +5460,17 @@ Rebuilding the project might help. Registered Documentation - + Documentation enregistrée Add... - Ajouter... + Ajouter... Remove - + Supprimer @@ -5480,7 +5480,9 @@ Rebuilding the project might help. Use Virtual Box Note: This adds the toolchain to the build environment and runs the program inside a virtual machine. It also automatically sets the correct Qt version. - + Utiliser Virtual Box +Note : ceci ajoute la chaîne d'outil à l'environnement de compilation et exécute le programme à l'intérieur d'une machine virtuelle. +La version de Qt est aussi définie automatiquement. @@ -5493,52 +5495,53 @@ It also automatically sets the correct Qt version. Name: - + Nom : Version: - + Version : Compatibility Version: - + Version compatible : Vendor: - + Vendeur : Url: - + Url : Location: - + Emplacement : Description: - + Description : Copyright: - + Droit d'auteur ? + Copyright : License: - + Licence : Dependencies: - + Dépendances : @@ -5546,12 +5549,12 @@ It also automatically sets the correct Qt version. State: - + État : Error Message: - + Message d'erreur : @@ -5559,17 +5562,17 @@ It also automatically sets the correct Qt version. File does not exist: %1 - + Le fichier n'existe pas : %1 Could not open file for read: %1 - + Impossible d'ouvrir le fichier en lecture : %1 Error parsing file %1: %2, at line %3, column %4 - + Erreur pendant l'analyse du fichier %1 : %2, ligne %3, colonne %4 @@ -5577,27 +5580,27 @@ It also automatically sets the correct Qt version. State - État + État Name - Nom + Nom Version - + Version Vendor - + Vendeur Location - + Emplacement @@ -5605,82 +5608,82 @@ It also automatically sets the correct Qt version. Invalid - + Invalide Description file found, but error on read - + Description du fichier trouvé, mais erreur de lecture Read - + Lecture Description successfully read - + Description correctement lus Resolved - + Résolu Dependencies are successfully resolved - + Les dépendances ont été résolues avec succès Loaded - + Chargé Library is loaded - + Bibliothèque chargée Initialized - + Initialisé Plugin's initialization method succeeded - + Méthode d'initialisation du plugin réussi Running - + Démaré Plugin successfully loaded and running - + Plugin correctement chargé et démarré Stopped - + Arrêté Plugin was shut down - + Plugin éteind Deleted - + Supprimé Plugin ended its life cycle and was deleted - + Le plugin a terminé son cycle de vie et a été supprimé @@ -5689,30 +5692,33 @@ It also automatically sets the correct Qt version. Circular dependency detected: - + Dépendance circulaire détecté : + %1(%2) depends on - + %1(%2) dépend de + %1(%2) - + %1(%2) Cannot load plugin because dependencies are not resolved - + Impossible de charger le plugin car les dépendances ne sont pas résolues Cannot load plugin because dependency failed to load: %1(%2) Reason: %3 - + Impossible de charger le plugin car une des dépendances n'a pas pu être chargé : %1(%2) +Raison : %3 @@ -5720,12 +5726,12 @@ Reason: %3 Toggle vim-style editing - + Activer/désactiver l'édition en mode vim FakeVim properties... - + Propriétés des FakeVim... @@ -5733,93 +5739,93 @@ Reason: %3 Not implemented in FakeVim - + Pas implémenté dans FakeVim E20: Mark '%1' not set - + E20 : Marque '%1' non définie %1%2% - + %1%2% %1All - + %1Tout File '%1' exists (add ! to override) - + Le fichier '%1' existe déjà (ajoutez ! pour écraser) Cannot open file '%1' for writing - + Impossible d'ouvrir le fichier '%1' en écriture "%1" %2 %3L, %4C written - + "%1" %2 %3L, %4C écrit Cannot open file '%1' for reading - + Impossible d'ouvrir le fichier '%1' en lecture "%1" %2L, %3C - + "%1" %2L, %3C %n lines filtered - - + %n ligne filtrée + %n lignes filtrées %n lines >ed %1 time - - + %n ligne >ed %1 fois + %n lignes >ed %1 fois E512: Unknown option: - + E512 : option inconnue : search hit BOTTOM, continuing at TOP - + la recherche a atteind la fin du document, continue à partir du début search hit TOP, continuing at BOTTOM - + la recherche a ateind le début du document, continue à partir de la fin Pattern not found: - + Motif non trouvé : Already at oldest change - + Déjà au changement le plus ancien Already at newest change - + Déjà au changement le plus récent @@ -5832,7 +5838,7 @@ Reason: %3 FakeVim - + FakeVim @@ -5841,30 +5847,30 @@ Reason: %3 Quit FakeVim - + Quittez FakeVim Saving succeeded - + Succés de l'enregistrement %n files not saved - - + %n fichier n'a pas pu être enregistré + %n fichiers n'ont pas pu être enregistré Not an editor command: %1 - + Pas une commande de l'éditeur : %1 FakeVim Information - + Information sur FakeVim @@ -5872,87 +5878,87 @@ Reason: %3 Use FakeVim - + Utiliser FakeVim Vim style settings - + Paramètres de l'édition de type vim vim's "expandtab" option - + option "expandtab" de vim Expand tabulators: - + Étendre les tabulations : Highlight search results: - + Surligner les résultats de recherche : Shift width: - + Largeur d'indentation : Smart tabulators: - + Tabulation intelligente : Start of line: - + Début de ligne : vim's "tabstop" option - + option "tabstop" de vim Tabulator size: - + Taille des tabulation : Backspace: - + Touche retour : VIM's "autoindent" option - + option "autoindent" de vim Automatic indentation: - + Indentation automatique : Incremental search: - + Recherche incrémentale : Copy text editor settings - + Copier les paramètres de l'éditeur de texte Set Qt style - + Définir le style de Qt Set plain style - + Définir le style plein @@ -5960,12 +5966,12 @@ Reason: %3 Add Filter Name - + Nom du filtre à ajouter Filter Name: - + Nom du filtre : @@ -5973,17 +5979,17 @@ Reason: %3 Filters - + Filtres Attributes - + Attributs 1 - + 1 @@ -5993,7 +5999,7 @@ Reason: %3 Remove - + Supprimer @@ -6001,22 +6007,22 @@ Reason: %3 Search for... - + Recherche... Sc&ope: - + &Emplacement : &Search - + &Rechercher Search &for: - + Rec&herche : @@ -6039,17 +6045,17 @@ Reason: %3 &Find/Replace - + &Rechercher/Remplacer Find... - + Rechercher... Ctrl+Shift+F - + Ctrl+Shift+F @@ -6057,62 +6063,62 @@ Reason: %3 Current Document - + Document courrant Enter Find String - + Entrer la chaîne de recherche Ctrl+E - + Ctrl+E Find Next - + Suivant Find Previous - + Précédent Replace && Find Next - + Remplacer && Suivant Ctrl+= - + Ctrl+= Replace && Find Previous - + Remplacer && Précédent Replace All - + Remplacer tout Case Sensitive - + Sensible à la casse Whole Words Only - + Mots complets uniquement Use Regular Expressions - + Utiliser des expressions régulières @@ -6120,27 +6126,27 @@ Reason: %3 Find - + Rechercher Find: - + Rechercher : Replace with: - + Remplacer avec : All - + Tout ... - + ... @@ -6148,32 +6154,32 @@ Reason: %3 No matches found! - + Aucun résultat! Expand All - + Développer tout Replace with: - + Remplacer avec : Replace all occurrences - + Remplacer toutes les occurrences Replace - + Remplacer Search Results - + Résultat de la recherche @@ -6181,62 +6187,62 @@ Reason: %3 Gdb interaction - + Intéraction avec Gdb This is either a full absolute path leading to the gdb binary you intend to use or the name of a gdb binary that will be searched in your PATH. - + Ceci est soit un chemin absolu menant au binaire de gdb que vous désirez utiliser, soit le nom d'un binaire de gdb qui sera recherché dans le PATH. Gdb location: - + Emplacement de GDB : Environment: - + Environnement : This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up. - + Ceci est soit vide, soit pointe vers un fichier contenant les commandes gdb qui seront exécuté immédiatement après le démarrage de gdb. Gdb startup script: - + Script de démarrage de Gdb : Behaviour of breakpoint setting in plugins - + Comportement des paramètres des points d'arrêt dans les plugins This is the slowest but safest option. - + Ceci est l'option la plus lente mais la plus sûr. Try to set breakpoints in plugins always automatically. - + Essaye de définir les points d'arrêt dans les plugins automatiquement. Try to set breakpoints in selected plugins - + Essaye de définir les points d'arrêt dans les plugins sélectionnés Matching regular expression: - + Correspond à l'expression régulière : Never set breakpoints in plugins automatically - + Ne jamais définir les points d'arrêt dans les plugins automatiquement @@ -6244,12 +6250,12 @@ Reason: %3 Override %1: - + Écraser %1 : Make arguments: - + Arguments de Make : @@ -6270,17 +6276,17 @@ Reason: %3 Create - Créer + Créer New configuration - Nouvelle configuration + Nouvelle configuration New Configuration Name: - Nom de la nouvelle configuration : + Nom de la nouvelle configuration : @@ -6288,17 +6294,17 @@ Reason: %3 Build directory: - Répertoire de compilation : + Répertoire de compilation : Tool Chain: - + Chaîne d'outils : Generic Manager - + Gestionnaire générique @@ -6306,7 +6312,7 @@ Reason: %3 Override %1: - + Écraser %1 : @@ -6319,22 +6325,22 @@ Reason: %3 Import of Makefile-based Project - + Importer un projet basé sur un Makefile Creates a generic project, supporting any build system. - + Créer un projet générique, supportant n'importe quel système de compilation. Projects - + Projets The project %1 could not be opened. - + Le projet %1 ne peut pas être ouvert. @@ -6342,27 +6348,27 @@ Reason: %3 Import of Makefile-based Project - + Importer un projet basé sur un Makefile Generic Project - + Projet générique Project name: - + Nom du projet : Location: - + Emplacement : Second Page Title - + Titre de la seconde page @@ -6370,77 +6376,79 @@ Reason: %3 Branches - + Branches General information - + Informations générales Repository: - + Dépôt : Remote branches - + traduction de remote ici ? + Branches à distance Checkout - + Checkout Delete - Supprimer + Supprimer Unable to find the repository directory for '%1'. - + Impossible de trouver le dépôt de '%1'. Delete Branch - + Supprimer la branche Would you like to delete the branch '%1'? - + Souhaitez-vous supprimer la branche '%1' ? Failed to delete branch - + Échec de suppression de la branche Failed to create branch - + Échec de création de la branche Failed to stash - + Échec du stash Would you like to create a local branch '%1' tracking the remote branch '%2'? - + Souhaitez-vous créer une branche locale '%1' pour la branche à distance '%2' ? Create branch - + Créer une branche Failed to create a tracking branch - + tracking branch ? + Échec de la création d'une branche de suivi @@ -6448,22 +6456,22 @@ Reason: %3 Select a Git commit - + Sélectionner un commit Git Select Git repository - + Sélectionner un dépôt Git Error - + Erreur Selected directory is not a Git repository - + Le répertoire sélectionné n'est pas un dépôt Git @@ -6471,121 +6479,126 @@ Reason: %3 Note that the git plugin for QtCreator is not able to interact with the server so far. Thus, manual ssh-identification etc. will not work. - + marchera ou marcheront ? Le etc laisse sous entendre qu'il y aurait d'autres choses qui ne marcheraient pas. + Notez que le plugin git pour QtCreator n'est pas capable d'intéragir directement avec le serveur. Ainsi, l'identification ssh manuelle etc. ne marcheront pas. Unable to determine the repository for %1. - + Impossible de déterminer le dépôt de %1. Unable to parse the file output. - + Impossible d'analyser le fichier de sortie. Executing: %1 %2 Executing: <executable> <arguments> - + Exécution de : %1 %2 + Waiting for data... - + En attente de données... Git Diff - + Git Diff Git Diff %1 - + Git Diff %1 Git Log %1 - + Git Log %1 Git Show %1 - + Git Show %1 Git Blame %1 - + Git blame %1 Unable to add %n file(s) to %1: %2 - - - + + Impossible d'ajouter %n fichier dans %1 : %2 + Impossible d'ajouter %n fichiers dans %1 : %2 Unable to reset %n file(s) in %1: %2 - - - + + Impossible de réinitialiser %n fichier dans %1 : %2 + Impossible de réinitialiser %n fichiers dans %1 : %2 Unable to checkout %n file(s) in %1: %2 - - + Impossible de réaliser le checkout de %n fichier dans %1 : %2 + Impossible de réaliser le checkout de %n fichiers dans %1 : %2 Unable stash in %1: %2 - + Impossible d'utiliser stash dans %1 : %2 Unable to run branch command: %1: %2 - + Impossible d'exécuter la commande branch : %1 : %2 Unable to run show: %1: %2 - + Impossible d'exécuter show : %1 : %2 Changes - + Modifications You have modified files. Would you like to stash your changes? - + Vous avez modifié des fichiers. Souhaitez-vous mettre vos changements dans le stash ? Unable to obtain the status: %1 - + Impossible d'obtenir le statut : %1 The repository %1 is not initialized yet. - + Le dépôt %1 n'est pas encore initialisé. Committed %n file(s). + "commité" is common at the Oslo office, I don't know about France - - + %n fichier a été commité. + + %n fichiers ont été commité. + @@ -6593,8 +6606,10 @@ Reason: %3 Unable to commit %n file(s): %1 - - + Impossible de commiter %n fichier : %1 + + Impossible de commiter %n fichiers : %1 + @@ -6610,7 +6625,7 @@ Reason: %3 The file is not modified. - + Le fichier n'a pas été modifié. @@ -6623,117 +6638,118 @@ Reason: %3 &Git - + &Git Diff Current File - Faire un diff du fichier courant + Réaliser un diff du fichier courant Diff "%1" - Faire un diff de "%1" + Réaliser un diff de "%1" Alt+G,Alt+D - + Alt+G,Alt+D File Status - + Statut du fichier Status Related to "%1" - + Statut lié à "%1" Alt+G,Alt+S - + Alt+G,Alt+S Log File - + Réaliser un log du fichier Log of "%1" - + Réaliser un log de "%1" Alt+G,Alt+L - + Alt+G,Alt+L Blame - + Traduction autre ? + Blâmer Blame for "%1" - + Blâmer pour "%1" Alt+G,Alt+B - + Alt+G,Alt+B Undo Changes - + Annuler les changements Undo Changes for "%1" - + Annuler les changements pour "%1" Alt+G,Alt+U - + Alt+G,Alt+U Stage File for Commit - + Ajouter le fichier au staging pour commit Stage "%1" for Commit - + Ajouter "%1" au staging pour commit Alt+G,Alt+A - + Alt+G,Alt+A Unstage File from Commit - + Retirer le fichier du staging pour commit Unstage "%1" from Commit - + Retirer %1 du staging pour commit Diff Current Project - + Réaliser un diff du projet courant Diff Project "%1" - + Réaliser un diff du projet "%1" @@ -6743,82 +6759,86 @@ Reason: %3 Status Project "%1" - + Statut du projet "%1" Log Project - + Réaliser un log du projet Log Project "%1" - + Réaliser un log du projet "%1" Alt+G,Alt+K - + Alt+G,Alt+K Undo Project Changes - + Annuler les changements sur le projet Stash - + Trad ? + Cacher Saves the current state of your work. - + Sauvegarde de l'état actuel de votre travail. Pull - + Pull Stash Pop - + stash encore ? + Stash Pop Restores changes saved to the stash list using "Stash". - + Restaurer les changements sauvés dans la liste de stash à l'aide de "Stash". Commit... - + Commit... Alt+G,Alt+C - + Alt+G,Alt+C Push - + Faire un push ou push tout court ? + Push Branches... - + Branches... List Stashes - + stash ? + Liste de Stash Show Commit... - + Afficher le commit... @@ -6833,17 +6853,17 @@ Reason: %3 &Undo - + Annu&ler &Redo - + &Refaire Could not find working directory - + Impossible de trouver le répertoire de travail @@ -6853,22 +6873,22 @@ Reason: %3 Would you like to revert all pending changes to the project? - + Souhaitez-vous rétablir toues les modifications en attente sur le projet ? Another submit is currently being executed. - + Un autre submit est actuellement exécuté. Cannot create temporary file: %1 - + Impossible de créer un fichier temporaire : %1 Closing git editor - + Fermeture de l'éditeur git @@ -6886,7 +6906,7 @@ Reason: %3 The binary '%1' could not be located in the path '%2' - + Le binaire '%1' n'a pas pu être trouvé dans le chemin '%2' @@ -6894,7 +6914,7 @@ Reason: %3 Git Commit - + Git commit @@ -6902,42 +6922,42 @@ Reason: %3 General Information - + Informations générales Repository: - + Dépôt : repository - + dépôt Branch: - + Branche : branch - + branche Commit Information - + Informations de commit Author: - + Auteur : Email: - + Email : @@ -6945,12 +6965,13 @@ Reason: %3 <New branch> - + <Nouvelle branche> Type to create a new branch - + Type pas facile à traduire dans ce contexte... Taper ? + Saisir pour créer une nouvelle branche @@ -6958,62 +6979,63 @@ Reason: %3 Environment variables - + Variables d'environnement PATH: - + PATH : From system - + Parcourir <b>Note:</b> - + <b>Note :</b> Git needs to find Perl in the environment as well. - + Trop long ? + Git a également besoin de trouver Perl dans l'environnement. Log commit display count: - + Nombre de log de commit affiché : Note that huge amount of commits might take some time. - + Notez qu'un grand nombre de commit pourrait prendre un certain temps. Timeout (seconds): - + Timeout (secondes) : Prompt to submit - + Message à envoyer Git - + Git Git Settings - + Paramètres de git Omit date from annotation output - + Ne pas mettre la date sur l'annotation de sortie @@ -7023,14 +7045,18 @@ Reason: %3 '%1' failed (exit code %2). - + +'%1' échoué (code de retour %2). + '%1' completed (exit code %2). - + +'%1' terminé (code de retour %2). + @@ -7038,32 +7064,32 @@ Reason: %3 Say "&Hello World!" - + Dites "&Bonjour le monde!" &Hello World - + &Bonjour le monde Hello world! - + Bonjour le monde! Hello World PushButton! - + Touche bonjour le monde! Hello World! - + Bonjour le monde! Hello World! Beautiful day today, isn't it? - + Bonjour le monde! Belle journée aujourd'hui, n'est-ce pas ? @@ -7071,12 +7097,12 @@ Reason: %3 Focus me to activate my context! - + Donnez moi le focus pour activer mon contexte ! Hello, world! - + Bonjour, monde! @@ -7084,38 +7110,38 @@ Reason: %3 Add new page - + Ajouter une nouvelle page Print Document - Imprimer le document + Imprimer le document unknown - inconnue + inconnue Add New Page - + Ajouter une nouvelle page Close This Page - + Fermer cette page Close Other Pages - + Fermer les autres pages Add Bookmark for this Page... - + Ajouter un signet pour cette page... @@ -7124,33 +7150,34 @@ Reason: %3 Documentation - + Documentation Help - + Aide Add Documentation - + Ajouter de la documentation Qt Help Files (*.qch) - + Fichiers d'aide Qt (*.qch) The file %1 is not a valid Qt Help file! - + Le fichier %1 n'est pas un fichier d'aide Qt valide ! Cannot unregister documentation file %1! - + trad unregister ? + Impossible de désinscrire le fichier de documentation %1 ! @@ -7158,12 +7185,12 @@ Reason: %3 Filters - + Filtres Help - + Aide @@ -7171,7 +7198,7 @@ Reason: %3 Help index - + Index de l'aide @@ -7179,7 +7206,7 @@ Reason: %3 Help - + Aide @@ -7188,121 +7215,122 @@ Reason: %3 Contents - + Contenu Index - + Index Search - + Rechercher Bookmarks - Signets + Signets Home - + Accueil Previous - + Précédent Next - + Suivant Add Bookmark - Ajouter un signet + Ajouter un signet Previous Page - + Page précédente Next Page - + Page suivante Context Help - + Aide contextuelle Activate Index in Help mode - + Activer l'index en mode aide Activate Contents in Help mode - + Activer le contenu en mode aide Activate Search in Help mode - + Activer la recherche en mode aide Increase Font Size - Augmenter la taille de la police + Augmenter la taille de la police Ctrl++ - Ctrl++ + Ctrl++ Decrease Font Size - Diminuer la taille de la police + Diminuer la taille de la police Ctrl+- - Ctrl+- + Ctrl+- Reset Font Size - + Réinitialiser la taille de la police Ctrl+0 - + Ctrl+0 Unfiltered - Sans filtre + Sans filtre <html><head><title>No Documentation</title></head><body><br/><center><b>%1</b><br/>No documentation available.</center></body></html> - + <html><head><title>Aucune documentation</title></head><body><br/><center><b>%1</b><br/>Aucune documentation disponible.</center></body></html> Filtered by: - + To check: translated by "Filtre" in Qt Assistant because of way it is displayed + Filtré par : @@ -7310,22 +7338,22 @@ Reason: %3 &Copy - Cop&ier + Co&pier Copy &Link Location - + Copier l'adresse du &lien Open Link in New Tab - Ouvrir le lien dans un nouvel onglet + Ouvrir le lien dans un nouvel onglet Select All - + Tout sélectionner @@ -7333,38 +7361,39 @@ Reason: %3 Open Link in New Tab - Ouvrir le lien dans un nouvel onglet + Ouvrir le lien dans un nouvel onglet <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> - + <title>Erreur 404...</title><div align="center"><br><br><h1>La page est introuvable</h1><br><h3>'%1'</h3></div> Help - + Aide Unable to launch external application. - + Impossible de lancer l'application externe. + OK - + OK Copy &Link Location - + &Copier l'adresse du lien Open Link in New Tab Ctrl+LMB - + Ouvrir le lien dans un nouvel onglet Ctrl+LMB @@ -7372,17 +7401,17 @@ Reason: %3 &Look for: - + &Rechercher : Open Link - Ouvrir le lien + Ouvrir le lien Open Link in New Tab - Ouvrir le lien dans un nouvel onglet + Ouvrir le lien dans un nouvel onglet @@ -7390,7 +7419,7 @@ Reason: %3 Type Ctrl-<Return> to execute a line. - + Taper Ctrl-<Retour> pour exécuter une ligne. @@ -7398,12 +7427,12 @@ Reason: %3 Filters - + Filtres Locator - + Localisateur @@ -7411,118 +7440,118 @@ Reason: %3 Open file - Ouvrir le fichier + Ouvrir le fichier Ctrl+O - + Ctrl+O Quit - + Quitter Ctrl+Q - + Ctrl+Q Run to main() - + Exécuter jusqu'à main() Ctrl+F5 - + Ctrl+F5 F5 - + F5 Shift+F5 - + Shift+F5 F6 - + F6 F7 - + F7 Shift+F6 - + Shift+F6 Shift+F9 - + Shift+F9 Shift+F7 - + Shift+F7 Shift+F8 - + Shift+F8 F8 - + F8 ALT+D,ALT+W - + ALT+D,ALT+W Files - + Fichiers File - Fichier + Fichier Debug - Déboguer + Déboguer Not a runnable project - + Pas un projet exécutable The current startup project can not be run. - + Le projet de démarrage actuel ne peut pas être exéctué. Open File - Ouvrir le Fichier + Ouvrir un fichier Cannot find special data dumpers - + Impossible de trouver les collecteurs de données @@ -7533,12 +7562,18 @@ Make sure you use something like SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp in your .pro file. - + Le fichier binaire débogué ne contient pas les informations nécessaires pour l'affichage correct des types de données Qt. + +Assurez-vous que vous utilisez quelque chose comme + +SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp + +dans votre fichier .pro. Open Executable File - + Ouvrir un fichier exécutable @@ -7546,12 +7581,12 @@ in your .pro file. Override %1: - + Écraser %1 : Make arguments: - + Arguments de Make : @@ -7561,6 +7596,7 @@ in your .pro file. N/A + "Non applicable" or "N/A" instead? Indisponible @@ -7574,12 +7610,12 @@ in your .pro file. Filter: - + Filtre : Clear - + Effacer @@ -7587,12 +7623,12 @@ in your .pro file. Open File With... - + Ouvrir le fichier avec... Open file extension with: - + Ouvrir ce type d'extension avec : @@ -7600,32 +7636,32 @@ in your .pro file. No executable specified - + Aucun exécutable spécifié Unable to launch "%1": %2 - + Impossible de lancer "%1" : %2 "%1" timed out after %2ms. - + "%1" temps écoulé après %2ms. "%1" crashed. - + "%1" planté. "%1" terminated with exit code %2: %3 - + "%1" terminé avec le code %2 : %3 The client does not seem to contain any mapped files. - + Le client semble contenir aucun fichier correspondant. @@ -7633,12 +7669,14 @@ in your .pro file. Change Number - + ? + Modifier le nombre Change Number: - + ? + Modifier le nombre : @@ -7646,22 +7684,22 @@ in your .pro file. P4 Pending Changes - + Modifications pour P4 en attente Submit - + Envoyer Cancel - Annuler + Annuler Change %1: %2 - + Modification %1 : %2 @@ -7669,27 +7707,27 @@ in your .pro file. &Perforce - + &Perforce Edit - + Éditer Edit "%1" - + Éditer "%1" Alt+P,Alt+E - + Alt+P,Alt+E Edit File - + Éditer le fichier @@ -7704,12 +7742,12 @@ in your .pro file. Alt+P,Alt+A - + Alt+P,Alt+A Add File - + Ajouter le fichier @@ -7724,7 +7762,7 @@ in your .pro file. Delete File - + Supprimer le fichier @@ -7739,12 +7777,12 @@ in your .pro file. Alt+P,Alt+R - + Alt+P,Alt+R Revert File - + Rétablir le fichier @@ -7770,7 +7808,7 @@ in your .pro file. Alt+P,Alt+D - + Alt+P,Alt+D @@ -7780,12 +7818,12 @@ in your .pro file. Opened - + Ouvert Alt+P,Alt+O - + Alt+P,Alt+O @@ -7795,22 +7833,22 @@ in your .pro file. Alt+P,Alt+S - + Alt+P,Alt+S Pending Changes... - + Changements en attente... Update Current Project/Session - + Mettre à jour le projet ou la session courante Update Project "%1" - + Mettre à jour le projet "%1" @@ -7831,7 +7869,7 @@ in your .pro file. Annotate... - + Annoter... @@ -7847,22 +7885,22 @@ in your .pro file. Alt+P,Alt+F - + Alt+P,Alt+F Filelog... - + Journal d'évenements... Update All - + Tout mettre à jour Submit - + Envoyer @@ -7872,63 +7910,64 @@ in your .pro file. &Undo - + Annu&ler &Redo - + &Refaire p4 revert - + Restauration p4 The file has been changed. Do you want to revert it? - Le fichier a été modifié. Voulez-vous le rétablir ? + Le fichier a été modifié. Voulez-vous le restaurer ? Another submit is currently executed. - + Un autre envoi est en cours d'exécution. Cannot create temporary file. - + Impossible de créer un fichier temporaire. Project has no files - + Le projet n'a pas de fichiers p4 annotate - + Anotation p4 p4 annotate %1 - + Anotation p4 %1 p4 filelog - + Journal d'événements p4 p4 filelog %1 - + Journal d'événements p4 %1 Executing: %1 - + Exécution : %1 + @@ -7943,12 +7982,12 @@ in your .pro file. Could not start perforce '%1'. Please check your settings in the preferences. - + Impossible de démarrer perfoce '%1'. S'il vous plaît vérifiez vos réglages dans les préférences. Perforce did not respond within timeout limit (%1 ms). - + Perforce n'a pas répondu dans la limite de temps (%1 ms). @@ -8035,7 +8074,7 @@ in your .pro file. OK - + OK @@ -8109,7 +8148,7 @@ in your .pro file. Submit - + Envoyer @@ -8119,12 +8158,12 @@ in your .pro file. Client: - + Client : User: - + Utilisateur : @@ -8132,27 +8171,27 @@ in your .pro file. Details - Détails + Détails Error Details - Détails de l'erreur + Détails de l'erreur Installed Plugins - Plugins installés + Plugins installés Plugin Details of %1 - Détail sur plugin %1 + Détail sur plugin %1 Plugin Errors of %1 - Erreurs du plugins %1 + Erreurs du plugins %1 @@ -8161,17 +8200,17 @@ in your .pro file. The plugin '%1' does not exist. - L'extension '%1' n'existe pas. + Le plugin '%1' n'existe pas. Unknown option %1 - Option '%1' non reconnue + Option '%1' non reconnue The option %1 requires an argument. - L'option %1 requiert un argument. + L'option %1 requiert un argument. @@ -8258,22 +8297,22 @@ in your .pro file. <font color="#0000ff">Starting: %1 %2</font> - + <font color="#0000ff">Lancement: %1 %2</font> <font color="#0000ff">Exited with code %1.</font> - + <font color="#0000ff">Terminé avec le code %1.</font> <font color="#ff0000"><b>Exited with code %1.</b></font> - + <font color="#0000ff"><b>Terminé avec le code %1.</b></font> <font color="#ff0000">Could not start process %1 </b></font> - + <font color="#ff0000">Impossible de lancer le processus %1 </b></font> @@ -8281,42 +8320,42 @@ in your .pro file. Finished %n of %1 build steps - - - + + %n étape de compilation sur %1 terminée + %n étapes de compilation sur %1 terminées <font color="#ff0000">Canceled build.</font> - + <font color="#ff0000">Compilation annulée.</font> Build - + Compilation <font color="#ff0000">Error while building project %1</font> - + <font color="#ff0000">Erreur lors de la compilation du projet %1</font> <font color="#ff0000">When executing build step '%1'</font> - + <font color="#ff0000">Lors de l'éxecution de l'étape '%1'</font> Error while building project %1 - + Erreur à la compilation du projet %1 <b>Running build steps for project %2...</b> - + <b>Éxecution des étapes de compilation pour le projet %2...</b> @@ -8324,18 +8363,19 @@ in your .pro file. Custom Executable - + custom ici a plutôt le sens de celui utilisé, usage, mais je sais pas comment le traduire ? + Exécutable personnalisé Could not find the executable, please specify one. - + Exécutable introuvable, merci d'en spécifier un. Run %1 - + Exécuter %1 @@ -8344,7 +8384,7 @@ in your .pro file. Custom Executable - + Éxecutable personnalisé @@ -8353,28 +8393,28 @@ in your .pro file. <UNSET> - + <NON-DÉFINIT> Variable - + Variable Value - + Valeur <VARIABLE> - + <VARIABLE> <VALUE> - + <VALEUR> @@ -8382,37 +8422,37 @@ in your .pro file. &Edit - &Édition + &Édition &Add - + &Ajouter &Reset - + &Réinitialiser &Unset - + &RaZ Unset <b>%1</b> - + Remettre <b>%1</b> à zéro Set <b>%1</b> to <b>%2</b> - + Initialiser <b>%1</b> à <b>%2</b> Summary: No changes to Environment - + Résumé : l'environnement n'est pas modifié @@ -8420,7 +8460,7 @@ in your .pro file. Files in any project - + Fichiers dans n'importe quel projet @@ -8428,12 +8468,13 @@ in your .pro file. All Projects - + Tout les projets File &pattern: - &Schéma de fichier : + Schéma de fichier? + &Motif de fichier : @@ -8441,7 +8482,7 @@ in your .pro file. Build Settings - + Paramètres de compilation @@ -8449,17 +8490,17 @@ in your .pro file. &Clone Selected - + &Clone sélectionné Build Steps - + Étapes de compilation Edit Build Configuration: - + Éditer la configuration de compilation : @@ -8469,12 +8510,12 @@ in your .pro file. Remove - + Supprimer Clean Steps - + Étapes de nettoyage @@ -8484,7 +8525,7 @@ in your .pro file. Clone configuration - + Configuration du clone @@ -8492,37 +8533,37 @@ in your .pro file. No Build Steps - + Aucune étape de compilation Add clean step - + Ajouter une étape de nettoyage Add build step - + Ajouter une étape de compilation Remove clean step - + Supprimer une étape de nettoyage Remove build step - + Supprimer une étape de compilation Build Steps - + Étapes de compilation Clean Steps - + Étapes de nettoyage @@ -8531,7 +8572,7 @@ in your .pro file. Compile Output - + Sortie de compilation @@ -8539,27 +8580,27 @@ in your .pro file. Cancel Build && Close - + Annuler la compilation et fermer Do not Close - + Ne pas fermer Close Qt Creator? - + Fermer Qt Creator ? A project is currently being built. - + Un projet est en cours de compilation. Do you want to cancel the build process and close Qt Creator anyway? - + Voulez-vous annuler le processus de compilation et fermer Qt Creator ? @@ -8567,7 +8608,7 @@ in your .pro file. Files in current project - + Fichiers dans le projet courant @@ -8575,7 +8616,7 @@ in your .pro file. Current Project - + Projet courant @@ -8588,17 +8629,17 @@ in your .pro file. Name: - + Nom : Executable: - + Exécutable : Arguments: - + Arguments : @@ -8608,22 +8649,22 @@ in your .pro file. Run in &Terminal - + Lancer dans un &terminal Run Environment - + Environnement d'éxecution Clean Environment - + Environnement de nettoyage System Environment - + Environnement système @@ -8633,12 +8674,12 @@ in your .pro file. No Executable specified. - + Aucun exécutable spécifié. Running executable: <b>%1</b> %2 - + Exécution en cours : <b>%1</b> %2 @@ -8651,7 +8692,7 @@ in your .pro file. Dependencies - + Dépendances @@ -8659,17 +8700,17 @@ in your .pro file. %1 of project %2 - + %1 du projet %2 Could not rename file - + Impossible de renommer le fichier Renaming file %1 to %2 failed. - + Échec du renommage du fichier %1 en %2. @@ -8677,7 +8718,7 @@ in your .pro file. Editor Settings - + Paramètres de l'éditeur @@ -8685,7 +8726,7 @@ in your .pro file. Default File Encoding: - + Encodage de fichier par défaut : @@ -8693,12 +8734,12 @@ in your .pro file. File System - + Système de fichier Synchronize with Editor - + Synchroniser avec l'éditeur @@ -8706,12 +8747,12 @@ in your .pro file. New session name - + Nom de la nouvelle session Enter the name of the new session: - + Entrez le nom de la nouvelle session : @@ -8719,32 +8760,32 @@ in your .pro file. Switch to session - + Passer à la session Session Manager - + Gestionnaire de session Create New Session - + Créer une nouvelle session Clone Session - + Cloner la session Delete Session - + Supprimer la session <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">What is a Session?</a> - + <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Qu'est ce qu'une session ?</a> @@ -8752,33 +8793,33 @@ in your .pro file. Re-run this run-configuration - + Relancer cette configuration de lancement Stop - + Arrêter Ctrl+Shift+R - + Ctrl+Shift+R Application Output - + Sortie de l'application The application is still running. Close it first. - + L'application est toujours en cours d'exécution. Veuillez la fermer d'abord. Unable to close - + Impossible de fermer @@ -8786,7 +8827,7 @@ in your .pro file. Application Output Window - + Fenêtre de sortie de l'application @@ -8808,12 +8849,12 @@ in your .pro file. <b>%1</b> %2 %3 %4 - + <b>%1</b> %2 %3 %4 (disabled) - + (désactivé) @@ -8821,12 +8862,12 @@ in your .pro file. Name: - + Nom : Command: - + Commande : @@ -8836,7 +8877,7 @@ in your .pro file. Command Arguments: - + Arguments de a commande : @@ -8849,12 +8890,12 @@ in your .pro file. Build and Run - + Compiler et exécuter Projects - + Projets @@ -8862,7 +8903,7 @@ in your .pro file. Could not open the following project: '%1' - + Impossible d'ouvrir le projet '%1' @@ -8871,12 +8912,13 @@ in your .pro file. Failed to add one or more files to project '%1' (%2). - + Impossible d'ajouter un ou plusieurs fichier au projet +'%1' (%2). Failed to add '%1' to the version control system. - + Échec de l'ajout de '%1' au système de gestion de version. @@ -8884,17 +8926,17 @@ in your .pro file. Simplify tree - + Simplifier l'arbre Hide generated files - + Cacher les fichiers générés Synchronize with Editor - + Synchroniser avec l'éditeur @@ -8902,12 +8944,12 @@ in your .pro file. Projects - + Projets Filter tree - + Filtrer l'arbre @@ -8915,12 +8957,12 @@ in your .pro file. Add to &VCS (%1) - + Ajouter à &VCS (%1) Files to be added: - + Fichier à ajouter : @@ -8928,22 +8970,22 @@ in your .pro file. Remove File - + Supprimer le fichier File to remove: - + Fichier à supprimer : &Delete file permanently - + &Supprimer le fichier de façon permanente &Remove from Version Control - + &Supprimer du système de gestion de version @@ -8951,7 +8993,7 @@ in your .pro file. Run Settings - + Paramètres d'exécution @@ -8964,7 +9006,7 @@ in your .pro file. Remove - + Supprimer @@ -8972,17 +9014,17 @@ in your .pro file. + - + + - - + - Edit run configuration: - + Éditer la configuration d'exécution : @@ -8990,13 +9032,13 @@ in your .pro file. Session - + Session Untitled default file name to display - + Sans titre @@ -9004,7 +9046,7 @@ in your .pro file. File not found: %1 - + Fichier non trouvé : %1 @@ -9013,7 +9055,7 @@ in your .pro file. Build Issues - + Problèmes de compilation @@ -9023,7 +9065,7 @@ in your .pro file. Show Warnings - + Afficher les avertissements @@ -9031,12 +9073,12 @@ in your .pro file. The process could not be started! - + Le processus n'a pas pû être démarré ! Cannot retrieve debugging output! - + Impossible d'obtenir la sortie de déboguage @@ -9044,22 +9086,22 @@ in your .pro file. Project management - + Gestion du projet &Add to Project - + &Ajouer au projet &Project - + &Projet Add to &version control - + Ajouter au gestionnaire de &version @@ -9068,7 +9110,11 @@ in your .pro file. - + Les fichiers suivants seronts ajoutés : + + + + @@ -9076,32 +9122,32 @@ in your .pro file. Projects - + Projets &Build - + &Compilation &Debug - + &Déboguage &Start Debugging - + &Commencer le déboguage Open With - + Ouvrir avec Session Manager... - + Gestionnaire de session... @@ -9111,194 +9157,194 @@ in your .pro file. Ctrl+Shift+N - + Ctrl+Shift+N Load Project... - + Charger le projet... Ctrl+Shift+O - + Ctrl+Shift+O Open File - Ouvrir le Fichier + Ouvrir un fichier Show in Explorer... - + Afficher dans l'explorer... Show in Finder... - + Afficher dans Finder... Show containing folder... - + Afficher le dossier parent... Recent Projects - + Projets récent Close Project - + Fermer le projet Close Project "%1" - + Fermer le projet "%1" Close All Projects - + Fermer tout les projets Session - + Session Set Build Configuration - + Définir la configuration de compilation Build All - + Tout compiler Ctrl+Shift+B - + Ctrl+Shift+B Rebuild All - + Tout recompiler Clean All - + Tout nettoyer Build Project - + Compiler le projet Build Project "%1" - + Compiler le projet "%1" Ctrl+B - + Ctrl+B Rebuild Project - + Recompiler le projet Rebuild Project "%1" - + Recompiler le projet "%1" Clean Project - + Nettoyer le projet Clean Project "%1" - + Nettoyer le projet "%1" Build Without Dependencies - + Compiler sans les dépendances Rebuild Without Dependencies - + Recompiler sans les dépendances Clean Without Dependencies - + Nettoyer sans les dépendances Run - + Exécuter Ctrl+R - + Ctrl+R Set Run Configuration - + Définir la configuration d'exécution Cancel Build - + Annuler la compilation Start Debugging - + Commencer le déboguage F5 - + F5 Add New... - + Ajouter nouveau... Add Existing Files... - + Ajouter des fichiers existants... Remove File... - + Supprimer fichier... Rename - + Renommer Load Project - + Charger un projet @@ -9310,86 +9356,90 @@ in your .pro file. New File Title of dialog - + Nouveau fichier Add Existing Files - + Ajouter des fichiers existants Could not add following files to project %1: - + Impossible d'ajouter les fichiers suivants au projet %1 : + Add files to project failed - + Échec de l'ajout des fichiers au projet Add to Version Control - + Ajouter au gestionnaire de version Add files %1 to version control (%2)? - + Ajouter les fichiers +%1 +au gestionnaire de version (%2) ? Could not add following files to version control (%1) - + Impossible d'ajouter les fichiers suivant au gestionnaire de version (%1) + Add files to version control failed - + Échec de l'ajout des fichiers au gestionnaire de version Launching Windows Explorer failed - + Échec du lancement de l'Explorer Windows Could not find explorer.exe in path to launch Windows Explorer. - + Impossible de trouver explorer.exe dans le path pour lancer l'Explorer Windows. Launching a file explorer failed - + Échec du lancement d'un explorateur de fichier Could not find xdg-open to launch the native file explorer. - + Impossible de trouver xdg-open pour lancer un gestionnaire de fichier natif. Remove file failed - + Suppression du fichier échoué Could not remove file %1 from project %2. - + Impossible de supprimer le fichier %1 du projet %2. Delete file failed - + Échec de la suppression du fichier Could not delete file %1. - + Impossible de supprimer le fichier %1. @@ -9397,22 +9447,22 @@ to version control (%2)? Error while restoring session - + Erreur lors de la restauration de la session Could not restore session %1 - + Impossible de restaurer la session %1 Error while saving session - + Erreur lors de l'enregistrement de la session Could not save session to file %1 - + Impossible d'enregistrer la session dans le fichier %1 @@ -9423,12 +9473,12 @@ to version control (%2)? Untitled - + Sans titre Session ('%1') - + Session ('%1') @@ -9436,27 +9486,27 @@ to version control (%2)? QMake Build Configuration: - + Configuration de QMake pour la compilation : debug - + release - + release Additional arguments: - Arguments supplémentaires : + Arguments supplémentaires : Effective qmake call: - + Appels qmake effectif : @@ -9464,22 +9514,22 @@ to version control (%2)? Pass - + Succès Expected Failure - + Échec attendu Failure - + Échec Expected Pass - + Succès attendu @@ -9489,32 +9539,32 @@ to version control (%2)? Qt Warning - + Avertissements Qt (niveau Warning) Qt Debug - + Deboguage Qt (niveau Debug) Critical - + Critique (niveau critical) Fatal - + Fatal Skipped - + Passé (niveau skipped) Info - + Info @@ -9522,17 +9572,17 @@ to version control (%2)? Test Results - + Résultats des tests Result - + Résultat Message - + Message @@ -9540,12 +9590,12 @@ to version control (%2)? All Incidents - + Tout les incidents Show Only: - + Afficher seulement : @@ -9553,22 +9603,22 @@ to version control (%2)? QML Application - + Application QML Creates a QML application. - + Créer une application QML. Projects - + Projets The project %1 could not be opened. - + Le projet %1 n'a pas pu être ouvert. @@ -9576,12 +9626,12 @@ to version control (%2)? New QML Project - + Nouveau projet QML This wizard generates a QML application project. - + Cet assistant génère un projet pour une application QML. @@ -9589,22 +9639,22 @@ to version control (%2)? Import of existing QML directory - + Importer un répertoire QML existant Creates a QML project from an existing directory of QML files. - + Crée un projet QML à partir d'un répertoire existant de fichiers QML. Projects - + Projets The project %1 could not be opened. - + Le projet %1 n'a pas pu être ouvert. @@ -9612,22 +9662,22 @@ to version control (%2)? Import of QML Project - + Importation de projet QML QML Project - + Projet QML Project name: - + Nom du projet : Location: - + Emplacement : @@ -9636,24 +9686,24 @@ to version control (%2)? QML Viewer - + Visualisateur QML <Current File> - + <Fichier courant> QML Viewer arguments: - + Arguments du visualisateur QML: Main QML File: - + Fichier QML principal : @@ -9661,32 +9711,32 @@ to version control (%2)? Add - Ajouter + Ajouter Remove - + Supprimer Properties - + Propriétés Prefix: - Préfixe: + Préfixe : Language: - Langue: + Langue : Alias: - Alias: + Alias : @@ -9694,12 +9744,12 @@ to version control (%2)? Qt4 Console Application - + Application Console Qt4 Creates a Qt4 console application. - + Crée une application Qt4 de type console. @@ -9707,7 +9757,7 @@ to version control (%2)? This wizard generates a Qt4 console application project. The application derives from QCoreApplication and does not provide a GUI. - + Cet assistant génère un projet d'application Qt4 console. L'application dérive de QtCoreApplication et ne fournit pas d'interface graphique. @@ -9715,12 +9765,12 @@ to version control (%2)? Qt Designer is not responding (%1). - + Qt Designer ne répond pas (%1). Unable to create server socket: %1 - + Impossible de créer le socket serveur : %1 @@ -9728,7 +9778,7 @@ to version control (%2)? Embedded Linux - + Linux embarqué @@ -9736,12 +9786,12 @@ to version control (%2)? Empty Qt4 Project - + Projet Qt4 vide Creates an empty Qt project. - + Crée un projet Qt4 vide. @@ -9749,7 +9799,7 @@ to version control (%2)? This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. - + Cet assistant génère un projet Qt4 vide. Ajouter ensuite des fichiers en utilisant les autres assistants. @@ -9757,12 +9807,12 @@ to version control (%2)? Unable to start "%1" - + Impossible de démarrer "%1" The application "%1" could not be found. - + L'application "%1" est introuvable. @@ -9770,12 +9820,12 @@ to version control (%2)? Class Information - + Information de la classe Specify basic information about the classes for which you want to generate skeleton source code files. - + Définit les informations de bases des classes pour lesquelles vous souhaitez générer des fichiers squelettes de code source. @@ -9783,17 +9833,17 @@ to version control (%2)? Qt4 Gui Application - + Application Graphique Qt4 Creates a Qt4 Gui Application with one form. - + Crée une application Gui Qt 4 avec un formulaire. The template file '%1' could not be opened for reading: %2 - + Le fichier modèle '%1' n'a pas pu être ouvert en lecture : %2 @@ -9801,7 +9851,7 @@ to version control (%2)? This wizard generates a Qt4 GUI application project. The application derives by default from QApplication and includes an empty widget. - + Cet assistant génère un projet d'application graphique Qt4. L'application dérive par défaut de QApplication et inclut un widget vide. @@ -9809,12 +9859,12 @@ to version control (%2)? C++ Library - + Bibliothèque C++ Creates a C++ Library. - + Crée une bibliothèque C++. @@ -9822,17 +9872,17 @@ to version control (%2)? Shared library - + Bibliothèque partagée Statically linked library - + Bibliothèque avec lien statique Qt 4 plugin - + Plugin Qt 4 @@ -9842,7 +9892,7 @@ to version control (%2)? This wizard generates a C++ library project. - + Cet assistant génère un projet de bibliothèque C++. @@ -9850,12 +9900,12 @@ to version control (%2)? Select required modules - + Sélectionner les modules requis Select the modules you want to include in your project. The recommended modules for this project are selected by default. - + Sélectionnez les modules que vous souhaitez inclure au projet. Les modules recommandés pour ce projet sont sélectionnées par défaut. @@ -9863,27 +9913,27 @@ to version control (%2)? New - + Nouveau Remove - + Supprimer Up - + Monter Down - + Descendre Cut - + Couper @@ -9898,32 +9948,32 @@ to version control (%2)? Ctrl+X - + Ctrl+X Ctrl+C - + Ctrl+C Ctrl+V - + Ctrl+V Add Variable - + Ajouter une variable Add Scope - + Ajouter une portée Add Block - + Ajouter un bloc @@ -9931,37 +9981,37 @@ to version control (%2)? <Global Scope> - + <Portée Globale> Change Item - + Modifier l'élément Change Variable Assignment - + Modifier l'affectation de la variable Change Variable Type - + Modifier le type de la variable Change Scope Condition - + Modifier la condition de portée Change Expression - + Modifier l'expression Move Item - + Déplacer l'élément @@ -9971,7 +10021,7 @@ to version control (%2)? Insert Item - + Insérer un élément @@ -9980,22 +10030,22 @@ to version control (%2)? Import existing build settings - + Importer des paramètres de génération existants Qt Creator has found an already existing build in the source directory.<br><br><b>Qt Version:</b> %1<br><b>Build configuration:</b> %2<br><b>Additional QMake Arguments:</b>%3 - + Qt Creator a détecté une génération existante dans le répertoire source. <br> <br> <b>Qt Version : </b> %1<br><b>Configuration de génération :</b> %2<br>Arguments QMake supplémentaires : </b> %3 <b>Note:</b> Importing the settings will automatically add the Qt Version identified by <br><b>%1</b> to the list of Qt versions. - + <b>Note:</b> L'importation des paramètres ajoutera automatiquement la version de Qt identifiée par <br> <b> %1</b> à la liste des versions de Qt. Import existing build settings. - + Importer des paramètres de génération existants. @@ -10008,7 +10058,7 @@ to version control (%2)? Build Environment - Environnement de compilation + Environnement de génération @@ -10016,27 +10066,27 @@ to version control (%2)? Headers - + En-têtes Sources - + Sources Forms - + Intefaces Resources - + Ressources Other files - + Autres fichiers @@ -10047,7 +10097,7 @@ to version control (%2)? Could not open the file for edit with SCC. - + Impossible d'ouvrir le fichier pour l'éditer avec SCC. @@ -10057,17 +10107,17 @@ to version control (%2)? There are unsaved changes for project file %1. - + Des modifications n'ont pas été enregistrées pour le fichier de projet %1. Error while parsing file %1. Giving up. - + Erreur pendant le parcours du fichier %1. Abandon. Error while changing pro file %1. - + Erreur pendant la modification du fichier pro %1. @@ -10075,12 +10125,12 @@ to version control (%2)? Error while parsing file %1. Giving up. - + Erreur pendant le parcours du fichier %1. Abandon. Could not find .pro file for sub dir '%1' in '%2' - + Impossible de trouver le fichier .pro pour le sous répertoire '%1' dans '%2' @@ -10088,53 +10138,53 @@ to version control (%2)? Configuration Name: - + Nom de la configuration : Qt Version: - + Version de Qt : This Qt-Version is invalid. - + Cette version de Qt est invalide. Shadow Build: - + Shadow Build : Build Directory: - + Répertoire des fichiers compilés : <a href="import">Import existing build</a> - + <a href="import">Importer une compilation existante</a> Shadow Build Directory - + Répertoire du Shadow build Default Qt Version (%1) - + Version de Qt par défaut (%1) No Qt Version set - + Aucune version de Qt définie using Qt version: <b>%1</b><br>with tool chain <b>%2</b><br>building in <b>%3</b> - + utilise la version de Qt : <b>%1</b><br>avec la chaîne d'outil <b>%2</b><br>compilé dans <b>%3</b> @@ -10144,12 +10194,12 @@ to version control (%2)? Manage - + Gérer Tool Chain: - + Chaîne d'outil : @@ -10158,7 +10208,7 @@ to version control (%2)? Run qmake - + Exécuter qmake @@ -10167,7 +10217,7 @@ to version control (%2)? Qt4RunConfiguration - + Qt4RunConfiguration @@ -10915,17 +10965,18 @@ p, li { white-space: pre-wrap; } Filter Configuration - Configuration du filtre + Configuration du filtre Limit to prefix + Limité ? Limiter au préfixe Prefix: - Préfixe: + Préfixe : @@ -10933,36 +10984,36 @@ p, li { white-space: pre-wrap; } Generic Directory Filter - Filtre de dossier générique + Filtre de dossier générique Filter Configuration - Configuration du filtre + Configuration du filtre Choose a directory to add - Choisir un répertoire à ajouter + Sélectionner un répertoire à ajouter %1 filter update: 0 files - Mise à jour du filtre %1: 0 fichiers + Mise à jour du filtre %1 : 0 fichiers %1 filter update: %n files - - Mise à jour du filtre %1: %n fichier - Mise à jour du filtre %1: %n fichiers + + Mise à jour du filtre %1 : %n fichier + Mise à jour du filtre %1 : %n fichiers %1 filter update: canceled - Mise à jour du filtre %1: annulée + Mise à jour du filtre %1 : annulée @@ -10970,38 +11021,38 @@ p, li { white-space: pre-wrap; } Name: - Nom: + Nom : File Types: - Types de fichiers: + Types de fichiers : Specify file name filters, separated by comma. Filters may contain wildcards. - + Spécifier les filtres de nom de fichier, séparés par la virgule. Les filtres peuvent contenir des caractères de remplacement. Prefix: - Préfixe: + Préfixe : Specify a short word/abbreviation that can be used to restrict completions to files from this directory tree. To do this, you type this shortcut and a space in the Locator entry field, and then the word to search for. - Spécifier a mot court ou une abbréviation qui peut être utilisé pour réstreindre la complétion aux fichiers de cette arborescence. Pour ce faire, entrez ce raccourci et un espace dans le champs Localisation, puis ensuite le mot à chercher. + Spécifier un mot court ou une abbréviation qui peut être utilisé pour réstreindre les complétions aux fichiers de cette arborescence. Pour ce faire, entrer ce raccourci et un espace dans le champs localisation, puis ensuite le mot à chercher. Limit to prefix - Limiter au préfixe + Limiter au préfixe Add... - Ajouter... + Ajouter... @@ -11016,7 +11067,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Directories: - Dossiers: + Dossiers : @@ -11024,7 +11075,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Files in file system - Fichiers du système de fichier + Fichiers du système de fichier @@ -11032,27 +11083,27 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Filter configuration - Configuration du filtre + Configuration du filtre Prefix: - Préfixe: + Préfixe : Limit to prefix - Limiter au préfixe + Limiter au préfixe Include hidden files - Inclure les fichiers cachés + Inclure les fichiers cachés Filter: - Filtre: + Filtre : @@ -11060,7 +11111,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Open documents - Ouvrir des documents + Ouvrir des documents @@ -11068,7 +11119,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Available filters - Filtres disponibles + Filtres disponibles @@ -11084,12 +11135,12 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Refresh - Raffraîchir + Rafraîchir Configure... - Configurer... + Configurer... @@ -11143,7 +11194,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t %1 (Prefix: %2) - %1 (Prefixe: %2) + %1 (Préfixe : %2) @@ -11151,12 +11202,12 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Configure Filters - Configurer les filtres + Configurer les filtres Add - Ajouter + Ajouter @@ -11171,12 +11222,12 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Refresh Interval: - Intervalle de raffraichissement: + Intervalle de raffraichissement : min - min + min @@ -11323,17 +11374,17 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Save Changes - Sauvegarder les changements + Sauvegarder les changements The following files have unsaved changes: - Les fichiers suivants contiennent des modifications non enregistrées: + Les fichiers suivants contiennent des modifications non enregistrées : Automatically save all files before building - Sauvegarder automatiquement tous les fichiers avant de compiler + Sauvegarder automatiquement tous les fichiers avant de compiler @@ -11341,12 +11392,12 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Options - Options + Options 0 - 0 + 0 @@ -11955,7 +12006,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. error -> erreur ;) - <b>Erreur :</b> Impossible de décoder "%1" avec l'encodage "%2". L'édition est impossible. + <b>Erreur :</b> Impossible de décoder "%1" avec l'encodage "%2". L'édition est impossible. @@ -12041,7 +12092,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Removes trailing whitespace on saving. - Supprime les caractères d'espacement à la fin des lignes lors de la sauvegarde. + Supprime les caractères d'espacement à la fin des lignes lors de la sauvegarde. @@ -12157,27 +12208,27 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Copy Color Scheme - + Copier l'arrangement de couleurs Color Scheme name: - + Nom de l'arrangement de couleurs : %1 (copy) - + %1 (copie) Delete Color Scheme - + Supprimer l'arrangement de couleurs Are you sure you want to delete this color scheme permanently? - + Êtes vous sûr de vouloir supprimer cet arrangement de couleurs ? @@ -12187,17 +12238,17 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Color Scheme Changed - + Arrangement de couleurs modifié The color scheme "%1" was modified, do you want to save the changes? - + L'arrangement de couleurs "%1" a été modifié, voulez-vous enregistrer les changements ? Discard - + Abandonner @@ -12326,7 +12377,7 @@ The following encodings are likely to fit: Copy... - + Copier... @@ -12400,7 +12451,7 @@ The following encodings are likely to fit: &Redo - &Refaire + &Refaire @@ -12420,22 +12471,22 @@ The following encodings are likely to fit: Meta - + Meta Ctrl - + Ctrl &Rewrap Paragraph - + &Réadapter les retour à la ligne du paragraphe &Visualize Whitespace - + &Visualiser les espaces @@ -12445,7 +12496,7 @@ The following encodings are likely to fit: Enable Text &Wrapping - + Activer le &retour à la ligne automatique Ctrl+E, Ctrl+W @@ -12454,142 +12505,144 @@ The following encodings are likely to fit: %1+E, R - + %1+E, R %1+E, %2+V - + %1+E, %2+V %1+E, %2+W - + %1+E, %2+W (Un)Comment &Selection - (Dé)Commenter la &Sélection + (Dé)Commenter la &Sélection Ctrl+/ - Ctrl+/ + Ctrl+/ Cut &Line - Couper la &Ligne + Couper la &ligne Shift+Del - Shift+Suppr + Shift+Suppr Delete &Line - Effacer la &Ligne + Effacer la &ligne Collapse - Plier + Réduire Ctrl+< - Ctrl+< + Ctrl+< Expand - Étendre + Développer Ctrl+> - Ctrl+> + Ctrl+> (Un)&Collapse All - (Dé)&Plier tout + (Dé)&Plier tout Increase Font Size - Augmenter la taille de la police + Augmenter la taille de la police Ctrl++ - Ctrl++ + Ctrl++ Decrease Font Size - Diminuer la taille de la police + Diminuer la taille de la police Ctrl+- - Ctrl+- + Ctrl+- Goto Block Start - Aller au début du bloc + Aller au début du bloc Ctrl+[ - Ctrl+[ + Ctrl+[ Goto Block End - Aller à la fin du bloc + Aller à la fin du bloc Ctrl+] - Ctrl+] + Ctrl+] Goto Block Start With Selection - + Allez jusqu'au début du bloc avec la sélection? + Sélectionner jusqu'au début du bloc Ctrl+{ - Ctrl+{ + Ctrl+{ Goto Block End With Selection - + Allez jusqu'à la fin du bloc avec la sélection? + Sélectionner jusqu'à la fin du bloc Ctrl+} - Ctrl+} + Ctrl+} Select Block Up - + Sélectionner le bloc au-dessus Ctrl+U - Ctrl+U + Ctrl+U Select Block Down - + Sélectionner le bloc en dessous Ctrl+Shift+U @@ -12598,47 +12651,47 @@ The following encodings are likely to fit: Move Line Up - Déplacer la ligne au-dessus + Déplacer la ligne au-dessus Ctrl+Shift+Up - Ctrl+Shift+Up + Ctrl+Shift+Up Move Line Down - Déplacer la ligne en-dessous + Déplacer la ligne en dessous Ctrl+Shift+Down - Ctrl+Shift+Down + Ctrl+Shift+Down Copy Line Up - Copier la ligne au-dessus + Copier la ligne au-dessus Ctrl+Alt+Up - Ctrl+Alt+Up + Ctrl+Alt+Up Copy Line Down - Copier la ligne en-dessous + Copier la ligne en dessous Ctrl+Alt+Down - Ctrl+Alt+Down + Ctrl+Alt+Down - <line number> - <numéro de ligne> + <line number> + <numéro de ligne> @@ -12672,7 +12725,7 @@ The following encodings are likely to fit: Search Scope contexte/portée/autre ? - Portée de la recherche + Portée de la recherche @@ -12692,22 +12745,22 @@ The following encodings are likely to fit: Occurrences - + Occurences Unused Occurrence - + Occurence inutilisé Renaming Occurrence - + Renommer l'occurence Number - Numéro + Numéro @@ -12737,7 +12790,7 @@ The following encodings are likely to fit: Label - Étiquette + Étiquette @@ -12757,7 +12810,7 @@ The following encodings are likely to fit: Visual Whitespace - + Espace visuel @@ -12767,7 +12820,7 @@ The following encodings are likely to fit: Added Line - Ligne ajoutée + Ligne ajoutée @@ -12807,47 +12860,47 @@ The following encodings are likely to fit: GCC - + GCC Intel C++ Compiler (Linux) - + Compilateur C++ Intel (Linux) MinGW - + MinGW Microsoft Visual C++ - + Microsoft Visual C++ Windows CE - + Windows CE WINSCW - + WINSCW GCCE - + GCCE RVCT (ARMV5) - + RVCT (ARMV5) RVCT (ARMV6) - + RVCT (ARMV6) @@ -12963,12 +13016,12 @@ The following encodings are likely to fit: Check message - Contrôle du message + Contrôle du message Insert name... - Inserez le nom... + Inserez le nom... @@ -13038,7 +13091,7 @@ nom <email> alias </email> A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor. - Un fichier texte contenant des lignes contenant des champs tels que "Reviewed-By:", qui sont ajouté à la fin dans l'éditeur de message. + Un fichier texte contenant des lignes avec des champs tels que "Reviewed-By:", qui seront ajouté à la fin dans l'éditeur de message. @@ -13057,7 +13110,7 @@ nom <email> alias </email> Would you like to remove this file from the version control system (%1)? Note: This might remove the local file. - Voulez-vous retirer ce fichier du système de gestion de versions (%1)? + Voulez-vous retirer ce fichier du système de gestion de versions (%1) ? Note : Ceci risque de supprimer le fichier du disque. @@ -13100,12 +13153,12 @@ Note : Ceci risque de supprimer le fichier du disque. &Description: - &Description : + &Description : <Description> - <Description> + <Description> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -13124,17 +13177,17 @@ p, li { white-space: pre-wrap; } Patch 1 - Patch 1 + Patch 1 Patch 2 - Patch 2 + Patch 2 Protocol: - Protocole : + Protocole : @@ -13143,12 +13196,16 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt;">&lt;Comment&gt;</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt;">&lt;Commentaire&gt;</span></p></body></html> Parts to send to server - + Parties à envoyer au serveur @@ -13156,27 +13213,27 @@ p, li { white-space: pre-wrap; } main - main + main Text1: - Texte 1: + Texte 1 : N/A - Indisponible + N/A Text2: - Texte 2: + Texte 2 : Text3: - Texte 3: + Texte 3 : @@ -13184,12 +13241,12 @@ p, li { white-space: pre-wrap; } Form - + Formulaire Server Prefix: - + Préfixe du serveur : @@ -13207,37 +13264,38 @@ p, li { white-space: pre-wrap; } Prompt to submit - + prompt comme "message" ou comme "rapide" ? + Message à envoyer When checked, all files touched by a commit will be displayed when clicking on a revision number in the annotation view (retrieved via commit id). Otherwise, only the respective file will be displayed. - + Si coché, tous les fichiers modifiés par un commit seront affichés lors d'un clic sur un numéro de révison dans la vue d'annotation (récupérée par un id de commit). Sinon, seul le fichier respectif sera affiché. Describe all files matching commit id: - + Décrire tous les fichiers correspondant à l'id de commit : CVS Command: - + Commande CVS : CVS Root: - + Racine CVS : Diff Options: - + Options Diff : CVS - + CVS @@ -13245,42 +13303,43 @@ p, li { white-space: pre-wrap; } Form - + Formulaire Gdb - + Gdb Symbian ARM gdb location: - + Emplacement du gdb ARM Symbian : Communication - + Communication Serial Port - + Port Série Bluetooth - + Bluetooth Port: - + Port : Device: - + Périphérique plutôt ? + Appareil: @@ -13288,42 +13347,43 @@ p, li { white-space: pre-wrap; } Form - + Formulaire Embedding of the UI Class - + Intégration de la classe UI Aggregation as a pointer member - + Agrégation comme pointeur membre Aggregation - + Agrégation Multiple Inheritance - + Héritage multiple Code Generation - + Génération de code Support for changing languages at runtime - + changement de langue ou de langage ? + Prise en charge du changement de langage à l'exécution Use Qt module name in #include-directive - + Utiliser le nom du module Qt dans #include-directive @@ -13331,27 +13391,27 @@ p, li { white-space: pre-wrap; } ... - + ... <New Host> - + <Nouvel Hôte> Host - + Hôte Projects - + Projets Description - + Description @@ -13359,32 +13419,32 @@ p, li { white-space: pre-wrap; } WizardPage - + WizardPage Filter: - + Filtre : ... - + ... Keep updating - + Mise à jour continue Project - + Projet Description - + Description @@ -13392,62 +13452,62 @@ p, li { white-space: pre-wrap; } WizardPage - + WizardPage Filter: - + Filtre: ... - + ... Name - Nom + Nom Owner - + Propriétaire Description - + Description Choose a repository of the project '%1'. - + Choisissez un répertoire pour le projet '%1'. Mainline Repositories - + Dépôts principaux Clones - + Clones Baseline Repositories - + Dépôts de base Shared Project Repositories - + Dépôts de projets partagés Personal Repositories - + Dépôts personnel @@ -13455,7 +13515,7 @@ p, li { white-space: pre-wrap; } Form - + Formulaire @@ -13470,7 +13530,7 @@ p, li { white-space: pre-wrap; } Style: - + Style : @@ -13480,72 +13540,72 @@ p, li { white-space: pre-wrap; } Startup - + Démarrage On context help: - + Pour l'aide contextuelle : Show side-by-side if possible - + Afficher côte à côte si possible Always show side-by-side - + Toujours afficher côte à côte Always start full help - + Toujours afficher l'aide complète On help start: - + Au démarrage de l'aide : Show my home page - + Afficher ma page d'accueil Show a blank page - + Afficher une page blanche Show my tabs from last session - + Afficher mes onglets de la dernière session Home Page: - + Page d'accueil : Use &Current Page - + Utiliser la page &courante Use &Blank Page - + Utiliser une page blanche Restore to Default - + Restaurer les paramètres par défaut Help Bookmarks - + Signet de l'aide @@ -13563,32 +13623,32 @@ p, li { white-space: pre-wrap; } Build and Run - + Générer et Exécuter Save all files before Build - + Sauvegarder tous les fichiers avant de Générer Always build Project before Running - + Toujours générer le projet avant d'exécuter Show Compiler Output on building - + Afficher la sortie du compilateur pendant la génération Use jom instead of nmake - + Utiliser jom à la place de nmake <i>jom</i> is a drop-in replacement for <i>nmake</i> which distributes the compilation process to multiple CPU cores. For more details, see the <a href="http://qt.gitorious.org/qt-labs/jom/">jom Homepage</a>. Disable it if you experience problems with your builds. - + <i>jom</i> est un remplaçant pour <i>nmake</i> qui réparti le processus de compilation sur les différents cores d'un CPU. Pour plus de détails, voir la <a href="http://qt.gitorious.org/qt-labs/jom/">page consacrée à jom </a>. Désactivez si vous rencontrez des problèmes de génération. @@ -13596,7 +13656,7 @@ p, li { white-space: pre-wrap; } Form - + Formulaire @@ -13626,7 +13686,7 @@ p, li { white-space: pre-wrap; } %1 (current session) - + %1 (session courante) @@ -13639,7 +13699,7 @@ p, li { white-space: pre-wrap; } Form - + Formulaire @@ -13647,132 +13707,132 @@ p, li { white-space: pre-wrap; } Form - + Formulaire The header file - + Le fichier d'en-tête &Sources - + &Sources Widget librar&y: - + Bibliothèque de widget : Widget project &file: - + Fichier de projet du widget : Widget h&eader file: - + Fichier d'en-tête du widget : The header file has to be specified in source code. - + Le fichier d'en-tête doit être spécifié dans le code source. Widge&t source file: - + Fichier source du widget : Widget &base class: - + Classe de &base du widget : QWidget - + QWidget Plugin class &name: - + &Nom de la classe du plugin : Plugin &header file: - + Fichier d'&en-tête du plugin : Plugin sou&rce file: - + Fichier sou&rce du plugin : Icon file: - + Fichier de l'icône : &Link library - + &Lier à la bibliothèque Create s&keleton - + Créer s&quelette Include pro&ject - + Inclure le pro&jet &Description - + &Description G&roup: - + &Groupe : &Tooltip: - + &Info-bulle : W&hat's this: - + Qu'est-ce que c'est? : The widget is a &container - + Le widget est un conteneur Property defa&ults - + Propriété par défaut dom&XML: - + dom &XML: Select Icon - + Sélectionner une icône Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg) - + Fichier d'icône (*.png *.ico *.jpg *.xpm *.tif *.svg) @@ -13780,47 +13840,47 @@ p, li { white-space: pre-wrap; } WizardPage - + WizardPage Plugin and Collection Class Information - + Information sur le plugin et la classe de collection Specify the properties of the plugin library and the collection class. - + Spécifiez les propriétés de la bibliothèque de plugin et la classe de collection. Collection class: - + Clase de collection : Collection header file: - + Fichier d'en-tête de la collection : Collection source file: - + Fichier source de la collection : Plugin name: - + Nom du plugin : Resource file: - + Fichier ressource : icons.qrc - + icons.qrc @@ -13828,22 +13888,22 @@ p, li { white-space: pre-wrap; } Custom Qt Widget Wizard - + Assistant de Widget Qt personnalisé Custom Widget List - + List de widgets personnalisés Widget &Classes: - + &Classes des widgets : Specify the list of custom widgets and their properties. - + Spécifiez la liste des widgets personnalisé et leurs propriétés. @@ -13851,7 +13911,7 @@ p, li { white-space: pre-wrap; } Form - + Formulaire @@ -13911,27 +13971,28 @@ p, li { white-space: pre-wrap; } Copy Project to writable Location? - + Copier le projet à un emplacement inscriptible? <p>The project you are about to open is located in the write-protected location:</p><blockquote>%1</blockquote><p>Please select a writable location below and click "Copy Project and Open" to open a modifiable copy of the project or click "Keep Project and Open" to open the project in location.</p><p><b>Note:</b> You will not be able to alter or compile your project in the current location.</p> - + <p>Le projet que vous vous apprêtez à ouvrir se trouve dans un emplacement accessible en lecture seule :</p><blockquote>%1</blockquote><p>Veuillez sélectionner un emplacement accessible en écriture et cliquez sur "Copier projet et ouvrir" pour ouvrir une copie modifiable. Cliquez sur "Conserver l'emplacement et ouvrir" pour ouvrir le projet à l'emplacement courant.</p><p><b>Note :</b> Vous ne pourrez pas modifier ou compiler votre projet à l'emplacement courant.</p> &Location: - + &Emplacement : &Copy Project and Open - + &Copier projet et ouvrir &Keep Project and Open - + see "<p>the projet you are about..." to understand the translation + &Conserver l'emplacement et ouvrir @@ -13941,26 +14002,26 @@ p, li { white-space: pre-wrap; } The specified location already exists. Please specify a valid location. - + L'emplacement spécifié existe déjà. Veuillez spécifier un autre emplacement. Cmd Shortcut key - + Cmd Alt Shortcut key - + Alt Ctrl Shortcut key - + Ctrl @@ -13991,58 +14052,58 @@ p, li { white-space: pre-wrap; } You can force code completion at any time using <tt>Ctrl+Space</tt>. - + Vous pouvez forcer la complétion de code en utilisant <tt>Ctrl+Space</tt>. You can start Qt Creator with a session by calling <tt>qtcreator &lt;sessionname&gt;</tt>. - + Vous pouvez démarrer Qt Creator avec une session en le lançant avec <tt>qtcreator &lt;nomDeSession&gt;</tt>. You can return to edit mode from any other mode at any time by hitting <tt>Escape</tt>. - + Vous pouvez retourner en mode d'édition depuis n'importe quel autre mode en cliquant sur <tt>Echap</tt>. You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom:<ul><li>1 - Build Issues</li><li>2 - Search Results</li><li>3 - Application Output</li><li>4 - Compile Output</li></ul> %1 gets replaced by Alt (Win/Unix) or Cmd (Mac) - + Vous pouvez passer d'un panneau de sortie à l'autre avec les touches <tt>%1+x</tt> où x est le numéro qui apparaît sur les boutons en dessous de la fenêtre : <ul><li>1 - Problèmes de compilation</li><li>2 - Résultat de la recherche</li><li>3 - Sortie de l'application</li><li>4 - Sortie de compilation</li></ul> You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator bar</a> (<tt>%1+K</tt>). - + Vous pouvez rapidement rechercher des méthodes, classes, de l'aide et plus à l'aide de la <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">barre de recherche</a> (<tt>%1+K</tt>). You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">build settings</a>. - + Vous pouvez ajouter vos propre étapes de compilation dans les <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">paramètres de compilation</a>. Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">dependencies</a> between projects. - + Dans une session, vous pouvez ajouter des <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">dépendances</a> entre des projets. You can set the preferred editor encoding for every project in <tt>Projects -> Editor Settings -> Default Encoding</tt>. - + Vous pouvez définir l'encodage de caractères préféré pour chaque projet dans <tt>Projet -> Paramètres de l'éditeur -> Encodage par défaut</tt>. You can modify the binary that is being executed when you press the <tt>Run</tt> button: Add a <tt>Custom Executable</tt> by clicking the <tt>+</tt> button in <tt>Projects -> Run Settings -> Run Configuration</tt> and then select the new target in the combo box. - + Vous pouvez modifier le binaire qui sera exécuté lorsque vous appuyez sur le bouton <tt>Lancer</tt> : Ajoutez un <tt>exécutable personnalisé</tt> en cliquant sur le bouton <tt>+</tt> dans <tt>Projets -> Paramètres d'exécutions -> Configuration d'exécution</tt> et sélectionnez une nouvelle cible dans le menu déroulant. You can use Qt Creator with a number of <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">revision control systems</a> such as Subversion, Perforce, CVS and Git. - + Vous pouvez utiliser Qt Creator conjointement avec de nombreux <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">système de gestion de version</a> tel que Subversion, Perforce, CVS et Git. In the editor, <tt>F2</tt> toggles declaration and definition while <tt>F4</tt> toggles header file and source file. - + Dans l'éditeur, <tt>F2</tt> passe de la déclaration à la définition de fonction, tandis que <tt>F4</tt> passe du fichier source au fichier d'en-tête. @@ -14050,32 +14111,32 @@ p, li { white-space: pre-wrap; } Form - + Formulaire Installed S60 SDKs: - + SDKs S60 installés : SDK Location - + Emplacement du SDK Qt Location - + Emplacement de Qt Refresh - + Rafraîchir S60 SDKs - + SDKs S60 @@ -14108,7 +14169,7 @@ p, li { white-space: pre-wrap; } x - + x @@ -14116,17 +14177,18 @@ p, li { white-space: pre-wrap; } WizardPage - + WizardPage Checkout Directory: - + checkout should stay in English? + Répertoire de checkout : Path: - Chemin : + Chemin : @@ -14134,7 +14196,7 @@ p, li { white-space: pre-wrap; } Form - + Formulaire @@ -14150,7 +14212,7 @@ p, li { white-space: pre-wrap; } http://labs.trolltech.com/blogs/feed Add localized feed here only if one exists - + http://labs.trolltech.com/blogs/feed @@ -14160,7 +14222,7 @@ p, li { white-space: pre-wrap; } Qt Labs - + Qt Labs @@ -14170,17 +14232,17 @@ p, li { white-space: pre-wrap; } Qt Centre - + Qt Centre Qt Apps - + Qt Apps Qt for Symbian at Forum Nokia - + Qt pour Symbian Qt for S60 at Forum Nokia @@ -14194,7 +14256,9 @@ p, li { white-space: pre-wrap; } #gradientWidget { background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); } - + #gradientWidget { + background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); +} @@ -14203,22 +14267,25 @@ p, li { white-space: pre-wrap; } border-width: 0; } - + #headerFrame { + border-image: url(:/welcome/images/center_frame_header.png) 0; + border-width: 0; +} Help us make Qt Creator even better - Aidez-nous à améliorer Qt Creator + Aidez-nous à améliorer Qt Creator Feedback - Votre avis nous interesse + Votre avis nous interesse Welcome - Accueil + Accueil @@ -14226,7 +14293,7 @@ p, li { white-space: pre-wrap; } Show Details - + Afficher les détails @@ -14234,22 +14301,22 @@ p, li { white-space: pre-wrap; } Plain Text Editor - + Éditeur de texte Binary Editor - + Éditeur de binaire C++ Editor - + Éditeur C++ .pro File Editor - + Éditeur de fichier .pro @@ -14257,7 +14324,7 @@ p, li { white-space: pre-wrap; } Preferences - + Préférences @@ -14270,17 +14337,17 @@ p, li { white-space: pre-wrap; } No Server defined in the CodePaster preferences! - + Aucun serveur définit dans les préférences de CodePaster! No Server defined in the CodePaster options! - + Aucun serveur définit dans les options de CodePaster ! No such paste - + Aucun collage de ce type @@ -14293,17 +14360,17 @@ p, li { white-space: pre-wrap; } Code Pasting - + Collage de code Server: - + Serveur : Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com). - + Note : spécifiez le nom d'hôte du service CodePaster sans aucun protocol (e.g. codepaster.mycompany.com). @@ -14311,7 +14378,7 @@ p, li { white-space: pre-wrap; } Error during paste - + Erreur durant le collage @@ -14319,12 +14386,12 @@ p, li { white-space: pre-wrap; } Pastebin.com - + Pastebin.com Code Pasting - + Collage de code CodePaster @@ -14336,25 +14403,25 @@ p, li { white-space: pre-wrap; } Paste - Coller + Coller <Username> - <Utilisateur> + <Utilisateur> <Description> - <Description> + <Description> <Comment> - <Commentaire> + <Commentaire> @@ -14362,7 +14429,7 @@ p, li { white-space: pre-wrap; } Searching... - + Recherche... @@ -14370,12 +14437,12 @@ p, li { white-space: pre-wrap; } Checks out a project from a CVS repository. - + Obtient un projet à partir d'un dépôt CVS. CVS Checkout - + CVS Checkout @@ -14383,12 +14450,12 @@ p, li { white-space: pre-wrap; } Specify repository and path. - + Spécifier le dépôt et le chemin. Repository: - + Dépôt : @@ -14396,7 +14463,7 @@ p, li { white-space: pre-wrap; } Cannot find repository for '%1' - + Impossible de trouver le dépot de '%1' @@ -14404,12 +14471,12 @@ p, li { white-space: pre-wrap; } Parsing of the log output failed - + Échec de l'analyse de la sortie &CVS - + &CVS @@ -14424,7 +14491,7 @@ p, li { white-space: pre-wrap; } Alt+C,Alt+A - + Alt+C,Alt+A @@ -14464,7 +14531,7 @@ p, li { white-space: pre-wrap; } Alt+C,Alt+D - + Alt+C,Alt+D @@ -14484,7 +14551,7 @@ p, li { white-space: pre-wrap; } Alt+C,Alt+C - + Alt+C,Alt+C @@ -14529,17 +14596,17 @@ p, li { white-space: pre-wrap; } &Undo - + Annu&ler &Redo - + Re&faire Closing CVS Editor - + Ferme l'éditeur CVS @@ -14554,12 +14621,12 @@ p, li { white-space: pre-wrap; } The files do not differ. - + Les fichiers n'ont pas changé. The file '%1' could not be deleted. - + Le fichier '%1' n'a pas pu être supprimé. @@ -14584,39 +14651,42 @@ p, li { white-space: pre-wrap; } Cannot create temporary file: %1 - + Impossible de créer le fichier temporaire : %1 Project status - + Status du projet The initial revision %1 cannot be described. - + La révision initiale %1 n'a pas pu être décrite. Could not find commits of id '%1' on %2. - + %2 is a date + Impossible de trouver les commits d'id '%1' le %2. Executing: %1 %2 - + Exécute : %1 %2 + Executing in %1: %2 %3 - + Exécute dans %1 : %2 %3 + No cvs executable specified! - + Aucun exécutable CVS spécifié ! @@ -14631,12 +14701,12 @@ p, li { white-space: pre-wrap; } Could not start cvs '%1'. Please check your settings in the preferences. - + Impossible de démarrer cvs '%1'. Veuillez vérifier vos paramètres dans les préférences. CVS did not respond within timeout limit (%1 ms). - + CVS n'a pas répondu dans le temps imparti (%1 ms). @@ -14644,22 +14714,22 @@ p, li { white-space: pre-wrap; } Added - + Ajouté Removed - + Supprimé Modified - + Modifié CVS Submit - + CVS Submit @@ -14667,7 +14737,7 @@ p, li { white-space: pre-wrap; } CVS Command - + CVS Command @@ -14675,12 +14745,12 @@ p, li { white-space: pre-wrap; } <Unknown Type> - + <type inconnu> <Unknown Value> - + <valeur inconnue> @@ -14693,7 +14763,7 @@ p, li { white-space: pre-wrap; } Out of scope - + Hors de la portée @@ -14701,7 +14771,7 @@ p, li { white-space: pre-wrap; } Memory $ - + Mémoire $ @@ -14709,7 +14779,7 @@ p, li { white-space: pre-wrap; } Debug - Déboguer + Déboguer @@ -14717,7 +14787,7 @@ p, li { white-space: pre-wrap; } Debugger - Débogueur + Débogueur @@ -14727,44 +14797,46 @@ p, li { white-space: pre-wrap; } Error Loading Symbols - + Érreur de chargement des symboles No executable to load symbols from specified. - + Pas d'exécutable spécifié pour lire les symboles. Loading symbols from "%1" failed: - + Échec de chargement des symboles depuis "%1" : + Attached to core temporarily. - + Attaché au core temporairement. Unable to determine executable from core file. - + Impossible de déterminé l'exécutable à partire du fichier core. Attach to core "%1" failed: - + Échec de liaison au core "%1" : + Symbols found. - + Symboles trouvés. Attached to core. - + Attaché au core. @@ -14772,13 +14844,14 @@ p, li { white-space: pre-wrap; } Cannot set up communication with child process: %1 - + Impossible de mettre en place la communication avec le processus enfant : %1 Starting executable failed: - + Échec de lancement de l'exécutable : + @@ -14786,48 +14859,50 @@ p, li { white-space: pre-wrap; } The upload process failed to start. Shell missing? - + Le processus d'upload n'a pas pu démarrer. Shell manquant ? The upload process crashed some time after starting successfully. - + Le processus d'upload a crashé après avoir démarré. The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. - + this string appear twice in the translation + La dernière fonction waitFor...() est arrivé à échéance. Le status de QProcess est inchangé, vous pouvez essayer d'appeler waitFor...() à nouveau. An error occurred when attempting to write to the upload process. For example, the process may not be running, or it may have closed its input channel. - + Une erreur est survenue lors d'une tentative d'écriture sur l'entrée du processus d'upload. Le processus peut ne pas être lancé, ou il a fermé son entrée. An error occurred when attempting to read from the upload process. For example, the process may not be running. - + Une erreur est survenue lors d'une tentative de lecture depuis le processus d'upload. Il est probable que le processus n'est pas en cours d'exécution. An unknown error in the upload process occurred. This is the default return value of error(). - + Une erreur inconue est survenue dans le processus d'upload. Ceci est la valeur de retour par défaut de error(). Error - + Erreur Adapter too old: does not support asynchronous mode. - + Adaptateur trop vieux : aucun support du mode asynchrone. Starting remote executable failed: - + Démarrage de l'exécutable distant échoué : + @@ -14835,13 +14910,14 @@ p, li { white-space: pre-wrap; } Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. - + Processus démarré, PID : 0x%1, id du thread : 0x%2, segment de code : 0x%3, segment de données : 0x%4. Connecting to trk server adapter failed: - + Échec de la connexion à l'adapteur au serveur TRK : + @@ -14849,35 +14925,35 @@ p, li { white-space: pre-wrap; } Premature end of input - + Saisie interrompue Invalid encoding - + Encodage invalide Invalid name - + Nom invalide Invalid nested-name - + Nom imbriqué invalide Invalid template args - + Argument du modèle invalide Invalid template-param - + Paramètre du modèle invalide @@ -14892,21 +14968,21 @@ p, li { white-space: pre-wrap; } Invalid non-negative number - + Nombre positif invalide Invalid template-arg - + Argument de template invalide Invalid expression - + Expression invalide @@ -14925,7 +15001,7 @@ p, li { white-space: pre-wrap; } Invalid type - + Type invalide @@ -14941,7 +15017,7 @@ p, li { white-space: pre-wrap; } Invalid function type - + Type de fonction invalide @@ -15020,12 +15096,12 @@ p, li { white-space: pre-wrap; } Invalid digit - + Chiffre invalide At position %1: - + À la position %1 : @@ -15033,7 +15109,7 @@ p, li { white-space: pre-wrap; } untitled - sans titre + sans titre @@ -15041,12 +15117,12 @@ p, li { white-space: pre-wrap; } Clones a project from a git repository. - + Cloné un projet à partir d'un dépôt git. Git Repository Clone - + Clone du dépôt git @@ -15054,12 +15130,12 @@ p, li { white-space: pre-wrap; } Specify repository URL, checkout directory and path. - + Spécifié l'URL du dépôt, le répertoire et le chemin du checkout. Clone URL: - + URL de clone : @@ -15067,17 +15143,17 @@ p, li { white-space: pre-wrap; } Error parsing reply from '%1': %2 - + Erreur d'analyse de la réponse de '%1' : %2 Request failed for '%1': %2 - + Échec de la requéte pour '%1' : %2 Open source projects that use Git. - + Projets open source qui utilisent git. @@ -15085,12 +15161,12 @@ p, li { white-space: pre-wrap; } Clones a project from a Gitorious repository. - + Cloné un projet à partir d'un dépôt Gitorious. Gitorious Repository Clone - + Clone d'un dépôt Gitorious @@ -15098,7 +15174,7 @@ p, li { white-space: pre-wrap; } Select a host. - + Sélectionner un hôte. @@ -15106,7 +15182,7 @@ p, li { white-space: pre-wrap; } Choose a project from '%1' - + Choisir un projet à partir de '%1' @@ -15119,28 +15195,30 @@ p, li { white-space: pre-wrap; } Help - + Aide Open Image - + Image ouverte ? + Ouvrir une image Files (*.xbel) - + Fichiers (*.xbel) There was an error while importing bookmarks! - + Il ya eu une erreur lors de l'importation des signets! Save File - + Enregistrer ? (tout court) + Enregistrer le fichier @@ -15148,12 +15226,12 @@ p, li { white-space: pre-wrap; } The file is not an XBEL version 1.0 file. - + Il ne s'agit pas d'un fichier XBEL version 1.0. Unknown title - + Titre inconnue @@ -15161,17 +15239,17 @@ p, li { white-space: pre-wrap; } Failed to start program. Path or permissions wrong? - + Échec lors de l'exécution du programme. Mauvais chemin ou permissions ? The program has unexpectedly finished. - + Le programme s'est terminé inopinément. Some error has occurred while running the program. - + Une erreur s'est produite lors de l'exécution du programme. @@ -15179,7 +15257,7 @@ p, li { white-space: pre-wrap; } Run - + Exécuter @@ -15187,12 +15265,12 @@ p, li { white-space: pre-wrap; } Starting %1... - + Démarrage de %1... %1 exited with code %2 - + %1 s'est terminé avec le code %2 @@ -15200,17 +15278,17 @@ p, li { white-space: pre-wrap; } The target directory %1 could not be created. - + Le dossier cible %1 n'a pas pu être créé. The existing file %1 could not be removed. - + Le fichier existant %1 n'a pas pu être supprimé. The file %1 could not be copied to %2. - + Le fichier %1 n'a pas pu être copié en %2. @@ -15218,33 +15296,41 @@ p, li { white-space: pre-wrap; } - %1 Reason: %2 - + Les aides au déboguage n'ont pas pu être compilées dans aucun des dossiers suivant : +- %1 + +Raison : %2 Building debugging helper library in %1 - + Compilation de la bibliothèque d'aide au déboguage dans %1 + Running %1 %2... - + Exécution %1 %2... + %1 not found in PATH - + traduire PATH ici ? + %1 non trouvé dans le PATH + Running %1 ... - + Exécution %1... + @@ -15260,7 +15346,7 @@ Reason: %2 Active run configuration - + Configuration d'exécution active @@ -15268,12 +15354,12 @@ Reason: %2 Edit Project Settings for Project <b>%1</b> - + Éditer les paramètres du projet <b>%1</b> No Project loaded - + Aucun projet chargé @@ -15281,7 +15367,7 @@ Reason: %2 Select Project - + Sectionner projet @@ -15290,12 +15376,12 @@ Reason: %2 Active Build and Run Configurations - + Compilation active et configuration d'exécution No project loaded. - + Aucun projet chargé. @@ -15308,17 +15394,17 @@ Reason: %2 Rename... - + Renommer... New id: - + Nouvel identifiant : Rename id '%1'... - + Renommer l'identifiant '%1'... @@ -15331,12 +15417,12 @@ Reason: %2 Creates a Qt QML file. - + Créer un fichier QML. Qt QML File - + Fichier QML @@ -15352,7 +15438,7 @@ Reason: %2 <b>QML Make</b> - + <b>Make de QML</b> @@ -15361,17 +15447,17 @@ Reason: %2 <New class> - + <Nouvelle classe> Confirm Delete - + Confirmez la suppression Delete class %1 from list? - + Supprimer la classe %1 de la liste? @@ -15379,12 +15465,12 @@ Reason: %2 Qt4 Designer Custom Widget - + Widget personnalié pour Qt4 Designer Creates a Qt4 Designer Custom Widget or a Custom Widget Collection. - + Crée un widget personnalisé ou une collection de widgets personnalisés pour Qt4 Designer. @@ -15392,7 +15478,7 @@ Reason: %2 This wizard generates a Qt4 Designer Custom Widget or a Qt4 Designer Custom Widget Collection project. - + Cet assistant génère un projet pour créer un widget personnalisé ou une collection de widgets personnalisés pour Qt4 Designer. @@ -15400,17 +15486,17 @@ Reason: %2 Cannot open icon file %1. - + Impossible d'ouvrir le fichier d'icône %1. Creating multiple widget libraries (%1, %2) in one project (%3) is not supported. - + Créer plusieurs bibliothèques de widget (%1, %2) dans un même projet (%3) n'est pas supporté. Cannot open %1: %2 - + Imposible d'ouvrir %1 : %2 @@ -15426,17 +15512,17 @@ Reason: %2 QtS60DeviceRunConfiguration - + QtS60DeviceRunConfiguration Could not parse %1. The QtS60 Device run configuration %2 can not be started. - + Impossible d'analyser %1. La configuration d'appareil QtS60 %2 ne peut pas être démarrer. %1 on Symbian Device - + %1 sur appareil Symbian @@ -15444,83 +15530,84 @@ Reason: %2 Device: - + Appareil mobile : Name: - + Nom : Install File: - + Fichier d'installation : Device on Serial Port: - + Appareil mobile sur port série : Queries the device for information - + Inspecter l'appareil mobile pour mettre à jour les informations Self-signed certificate - + Certificat autosigné Choose certificate file (.cer) - + Choisir un fichier de certificat (.cer) Custom certificate: - + Certificat personnalisé : Choose key file (.key / .pem) - + Choisir le fichier contenant la clé (.key / .pem) Key file: - + Fichier contenant la clé : <No Device> Summary text of S60 device run configuration - + <Aucun appareil mobile> (custom certificate) - + (certificat personnalisé) (self-signed certificate) - + (certificat autosigné) Summary: Run on '%1' %2 - + Résumé : fonctionne avec '%1' %2 Connecting... - + Connexion... A timeout occurred while querying the device. Check whether Trk is running - + right translation of timeout in this context? + L'appareil mobile ne répond pas. Veuillez vérifier sir TRK est lancé @@ -15528,7 +15615,7 @@ Reason: %2 %1 on Symbian Device - + %1 sur appareil Symbian @@ -15536,106 +15623,109 @@ Reason: %2 Creating %1.sisx ... - + Création de %1.sisx... Executable file: %1 - + Fichier exécutable : %1 Debugger for Symbian Platform - + Débogueur pour plateforme Symbian %1 %2 - + TODO: remove the tr() + %1 %2 Could not read template package file '%1' - + Impossible de lire le fichier de package de modèles '%1' Could not write package file '%1' - + Impossible d'écrire le fichier package '%1' An error occurred while creating the package. - + Une erreur est survenue lors de la création du package. Package: %1 Deploying application to '%2'... - + Package : %1 +Déployement de l'application sur '%2'... Could not connect to phone on port '%1': %2 Check if the phone is connected and the TRK application is running. - + Impossible de se connecter au téléphone sur le port '%1' : %2 +Veuillez vérifier si le téléphone est connecté et que l'application TRK est lancée. Could not create file %1 on device: %2 - + Impossible de créer le fichier %1 sur l'appareil mobile %2 Could not write to file %1 on device: %2 - + Impossible d'écrire le fichier %1 sur l'appareil mobile : %2 Could not close file %1 on device: %2. It will be closed when App TRK is closed. - + Impossible de fermer le fichier %1 sur l'appareil mobile %2. Il sera fermé lorsque l'application TRK sera fermée. Could not connect to App TRK on device: %1. Restarting App TRK might help. - + Impossible de se connecter à l'application TRK sur l'appareil mobile : %1. Redémarrer l'application TRK pourrait résoudre le problème. Copying install file... - + Copie le fichier d'installation... %1% copied. - + %1% copié. Installing application... - + Installation de l'application... Could not install from package %1 on device: %2 - + Impossible d'installer à partir sur package %1 sur l'appareil mobile : %2 Failed to start %1. - + Échec du lancement de %1. %1 has unexpectedly finished. - + %1 s'est terminé de façon inattendu. An error has occurred while running %1. - + Une erreur s'est produite lors de l'exécution de %1. @@ -15643,22 +15733,22 @@ Check if the phone is connected and the TRK application is running. Finished. - + Terminé. Starting application... - + Démarrage de l'application... Application running with pid %1. - + Application en cours d'éxecution avec le pid %1. Could not start application: %1 - + Impossible de démarrer l'application : %1 @@ -15666,17 +15756,17 @@ Check if the phone is connected and the TRK application is running. Warning: Cannot locate the symbol file belonging to %1. - + Attention : Impossible de trouver le fichier de symboles appartenant à %1. Launching debugger... - + Lancement du débogueur... Debugging finished. - + Débogue terminé. @@ -15684,7 +15774,7 @@ Check if the phone is connected and the TRK application is running. No Qt installed - + Pas de Qt installé @@ -15692,17 +15782,17 @@ Check if the phone is connected and the TRK application is running. Name: - + Nom : Executable: - + Exécutable : Summary: Run %1 in emulator - + Sommaire: démarrer %1 sur l'émulateur @@ -15710,17 +15800,17 @@ Check if the phone is connected and the TRK application is running. %1 in Symbian Emulator - + %1 sur l'émulateur Symbian QtSymbianEmulatorRunConfiguration - + QtSymbianEmulatorRunConfiguration Could not parse %1. The Qt for Symbian emulator run configuration %2 can not be started. - + Impossible d'analyser %1. Qt pour la configuration d'éxecution de l'émulateur Symbian %2 ne peut pas être démarré. @@ -15728,7 +15818,7 @@ Check if the phone is connected and the TRK application is running. %1 in Symbian Emulator - + %1 sur l'émulateur Symbian @@ -15736,17 +15826,17 @@ Check if the phone is connected and the TRK application is running. Starting %1... - + Démarrage %1... [Qt Message] - + [Message Qt] %1 exited with code %2 - + %1 retourne le code %2 @@ -15754,17 +15844,17 @@ Check if the phone is connected and the TRK application is running. Run in Emulator - + Démarrer sur l'émulateur Run on Device - + Démarrer sur le dispositif Debug on Device - + Déboguer sur le dispositif @@ -15772,12 +15862,12 @@ Check if the phone is connected and the TRK application is running. Using Default Qt Version - + Utilisé la version Qt par défaut Using Qt Version "%1" - + Utilisé la version Qt "%1" @@ -15792,12 +15882,14 @@ Check if the phone is connected and the TRK application is running. %1 Debug - + On traduit ? + %1 Debug %1 Release - + On traduit ? + %1 Release @@ -15805,12 +15897,13 @@ Check if the phone is connected and the TRK application is running. Checks out a project from a Subversion repository. - + Vérifié un projet à partir d'un dépôt Subversion. Subversion Checkout - + checkout, on traduit ? + Checkout Subversion @@ -15818,12 +15911,13 @@ Check if the phone is connected and the TRK application is running. Specify repository, checkout directory and path. - + Traduction de checkout ? vérification ? contrôle ? + Spécifié le dépôt, le répertoire et le chemin de checkout. Repository: - + Dépôt : @@ -15831,7 +15925,8 @@ Check if the phone is connected and the TRK application is running. Not a color scheme file. - + Pas sur ? + Pas un fichier de jeu de couleur. @@ -15839,7 +15934,7 @@ Check if the phone is connected and the TRK application is running. Customized - + Customisé @@ -15847,32 +15942,32 @@ Check if the phone is connected and the TRK application is running. Cannot Open Project - + Impossible d'ouvrir le projet Failed to open project in '%1'. - + Échec de l'ouverture du projet dans '%1'. Could not find any project files matching (%1) in the directory '%2'. - + Impossible de trouvé un fichier de projet correspondant (%1) dans le répertoire '%2'. The Project Explorer is not available. - + L'explorateur de projets n'est pas disponible. '%1' does not exist. - + '%1' n'existe pas. Unable to open the project '%1'. - + Impossible d'ouvrir le projet '%1'. @@ -15880,22 +15975,22 @@ Check if the phone is connected and the TRK application is running. The process terminated with exit code %1. - Le processus s'est terminé avec le code %1. + Le processus s'est terminé avec le code %1. The process returned exit code %1. - + Le processus a retourné le code %1. The process terminated in an abnormal way. - + Le processus s'est terminé d'une façon anormale. Stopping... - + Arrêt... @@ -15903,17 +15998,18 @@ Check if the phone is connected and the TRK application is running. Checkout started... - + checkout encore ? + Checkout commencé... Failed. - + Échec. Succeeded. - + Réussi. @@ -15921,12 +16017,12 @@ Check if the phone is connected and the TRK application is running. Clear - + Effacer Version Control - Gestion de versions + Gestion de versions @@ -15934,7 +16030,7 @@ Check if the phone is connected and the TRK application is running. Community - Communauté + Communauté @@ -15942,97 +16038,97 @@ Check if the phone is connected and the TRK application is running. unknown - inconnue + inconnue CMake Project file - Fichier de projet CMake + Fichier de projet CMake C Source file - Fichier source C + Fichier source C C Header file - Fichier d'en-tête C + Fichier d'en-tête C C++ Header file - Fichier d'en-tête C++ + Fichier d'en-tête C++ C++ header - En-tête C++ + En-tête C++ C++ Source file - Fichier source C++ + Fichier source C++ C++ source code - Code source C++ + Code source C++ Objective-C source code - Code source en objective-C + Code source en objective-C CVS submit template - Modéle d'envoi de CVS + Modèle d'envoi de CVS Qt Designer file - Fichier du designer Qt + Fichier Qt designer Generic Qt Creator Project file - Fichier générique de projet Qt Creator + Fichier de projet générique Qt Creator Generic Project Files - Fichiers génériques de projet + Fichiers de projet générique Generic Project Include Paths - Chemins générique d'inclusion de projet + Chemins d'inclusion de projet générique Generic Project Configuration File - Fichier générique de configuration de projet + Fichier de configuration de projet générique Perforce submit template - Modéle d'envoi de Perforce + Modèle d'envoi de Perforce QML file - Fichier QML + Fichier QML Qml Project file - Fichier de projet Qml + Fichier de projet QML Qt Project file - Fichier de projet Qt + Fichier de projet Qt @@ -16084,34 +16180,37 @@ Check if the phone is connected and the TRK application is running. The Gdb process could not be stopped: %1 - + Le processus Gdb ne peut pas être arrêté : +%1 Inferior process could not be stopped: %1 - + Le processus inférieur ne peut pas être arrêté : +%1 Inferior started. - + Processus inférieur démarré. Inferior running. - + Processus inférieur en fonctionnement. Attached to stopped inferior. - + Attaché au processus inférieur. Connecting to remote server failed: %1 - + La connexion au serveur distant a échoué : +%1 @@ -16119,7 +16218,7 @@ Check if the phone is connected and the TRK application is running. Debugger Error - Erreur du débogueur + Erreur du débogueur @@ -16127,12 +16226,12 @@ Check if the phone is connected and the TRK application is running. No Symbian gdb executable specified. - + L'exécutable Symbian gdb n'est pas spécifié. The Symbian gdb executable '%1' could not be found in the search path. - + L'exécutable Symbian gdb '%1' ne peut pas être trouvé dans le chemin de recherche. @@ -16140,7 +16239,7 @@ Check if the phone is connected and the TRK application is running. Symbian Trk - TRK Symbian + TRK Symbian @@ -16148,66 +16247,66 @@ Check if the phone is connected and the TRK application is running. Illegal character - Caractère invalide + Caractère invalide Unclosed string at end of line - Chaîne de caractère non terminée en fin de ligne + Chaîne de caractère non terminée en fin de ligne Illegal escape squence - Séquence d'échappement invalide + Séquence d'échappement invalide Illegal unicode escape sequence trad illegal ? - Séquence d'échappement unicode invalide + Séquence d'échappement unicode invalide Unclosed comment at end of file - Commentaire non terminée en fin de ligne + Commentaire non terminée en fin de ligne Illegal syntax for exponential number - Syntaxe pour le nombre exponentiel invalide + Syntaxe pour le nombre exponentiel invalide Identifier cannot start with numeric literal Trad numeric literal ? - Un identificateur ne peut pas commencer par un nombre + Un identificateur ne peut pas commencer par un nombre Unterminated regular expression literal - Expression régulière littérale non terminée + Expression régulière non terminée Invalid regular expression flag '%0' - On traduit flag ? Comment ? - Expression régulière invalide '%0' + On traduit flag ? Comment ? [pierre: moi je traduirais pas...] + Expression régulière invalide flag '%0' Unexpected token `%1' - Symbole inattendu '%1' + Symbole inattendu '%1' Expected token `%1' - Symbole attendu '%1' + Symbole attendu '%1' Syntax error - Erreur de syntaxe + Erreur de syntaxe @@ -16215,27 +16314,27 @@ Check if the phone is connected and the TRK application is running. Id: - Id : + Id : Name: - Nom : + Nom : EPOC: - EPOC : + EPOC : Tools: - Outils : + Outils : Qt: - Qt : + Qt : @@ -16243,37 +16342,37 @@ Check if the phone is connected and the TRK application is running. %1: Stopping listener %2... - %1 : arrêt de l'observateur %2... + %1 : arrêt de l'observateur %2... %1: Starting Bluetooth listener %2... - %1 : démarrage de l'observateur Bluetooth %2... + %1 : démarrage de l'observateur Bluetooth %2... Unable to run '%1': %2 - Impossible de démarrer '%1' : %2 + Impossible de démarrer '%1' : %2 %1: Bluetooth listener running (%2). - %1 : observateur Bluetooth en cours d'éxecution (%2). + %1 : observateur Bluetooth en cours d'éxecution (%2). %1: Process %2 terminated with exit code %3. - %1 : processus %2 terminé avec le code %3. + %1 : processus %2 terminé avec le code %3. %1: Process %2 crashed. - %1 : processus %2 planté. + %1 : processus %2 planté. %1: Process error %2: %3 - %1 : erreur de processus %2 : %3 + %1 : erreur de processus %2 : %3 @@ -16281,27 +16380,28 @@ Check if the phone is connected and the TRK application is running. Connection on %1 canceled. - Connexion sur %1 annulée. + Connexion sur %1 annulée. Waiting for TRK - Attente de TRK + Attente de TRK Waiting for TRK to start on %1... - Attente de TRK pour démarrer sur %1... + Attente que TRK ai démarré sur %1... ??? [pierre: je plussoie] + Démarrage de TRK sur %1 en attente... Waiting for Bluetooth Connection - Attente d'une connexion Bluetooth + Attente d'une connexion Bluetooth Connecting to %1... - Connexion à %1... + Connexion à %1... @@ -16309,8 +16409,7 @@ Check if the phone is connected and the TRK application is running. %1: timed out after %n attempts using an interval of %2ms. - timed out ? - + %1 : interruption après %n tentative en utilisant un intervalle de %2ms. %1 : interruption après %n tentatives en utilisant un intervalle de %2ms. @@ -16318,13 +16417,12 @@ Check if the phone is connected and the TRK application is running. %1: Connection attempt %2 succeeded. - %1 : tenative de connexion %2 réussi. + %1 : tentative de connexion %2 réussie. %1: Connection attempt %2 failed: %3 (retrying)... - retrying ? - %1 : tenative de connexion %2 echoué : %3 (nouvel essai)... + %1 : tenative de connexion %2 echoué : %3 (nouvel essai)... diff --git a/share/qtcreator/translations/qtcreator_it.ts b/share/qtcreator/translations/qtcreator_it.ts index 6e9d0781212..bf0eb0b77e4 100644 --- a/share/qtcreator/translations/qtcreator_it.ts +++ b/share/qtcreator/translations/qtcreator_it.ts @@ -13272,7 +13272,7 @@ Queste codifiche dovrebbero andare bene: - <line number> + <line number> <numero di riga> diff --git a/share/qtcreator/translations/qtcreator_ja.ts b/share/qtcreator/translations/qtcreator_ja.ts index 8500b11a9dd..f59c75b1ed0 100644 --- a/share/qtcreator/translations/qtcreator_ja.ts +++ b/share/qtcreator/translations/qtcreator_ja.ts @@ -4,7 +4,7 @@ Application - + Failed to load core: %1 coreプラグインの読込に失敗しました: %1 @@ -16,16 +16,12 @@ Could not find 'Core.pluginspec' in %1 - + %1 に 'Core.pluginspec' が見つかりませんでした Qt Creator - Plugin loader messages - - - - Couldn't find 'Core.pluginspec' in %1 - %1 に 'Core.pluginspec' が見つかりませんでした + Qt Creator - プラグイン ローダからのメッセージ @@ -38,7 +34,7 @@ Executable: - 実行可能ファイル: + 実行ファイル: @@ -69,29 +65,6 @@ クリア - - AttachTcfDialog - - Start Debugger - デバッガの起動時の設定 - - - Host and port: - ホストおよびポート番号: - - - Architecture: - アーキテクチャ: - - - Use server start script: - サーバのスタートアップスクリプトを使用: - - - Server start script: - サーバのスタートアップスクリプト: - - BINEditor::Internal::BinEditorPlugin @@ -154,10 +127,6 @@ BookmarkManager - - Bookmark - ブックマーク - Bookmarks @@ -352,7 +321,7 @@ Clear system environment - + システム環境変数を非表示にする @@ -365,23 +334,23 @@ Create - + 作成 New configuration - 新しい構成 + 新しい構成 New Configuration Name: - 新しい構成名: + 新しい構成名: CMakeProjectManager::Internal::CMakeBuildSettingsWidget - + &Change 変更(&C) @@ -389,7 +358,7 @@ CMakeProjectManager::Internal::CMakeOpenProjectWizard - + CMake Wizard CMake ウィザード @@ -404,47 +373,47 @@ Select the working directory - 作業ディレクトリの選択 + 作業ディレクトリの選択 Reset to default - デフォルトに戻す + デフォルトに戻す Working Directory: - 作業ディレクトリ: + 作業ディレクトリ: Run Environment - + 実行時の環境変数 Base environment for this runconfiguration: - + 実行構成の元となる環境: Clean Environment - + 環境変数なし System Environment - + システム環境変数 Build Environment - ビルド時の環境変数 + ビルド時の環境変数 Running executable: <b>%1</b> %2 - + 実行ファイル: <b>%1</b> %2 @@ -452,11 +421,7 @@ Qt Creator has detected an <b>in-source-build in %1</b> which prevents shadow builds. Qt Creator will not allow you to change the build directory. If you want a shadow build, clean your source directory and re-open the project. - - - - Qt Creator has detected an in-source-build which prevents shadow builds. Qt Creator will not allow you to change the build directory. If you want a shadow build, clean your source directory and re-open the project. - ソースツリー内でビルドを実行しようとしています。ソースツリー内でビルドを行なうとシャドウビルドが不可能になり、ビルドディレクトリの変更が行なえません。シャドウビルドを行なう場合にはソースディレクトリのクリーンを行い、プロジェクトを再度開いてください。 + <b>ソースツリー: %1</b>内でビルドを実行しようとしています。ソースツリー内でビルドを行なうとシャドウビルドが不可能になり、ビルドディレクトリの変更が行なえません。シャドウビルドを行なう場合にはソースディレクトリをきれいにしてから、プロジェクトを再度開いてください。 @@ -464,22 +429,22 @@ Please specify the path to the cmake executable. No cmake executable was found in the path. - + cmake の実行ファイルにパスが通っていない為、cmake 実行ファイルのパスを指定してください。 The cmake executable (%1) does not exist. - + cmake 実行ファイル (%1) が存在しません。 The path %1 is not a executable. - + パス (%1) は実行ファイルではありません。 The path %1 is not a valid cmake. - + パス (%1) は、有効な cmake 実行ファイルのパスではありません。 @@ -494,7 +459,7 @@ The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used toolchain here and rerun cmake. Or simply finish the wizard directly - + ディレクトリ %1 には以前のものと思われる cbp ファイルが既に含まれています。特殊な引数を渡すか使用する ツール チェインを変更し、cmake を再実行してください。もしくは直接ウィザードを終了させてください @@ -519,28 +484,28 @@ NMake Generator - + NMake ジェネレータ NMake Generator (%1) - + NMake ジェネレータ (%1) MinGW Generator - + MinGW ジェネレータ - + No valid cmake executable specified. - + 有効な cmake 実行ファイルが指定されていません。 CMakeProjectManager::Internal::CMakeSettingsPage - + CMake CMake @@ -554,7 +519,7 @@ CMakeProjectManager::Internal::MakeStepConfigWidget - + Additional arguments: 追加の引数: @@ -566,13 +531,13 @@ <b>Make:</b> %1 %2 - + <b>Make:</b> %1 %2 CMakeProjectManager::Internal::ShadowBuildPage - + Please enter the directory in which you want to build your project. プロジェクトをビルドするディレクトリを指定してください。 @@ -587,13 +552,6 @@ ビルド ディレクトリ: - - CMakeProjectManager::Internal::XmlFileUpToDatePage - - Qt Creator has found a recent cbp file, which Qt Creator will parse to gather information about the project. You can change the command line arguments used to create this file in the project mode. Click finish to load the project. - 最新の cbp ファイルが見つかりました。ファイルを解析してプロジェクトに関する情報を取得します。このプロジェクトの cbp ファイル作成時とはコマンドライン引数を変更することも可能です。「完了」をクリックしてプロジェクトを読み込んでください。 - - CPlusPlus::OverviewModel @@ -614,13 +572,6 @@ These options take effect at the next start of Qt Creator. これらのオプションは次回の Qt Creator の起動時から有効になります。 - - <html><body><p>Specify the path to the <a href="%1">Debugging Tools for Windows</a> (%n bit-version) here.</p><p><b>Note:</b> Restarting Qt Creator is required for these settings to take effect.</p></p></body></html> - Label text for path configuration. Singular form is not very likely to occur ;-) - - <html><body><p><a href="%1">Windows 用デバッグツール</a> (%n bit版)のパスを指定してください。</p><p><b>注意:</b>この設定を反映させるためには Qt Creator の再起動が必要です。</p></p></body></html> - - Cdb @@ -651,27 +602,27 @@ <html><body><p>Specify the path to the <a href="%1">Debugging Tools for Windows</a> (%2) here.</p><p><b>Note:</b> Restarting Qt Creator is required for these settings to take effect.</p></p></body></html> Label text for path configuration. %2 is "x-bit version". - + <html><body><p>ここに <a href="%1">Debugging Tools for Windows</a> (%2) のパスを指定してください。</p><p><b>メモ:</b> この設定を有効にするには Qt Creator を再起動する必要があります。</p></p></body></html> 64-bit version - + 64 bit バージョン 32-bit version - + 32 bit バージョン Other options - + その他のオプション Verbose Symbol Loading - + 冗長なシンボル読み込み @@ -695,9 +646,9 @@ CodePaster::CodepasterPlugin - - &CodePaster - コード ペースター(&C) + + &Code Pasting + コード貼り付け(&C) @@ -705,24 +656,24 @@ スニペットを貼り付ける... - + Alt+C,Alt+P Alt+C,Alt+P - + Fetch Snippet... スニペットを取り出す... - + Alt+C,Alt+F Alt+C,Alt+F - + This protocol supports no listing - + このプロトコルはリスト形式をサポートしていません @@ -730,28 +681,6 @@ リスト取得中 - - CodePaster::CustomFetcher - - CodePaster Error - コード ペースター エラー - - - Could not fetch code - コードを取得できませんでした - - - - CodePaster::CustomPoster - - CodePaster Error - コード ペースター エラー - - - Some error occured while posting - ポスト中にエラーが発生しました - - CodePaster::PasteSelectDialog @@ -762,15 +691,11 @@ Protocol: - + プロトコル: CodePaster::SettingsPage - - CodePaster Server: - コード ペースター サーバ: - Username: @@ -788,30 +713,34 @@ - + General 概要 - CodePaster コード ペースター Default Protocol: - + デフォルト プロトコル: Pastebin.ca - + Pastebin.ca Pastebin.com - + Pastebin.com + + + + Code Pasting + コード貼り付け @@ -845,10 +774,6 @@ Skip known frames when stepping ステップ実行時は既知のフレームをスキップする - - Use tooltips while debugging - デバッグ中にツールチップを使用する - Maximal stack depth: @@ -864,10 +789,6 @@ Use alternating row colors in debug views デバッガウィンドウで行ごとに色を変える - - Checking this will enable tooltips for variable values during debugging. Since this can slow down debugging and does not provide reliable information as it does not use scope information, it is switched off by default. - デバッグ中に変数の値をツールチップで表示します。<br>しかしデバッグ実行の速度が低下する上に、スコープを無視した不確かな情報しか表示しない為<br>デフォルトではチェックOFFとなっています。 - Enable reverse debugging @@ -876,12 +797,12 @@ Show a message box when receiving a signal - + シグナル受信中にメッセージボックスを表示する Use tooltips in main editor while debugging - + デバッグ中のメイン エディタでツールチップを使用する @@ -1007,13 +928,13 @@ Would you like to overwrite them? Core::EditorManager - + Revert to Saved 保存時の状態に戻す - - + + Close 閉じる @@ -1024,20 +945,12 @@ Would you like to overwrite them? - + Close Others 他を閉じる - Next Document in History - 履歴内の次のドキュメントに移動 - - - Previous Document in History - 履歴内の前のドキュメントに移動 - - - + Open in External Editor 外部エディタで開く @@ -1097,57 +1010,32 @@ Would you like to overwrite them? Alt+Right - + Split 上下に分割 - - Ctrl+E,2 - Ctrl+E,2 - - - + Split Side by Side 左右に分割 - - Ctrl+E,3 - Ctrl+E,3 - - - + Remove Current Split 現在の分割ウィンドウを閉じる - - Ctrl+E,0 - Ctrl+E,0 - - - + Remove All Splits すべての分割ウィンドウを閉じる - - Ctrl+E,1 - Ctrl+E,1 - - - + Goto Other Split 他の分割ウィンドウへ移動 - - Ctrl+E,o - Ctrl+E,o - - - + &Advanced 拡張(&A) @@ -1159,7 +1047,7 @@ Would you like to overwrite them? All Files (*) - + すべてのファイル (*) @@ -1198,7 +1086,7 @@ Would you like to overwrite them? 名前を付けて保存... - + Failed! エラー発生! @@ -1214,20 +1102,20 @@ Would you like to overwrite them? <b>警告:</b> 読み取り専用ファイルを変更しています。 - - + + Make writable 書込可能にする - + Next Open Document in History - + 履歴内の次のドキュメントに移動 Previous Open Document in History - + 履歴内の前のドキュメントに移動 @@ -1240,7 +1128,42 @@ Would you like to overwrite them? 進む - + + Meta+E + Meta+E + + + + Ctrl+E + Ctrl+E + + + + %1,2 + %1,2 + + + + %1,3 + %1,3 + + + + %1,0 + %1,0 + + + + %1,1 + %1,1 + + + + %1,o + %1,o + + + Could not open the file for editing with SCC. ファイルを SCC で編集用に開けませんでした。 @@ -1292,23 +1215,15 @@ Would you like to overwrite them? Core::FileManager - - Can't save file - ファイルの保存に失敗 - - - Can't save changes to '%1'. Do you want to continue and loose your changes? - '%1' の変更を保存できません。変更が失われますが、続行しますか? - Cannot save file - + ファイルの保存に失敗 Cannot save changes to '%1'. Do you want to continue and lose your changes? - + '%1' の変更を保存できません。変更が失われますが、続行しますか? @@ -1417,15 +1332,15 @@ Would you like to overwrite them? Core::Internal::EditorView - - + + Go Back - 戻る + 戻る Go Forward - 進む + 進む @@ -1439,7 +1354,7 @@ Would you like to overwrite them? 閉じる - + Make writable 書込可能にする @@ -1451,7 +1366,7 @@ Would you like to overwrite them? Copy full path to clipboard - + クリップボードにフルパスをコピー @@ -1509,28 +1424,28 @@ Would you like to overwrite them? When files are externally modified: - + 外部でファイルが変更された時: Always ask - + 常に問い合わせる Reload all modified files - + 変更されたファイルをすべて再読み込み Ignore modifications - + 変更を無視 Core::Internal::MainWindow - + Qt Creator Qt Creator @@ -1540,7 +1455,7 @@ Would you like to overwrite them? アウトプット - + &File ファイル(&F) @@ -1564,32 +1479,20 @@ Would you like to overwrite them? &Help ヘルプ(&H) - - &New... - 新規作成(&N)... - - - &Open... - 開く(&O)... - - - &Open With... - 指定したエディタで開く(&O)... - &New File or Project... - + ファイル/プロジェクトの新規作成(&N)... &Open File or Project... - + ファイル/プロジェクトを開く(&O)... &Open File With... - + プログラムを指定して開く(&O)... @@ -1722,6 +1625,11 @@ Would you like to overwrite them? Title of dialog 新規... + + + Settings... + 設定... + Core::Internal::MessageOutputWindow @@ -1779,32 +1687,32 @@ Would you like to overwrite them? Open Documents - ドキュメントを開く + 開いているドキュメント Close %1 - %1 を閉じる + %1 を閉じる Close Editor - + エディタを閉じる Close All Except %1 - %1 以外のすべてを閉じる + %1 以外のすべてを閉じる Close Other Editors - + 他のエディタを閉じる Close All Editors - + すべてのエディタを閉じる @@ -1895,14 +1803,10 @@ Would you like to overwrite them? Core::Internal::SaveItemsDialog - - Don't Save - 保存しない - Do not Save - + 保存しない @@ -1981,233 +1885,6 @@ Would you like to overwrite them? <h3>Qt Creator %1</h3>Qt %2 (%3 bit)を使用<br/><br/>%4 の %5 にビルド<br /><br/>%8<br/>Copyright 2008-%6 %7. All rights reserved.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> - - Core::Internal::WelcomeMode - - Tutorials - チュートリアル - - - Explore Qt Examples - Qt のサンプルプログラムを参照 - - - Open Recent Project - 最近使ったプロジェクトを開く - - - Resume Session - セッションを復元 - - - Did You Know? - ご存じですか? - - - News From the Qt Labs - Qt Labsからのニュース - - - Qt Websites - Qt の Web サイト - - - http://labs.trolltech.com/blogs/feed - Add localized feed here only if one exists - http://labs.trolltech.com/blogs/feed - - - Qt Home - Qt Home - - - Qt Labs - Qt Labs - - - Qt Git Hosting - Qt Git ホスティング - - - Qt Centre - Qt Centre - - - Qt for S60 at Forum Nokia - Forum Nokia の Qt for S60 - - - <b>Qt Creator - A quick tour</b> - <b>Qt Creator - 簡易ガイド</b> - - - Creating an address book - アドレス帳アプリの作成 - - - Understanding widgets - ウィジェットを理解する - - - Building with qmake - qmake でビルドする - - - Writing test cases - テストケースを作成する - - - Welcome - ようこそ - - - %1 (last session) - %1 (最後のセッション) - - - Choose an example... - サンプルプログラムを選ぶ... - - - New Project... - 新しいプロジェクト... - - - Cmd - Shortcut key - Cmd - - - Alt - Shortcut key - Alt - - - You can switch between Qt Creator's modes using <tt>Ctrl+number</tt>:<ul><li>1 - Welcome</li><li>2 - Edit</li><li>3 - Debug</li><li>4 - Projects</li><li>5 - Help</li><li></li><li>6 - Output</li></ul> - Qt Creator のモードは<tt>Ctrl+数字</tt>キーで変更できます:<ul><li>1 - ようこそ</li><li>2 - 編集</li><li>3 - デバッグ</li><li>4 - プロジェクト</li><li>5 - ヘルプ</li><li></li><li>6 - アウトプット</li></ul> - - - You can show and hide the side bar using <tt>%1+0<tt>. - %1 gets replaced by Alt (Win/Unix) or Cmd (Mac) - <tt>%1+0</tt>キーでサイドバーの表示/非表示を切り替えられます。 - - - You can start Qt Creator with a session by calling <tt>qtcreator &lt;sessionname&gt;</tt>. - Qt Creator の起動時にセッション名を渡す(<tt>qtcreator &lt;セッション名&gt;)とそのセッションを開始できます。 - - - You can return to edit mode from any other mode at any time by hitting <tt>Escape</tt>. - <tt>エスケープ</tt>キーでいつでもほかのモードから編集モードに戻れます。 - - - You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom:<ul><li>1 - Build Issues</li><li>2 - Search Results</li><li>3 - Application Output</li><li>4 - Compile Output</li></ul> - %1 gets replaced by Alt (Win/Unix) or Cmd (Mac) - アウトプット欄は<tt>%1+数字</tt>キーで変更できます。使用する数字はウィンドウの下部のボタンに記述されています:<ul><li>1 - ビルドの問題点</li><li>2 - 検索結果</li><li>3 - アプリケーション出力</li><li>4 - コンパイル出力</li></ul> - - - You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator bar</a> (<tt>Ctrl+K</tt>). - メソッドやクラス、ヘルプなどを素早く検索するには<a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">クイックアクセス</a> (<tt>Ctrl+K</tt>)を使用します。 - - - You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">build settings</a>. - <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">ビルド設定</a>を変更して独自のビルドステップを追加できます。 - - - Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">dependencies</a> between projects. - セッションではプロジェクト間の<a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">依存関係</a>を定義できます。 - - - You can set the preferred editor encoding for every project in <tt>Projects -> Editor Settings -> Default Encoding</tt>. - 各プロジェクトの編集時の文字コードは<tt>プロジェクト -> エディタの設定 -> デフォルトの文字コード</tt>で指定できます。 - - - You can modify the binary that is being executed when you press the <tt>Run</tt> button: Add a <tt>Custom Executable</tt> by clicking the <tt>+</tt> button in <tt>Projects -> Run Settings -> Run Configuration</tt> and then select the new target in the combo box. - <tt>実行</tt>ボタンを押したときに実行されるファイルは<tt>プロジェクト -> 実行時の設定 -> 実行時の条件</tt>の<tt>+</tt>ボタンで<tt>カスタム実行ファイル</tt>を選択することで追加できます。追加した後に<tt>実行時の条件</tt>のコンボボックスから作成した条件を選択してください。 - - - You can use Qt Creator with a number of <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">revision control systems</a> such as Subversion, Perforce and Git. - Qt Creator では Subversion や Perforce、Git 等のさまざまな<a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">バージョン管理システム</a>を使用できます。 - - - In the editor, <tt>F2</tt> toggles declaration and definition while <tt>F4</tt> toggles header file and source file. - 編集モードでは<tt>F2</tt>キーで宣言と定義を、<tt>F4</tt>キーでヘッダファイルとソースファイルを切り替えできます。 - - - You can fine tune the <tt>Find</tt> function by selecting &quot;Whole Words&quot; or &quot;Case Sensitive&quot;. Simply click on the icons on the right end of the line edit. - <tt>検索</tt>機能は&quot;単語単位で検索する&quot;や&quot;大文字/小文字を区別する&quot;を選択することで目的に合わせて検索結果を調整できます。検索文字列を入力する欄の右端にあるアイコンをクリックすることで機能を選択できます。 - - - If you add <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">external libraries</a>, Qt Creator will automatically offer syntax highlighting and code completion. - <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">外部のライブラリ</a>をプロジェクトに追加した場合、Qt Creator は自動的にシンタックスハイライトやコード補完を行います。 - - - The code completion is CamelCase-aware. For example, to complete <tt>namespaceUri</tt> you can just type <tt>nU</tt> and hit <tt>Ctrl+Space</tt>. - コード補完はキャメルケースに対応しています。たとえば<tt>namespaceUrl</tt>を補完したい場合、<tt>nU</tt>と入力して<tt>Ctrl+Space</tt>を押してください。 - - - You can force code completion at any time using <tt>Ctrl+Space</tt>. - <tt>Ctrl+Space</tt>を押せば任意のタイミングでコード補完を開始することができます。 - - - - Core::Internal::WelcomePage - - #gradientWidget { - background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); -} - #gradientWidget { - background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); -} - - - #headerFrame { - border-image: url(:/core/images/welcomemode/center_frame_header.png) 0; - border-width: 0; -} - - #headerFrame { - border-image: url(:/core/images/welcomemode/center_frame_header.png) 0; - border-width: 0; -} - - - - Getting Started - Qt Creator を始めよう - - - Develop - 開発 - - - Community - コミュニティ - - - Examples not installed - サンプルプログラムがインストールされていません - - - Open - 開く - - - Manage Sessions... - セッション管理... - - - Create New Project... - 新しいプロジェクトの作成... - - - Help us make Qt Creator even better - Qt Creator の改善にご協力ください - - - Feedback - フィードバック - - Core::ModeManager @@ -2302,12 +1979,12 @@ Would you like to overwrite them? Cannot obtain a handle to the inferior: %1 - 子プロセスのハンドルが取得できません: %1 + プログラムのハンドルが取得できません: %1 Cannot obtain exit status from inferior: %1 - 子プロセスの終了ステータスが取得できません: %1 + プログラムの終了ステータスが取得できません: %1 @@ -2370,7 +2047,7 @@ Would you like to overwrite them? Utils::NewClassWidget - + Invalid base class name 無効な基底クラス名 @@ -2424,6 +2101,26 @@ Would you like to overwrite them? Path: パス: + + + Inherits QObject + QObject を継承 + + + + Type information: + 型情報: + + + + None + なし + + + + Inherits QWidget + QWidget を継承 + Utils::PathChooser @@ -2438,7 +2135,7 @@ Would you like to overwrite them? 参照... - + Choose a directory ディレクトリを選択してください @@ -2588,7 +2285,7 @@ Would you like to overwrite them? The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes? - + 保存されていないファイル %1 は Qt Creator以外で変更されています。再読込して、変更内容を廃棄しますか? @@ -2599,19 +2296,19 @@ Would you like to overwrite them? CppEditor::Internal::CPPEditor - + Sort alphabetically アルファベット順にソート - + This change cannot be undone. - + この変更は正常に完了できない可能性があります。 Yes, I know what I am doing. - + はい、分かっています。 @@ -2627,7 +2324,7 @@ Would you like to overwrite them? ヘッダー ファイルとソース ファイルの名前はクラス名を元にします - + Configure... 構成... @@ -2635,7 +2332,7 @@ Would you like to overwrite them? CppEditor::Internal::CppClassWizard - + Error while generating file contents. ファイル生成中にエラーが発生。 @@ -2643,7 +2340,7 @@ Would you like to overwrite them? CppEditor::Internal::CppClassWizardDialog - + C++ Class Wizard C++ クラス ウィザード @@ -2659,7 +2356,7 @@ Would you like to overwrite them? CppEditor::Internal::CppPlugin - + C++ C++ @@ -2671,12 +2368,12 @@ Would you like to overwrite them? Creates a C++ header file. - C++ のヘッダーファイルを作成する。 + C++ のヘッダーファイルを作成します。 Creates a C++ source file. - C++ のソースファイルを作成する。 + C++ のソースファイルを作成します。 @@ -2694,7 +2391,7 @@ Would you like to overwrite them? 新しいクラスのヘッダーファイルとソースファイルを作成します。 - + Follow Symbol under Cursor カーソル位置のシンボルの定義へ移動 @@ -2706,17 +2403,22 @@ Would you like to overwrite them? Find Usages - + 出現箇所を検索 Ctrl+Shift+U - Ctrl+Shift+U + Ctrl+Shift+U Rename Symbol under Cursor - + カーソル位置のシンボルの名前を変更 + + + + Update code model + コード モデルを更新する @@ -2744,13 +2446,13 @@ Would you like to overwrite them? License Template: - + ライセンス テンプレート: CppPreprocessor - + %1: No such file or directory %1: そのようなファイルもしくはディレクトリはありません @@ -2758,9 +2460,9 @@ Would you like to overwrite them? CppTools::Internal::CppModelManager - + Scanning - + スキャン中 @@ -2818,36 +2520,10 @@ Would you like to overwrite them? クラスとメソッド - - CppTools::Internal::FindClassDeclarations - - - Search class - - - - - Class Declarations - - - - - CppTools::Internal::FindFunctionCalls - - - Search functions - - - - - Function calls - - - CppTools::Internal::CppToolsPlugin - + &C++ C++(&C) @@ -2860,7 +2536,7 @@ Would you like to overwrite them? CppTools::Internal::FunctionArgumentWidget - + %1 of %2 %1/%2 @@ -2878,7 +2554,7 @@ Would you like to overwrite them? デバッガ - + <Encoding error> <エンコーディングエラー> @@ -2887,14 +2563,14 @@ Would you like to overwrite them? QtDumperHelper - Found a too-old version of the debugging helper library (%1); version %2 is required. - + Found an outdated version of the debugging helper library (%1); version %2 is required. + 旧バージョンのデバッグヘルパライブラリ(%1)が見つかりました。バージョン %2 が必要です。 %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 - - + + 既知の型: %n, Qt バージョン: %1, Qt ネームスペース: %2, ダンパバージョン: %3 @@ -2902,17 +2578,11 @@ Would you like to overwrite them? <none> <なし> - - %n known types, Qt version: %1, Qt namespace: %2 - - 既知の型: %n, Qt バージョン: %1, Qt ネームスペース: %2 - - Debugger::Internal::AttachCoreDialog - + Select Executable 実行ファイルを選択 @@ -2950,27 +2620,12 @@ Would you like to overwrite them? Select start address - + 開始アドレスの選択 Enter an address: - - - - - Debugger::MessageBox - - - Settings... - 設定... - - - - Debugger::Internal::AttachTcfDialog - - Select Executable - 実行ファイルを選択 + アドレスを入力してください: @@ -3073,7 +2728,7 @@ Would you like to overwrite them? Address - アドレス + アドレス @@ -3101,17 +2756,17 @@ Would you like to overwrite them? Delete all breakpoints - + すべてのブレークポイントを削除 Delete breakpoints of "%1" - + "%1" のブレークポイントを削除 Delete breakpoints of file - + ファイル内のブレークポイントを削除 @@ -3172,7 +2827,7 @@ Would you like to overwrite them? Debugger::Internal::CdbDebugEngine - + Unable to load the debugger engine library '%1': %2 デバッガエンジンライブラリ '%1' の読込に失敗しました: %2 @@ -3183,21 +2838,32 @@ Would you like to overwrite them? 関数 "%1()" の実行に失敗しました: %2 - + Unable to resolve '%1' in the debugger engine library '%2' デバッガエンジンライブラリ '%2' に関数 '%1' が見つかりません - The dumper library '%1' does not exist. - ダンパライブラリ '%1' は存在しません。 + + Version: %1 + バージョン: %1 - + + <html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html> + <html>インストール済み <i>Debugging Tools for Windows</i> (%1) は多少バージョンが古いです。Qt のデータ型を正しく表示できるようにする為、バージョン %2 へのアップグレードをお勧めします。</html> + + + + Debugger + デバッガ + + + The dumper library was not found at %1. - + %1 にダンパライブラリが見つかりません。 - + The console stub process was unable to start '%1'. コンソールスタブプロセス '%1' が開始できません。 @@ -3212,14 +2878,14 @@ Would you like to overwrite them? デバッガ実行中 - + Attaching to a process failed for process id %1: %2 プロセスID %1 のプロセスへアタッチできません: %2 Unable to set the image path to %1: %2 - + シンボル イメージのパスを %1 に設定できません: %2 @@ -3227,54 +2893,54 @@ Would you like to overwrite them? プロセス '%1' が実行できません: %2 - + The process exited with exit code %1. - + プロセスは終了コード %1 で終了しました。 Continuing with '%1'... - + '%1' を継続しています... Unable to continue: %1 - + 継続できませんでした: %1 - + Reverse stepping is not implemented. - + 逆方向のステップ実行は未実装です。 - + + Thread %1 cannot be stepped. + スレッド %1 を停止できません。 + + + Stepping %1 - + %1 を停止中 - - Running to 0x%1... - - - - + Running requested... - 実行しようとしています... + 実行しようとしています... - + Running up to %1:%2... - + %1:%2 行目まで実行しています... Running up to function '%1()'... - + 関数 '%1()' まで実行しています... Jump to line is not implemented - + 指定行まで実行 は未実装です @@ -3284,7 +2950,7 @@ Would you like to overwrite them? Unable to retrieve %1 bytes of memory at 0x%2: %3 - + メモリの 0x%2 から %1 bytes 分を読み取れません: %3 @@ -3298,30 +2964,40 @@ Would you like to overwrite them? デバッガエラー - + + Ignoring initial breakpoint... + 初期化中のブレークポイントを無視します... + + + + Interrupted in thread %1, current thread: %2 + スレッド %1 で割り込みが発生しました、現在のスレッドは %2 です + + + Stopped, current thread: %1 - + 停止しました、現在のスレッド: %1 - + Changing threads: %1 -> %2 - + スレッドが切り替わりました: %1 -> %2 - + Thread %1: Missing debug information for top stack frame (%2). - + スレッド %1: 最上位のスタックフレーム (%2) のデバッグ情報が見つかりません。 Thread %1: No debug information available (%2). - + スレッド %1: 最上位のスタックフレーム (%2) に利用可能なデバッグ情報がありません。 Debugger::Internal::CdbDumperHelper - + injection injection @@ -3346,32 +3022,32 @@ Would you like to overwrite them? カスタムダンパライブラリ '%1' (%2) を読み込みました。 - + + Stopped / Custom dumper library initialized. + 停止中 / カスタムダンパライブラリを初期化しました。 + + + Disabling dumpers due to debuggee crash... デバッグ対象がクラッシュしたためダンパの使用を禁止します... - + The debuggee does not appear to be Qt application. デバッグ対象は Qt のアプリケーションではありません。 - + Initializing dumpers... ダンパを初期化しています... - - Custom dumper library initialized. - カスタムダンパライブラリを初期化しました。 - - - + The custom dumper library could not be initialized: %1 カスタムダンパライブラリが初期化できませんでした: %1 - + Querying dumpers for '%1'/'%2' (%3) ダンパの確認中 '%1'/'%2' (%3) @@ -3427,7 +3103,7 @@ Would you like to overwrite them? Debugger::Internal::DebugMode - + Debug デバッグ @@ -3435,18 +3111,18 @@ Would you like to overwrite them? Debugger::DebuggerManager - + Continue 続行 - + Interrupt 割り込み - + Reset Debugger デバッガをリセット @@ -3460,14 +3136,6 @@ Would you like to overwrite them? Step Into ステップ イン - - Step Over Instruction - ステップ飛ばし - - - Step One Instruction - ステップ実行 - Step Out @@ -3504,18 +3172,25 @@ Would you like to overwrite them? 逆方向 - Stop requested... - 停止させようとしています... + + Turn off helper usage + デバッグヘルパを使用しない - + + The debugger could not load the debugging helper library. + デバッグヘルパライブラリを読み込めませんでした。 + + + + The debugging helper is used to nicely format the values of some Qt and Standard Library data types. It must be compiled for each used Qt version separately. This can be done in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' in the 'Debugging Helper' row. + デバッグ ヘルパは Qt や STL のデータ型の値を分かりやすくする為に使われます。デバッグ ヘルパはシステムにインストールされている Qt の各バージョン、それぞれにおいてコンパイルされている必要があります。デバッグ・ヘルパをコンパイルするにはオプションの Qt バージョンのページで、使用する Qt バージョンを選択して 'リビルド' をクリックして下さい。 + + + Stopped. 停止しました。 - - Running requested... - 実行しようとしています... - Running... @@ -3528,79 +3203,52 @@ Would you like to overwrite them? ブレークポイントの状態を変更するには、アプリケーションが完全に起動しているか停止している必要があります。 - - Debugging VS executables is currently not enabled. - Visual Studioで作成した実行ファイルのデバッグは現在許可されていません。 - - - The debugging helper is used to nicely format the values of Qt data types and some STL data types. It must be compiled for each Qt version which you can do in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' for the debugging helper. - デバッグヘルパはQtのデータ型やSTLデータ型の値を読みやすく整形するために使用されています。ヘルパは各 Qt のバージョンごとにコンパイルする必要があります。デバッグヘルパのコンパイルは Qt の設定ページでインストールされている Qt を選択し、'リビルド'ボタンを押して行います。 - - - + Warning 警告 - Cannot debug '%1': %2 - %1 をデバッグできません: %2 - - - Settings... - 設定... - - - + Save Debugger Log デバッガ ログを保存 - - The debugging helper is used to nicely format the values of some Qt and Standard Library data types. It must be compiled for each Qt version which you can do in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' for the debugging helper. - - - - + Stop Debugger デバッガを停止 - + Open Qt preferences Qt の設定画面を開く - + Exited. - + 終了しました。 The application requires the debugger engine '%1', which is disabled. - + アプリケーションが要求するデバッグ エンジン '%1' は、使用できません。 - + Starting debugger for tool chain '%1'... - + ツール チェイン '%1' のデバッグを開始しています... Cannot debug '%1' (tool chain: '%2'): %3 - + '%1' (ツール チェイン: '%2') のデバッグができません: %3 - + %1 (explicitly set in the Debugger Options) - + %1 (デバッガ オプション内で設定) - - Turn helper usage off - デバッグヘルパを使用しない - - - + Continue anyway 無視して続行 @@ -3609,11 +3257,6 @@ Would you like to overwrite them? Debugging helper missing デバッグヘルパが見つかりません - - - The debugger did not find the debugging helper library. - デバッグヘルパライブラリが見つかりませんでした。 - Debugger::Internal::DebuggerOutputWindow @@ -3626,7 +3269,7 @@ Would you like to overwrite them? Debugger::Internal::DebuggerPlugin - + Option '%1' is missing the parameter. オプション %1 に必要なパラメータが不足しています。 @@ -3660,14 +3303,6 @@ Would you like to overwrite them? Attach to Core... コアファイルへアタッチ... - - Attach to Running Tcf Agent... - 実行中の TCF エージェントにアタッチします... - - - This attaches to a running 'Target Communication Framework' agent. - 実行中の 'Target Communication Framework' のエージェントにアタッチします。 - Start and Attach to Remote Application... @@ -3731,7 +3366,7 @@ Would you like to overwrite them? Attaching to core %1. - + コアファイル %1 にアタッチします。 @@ -3741,7 +3376,7 @@ Would you like to overwrite them? Detach Debugger - デバッガのデタッチ + デバッガをデタッチ @@ -3750,10 +3385,21 @@ Would you like to overwrite them? - Debugger::Internal::DebuggerRunner + Debugger::Internal::DebuggerListener - Debug - デバッグ + + Close Debugging Session + デバッグセッションを閉じる + + + + A debugging session is still in progress. Would you like to terminate it? + デバッグセッションは、まだ実行中です。デバッグセッションを終了しますか? + + + + A debugging session is still in progress. Terminating the session in the current state (%1) can leave the target in an inconsistent state. Would you still like to terminate it? + デバッグセッションは、まだ実行中です。終了しようとしているセッションの現状態は (%1) ですが、終了すると不整合状態になる可能性があります。デバッグセッションを終了しますか? @@ -3781,32 +3427,32 @@ Would you like to overwrite them? Show a message box when receiving a signal - + シグナル受信中にメッセージボックスを表示する Log time stamps - + タイムスタンプを表示 Operate by instruction - + 命令で操作 This switches the debugger to instruction-wise operation mode. In this mode, stepping operates on single instructions and the source location view also shows the disassembled instructions. - + このオプションでデバッガを命令操作モードに切り替えます。この操作モードにすると、ソース位置ビューと逆アセンブルビューにおけるステップの操作は1命令毎の操作になります。 Dereference pointers automatically - + 自動的にポインタを逆参照する This switches the Locals&Watchers view to automatically derefence pointers. This saves a level in the tree view, but also loses data for the now-missing intermediate level. - + このオプションでローカル変数&監視式ビューで自動的にポインタを逆参照するかどうかを切り替えます。これはツリービューの階層にも作用し、表示されていない中間レベルのデータが失われたりします。 @@ -3824,65 +3470,62 @@ Would you like to overwrite them? 別ウィンドウで式 "%1" を監視 - + + Use code model + コード モデルを使用する + + + Use tooltips in main editor when debugging - + デバッグ中のメイン エディタでツールチップを使用する Checking this will enable tooltips for variable values during debugging. Since this can slow down debugging and does not provide reliable information as it does not use scope information, it is switched off by default. - デバッグ中に変数の値をツールチップで表示します。<br>しかしデバッグ実行の速度が低下する上に、スコープを無視した不確かな情報しか表示しない為<br>デフォルトではチェックOFFとなっています。 + デバッグ中に変数の値をツールチップで表示します。しかしデバッグ実行の速度が低下する上に、スコープを無視した不確かな情報しか表示しない為、デフォルトではチェックOFFとなっています。 Use tooltips in locals view when debugging - + デバッグ中のローカル変数と監視式 ビューでツールチップを使用する Checking this will enable tooltips in the locals view during debugging. - + これをチェックするとデバッグ中、ローカル変数 ビューでツールチップが有効になります。 Use tooltips in breakpoints view when debugging - + デバッグ中のブレークポイント ビューでツールチップを使用する Checking this will enable tooltips in the breakpoints view during debugging. - + これをチェックするとデバッグ中、ブレークポイント ビューでツールチップが有効になります。 Show address data in breakpoints view when debugging - + デバッグ中にブレークポイント ビューにアドレス データを表示する Checking this will show a column with address information in the breakpoint view during debugging. - + これをチェックすると、デバッグ中にブレークポイント ビューでアドレス情報が表示されるようになります。 Show address data in stack view when debugging - + デバッグ中にスタック ビューにアドレス データを表示する Checking this will show a column with address information in the stack view during debugging. - + これをチェックすると、デバッグ中にスタック ビューでアドレス情報が表示されるようになります。 - Expand item - 項目を展開 - - - Collapse item - 項目を折りたたむ - - - + Use debugging helper デバッグヘルパを使用する @@ -3892,7 +3535,7 @@ Would you like to overwrite them? デバッグヘルパをデバッグする - + Recheck debugging helper availability デバッグヘルパが利用可能か再チェックする @@ -3901,39 +3544,11 @@ Would you like to overwrite them? Synchronize breakpoints ブレークポイントの同期 - - Hexadecimal - 16進数 - - - Decimal - 10進数 - - - Octal - 8進数 - - - Binary - 2進数 - - - Raw - バイナリ - - - Natural - 自動 - Automatically quit debugger デバッガを自動的に終了 - - Use tooltips when debugging - デバッグ中にツールチップを使う - List source files @@ -3963,7 +3578,7 @@ Would you like to overwrite them? Debugger::Internal::DebuggingHelperOptionPage - + Debugging Helper デバッグヘルパ @@ -3973,189 +3588,115 @@ Would you like to overwrite them? デバッグヘルパの位置を選択 - + Ctrl+Shift+F11 Ctrl+Shift+F11 - - Debugger::Internal::DisassemblerHandler - - Address - アドレス - - - Symbol - シンボル - - - Mnemonic - ニーモニック - - - - Debugger::Internal::DisassemblerWindow - - Disassembler - 逆アセンブラ - - - Adjust column widths to contents - 内容に合わせて列幅を調整 - - - Always adjust column widths to contents - 常に内容に合わせて列幅を調整 - - - Reload disassembler listing - 逆アセンブルのリストを再読込 - - - Always reload disassembler listing - 常に逆アセンブルのリストを再読込 - - Debugger::Internal::GdbEngine - + The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. - gdb プロセスの開始に失敗しました。gdb コマンド '%1' が見つからないか、コマンドを起動する為のパーミッションがない可能性があります。 + Gdb プロセスの開始に失敗しました。Gdb コマンド '%1' が見つからないか、コマンドを起動する為のパーミッションがない可能性があります。 The Gdb process crashed some time after starting successfully. - gdb プロセスは起動に成功した後、クラッシュしました。 + Gdb プロセスは起動に成功した後、クラッシュしました。 The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. - 直前のwaitFor...() 関数はタイムアウトしました。QProcessの状態に変化がありませんので、再度 waitFor...() を呼び出せます。 + 直前の waitFor...() 関数はタイムアウトしました。QProcessの状態に変化がないので、再度 waitFor...() を呼び出せます。 An error occurred when attempting to write to the Gdb process. For example, the process may not be running, or it may have closed its input channel. - gdb プロセスへの要求送信時にエラーが発生しました。プロセスが既に終了しているか、入力チャネルが閉じられてしまっている可能性があります。 + Gdb プロセスへの要求送信時にエラーが発生しました。プロセスが既に終了しているか、入力チャネルが閉じられてしまっている可能性があります。 An error occurred when attempting to read from the Gdb process. For example, the process may not be running. - gdb プロセスからの応答待機中にエラーが発生しました。プロセスが既に終了している可能性があります。 + Gdb プロセスからの応答待機中にエラーが発生しました。プロセスが既に終了している可能性があります。 - An unknown error in the Gdb process occurred. This is the default return value of error(). - gdb プロセス起動時に不明なエラーが発生しました。これは、error()のデフォルトの戻り値です。 - - - - Error - エラー - - - Debugger Error - デバッガエラー - - - + Stopping temporarily. 一時停止中です。 - - Continuing after temporary stop. - 一時停止後の継続中です。 - - - Core file loaded. - コアファイルを読み込みました。 - - - + Jumped. Stopped. ジャンプして停止しました。 - - Run to Function finished. Stopped. - 指定された関数まで実行し、停止しました。 - - - + Loading %1... %1 を読み込んでいます... - + An unknown error in the Gdb process occurred. - + Gdb プロセス内で不明なエラーが発生しました。 - + Running... - 実行しています... + 実行しています... - + Stop requested... - 停止させようとしています... + 停止させようとしています... - - + + + Executable failed - + 実行失敗 - + Process failed to start. - + プロセスの開始に失敗しました。 - + + Executable failed: %1 - + 実行失敗: %1 - - Function reached. Stopped. - - - - + Program exited with exit code %1. - + プログラムは終了コード %1 で終了しました。 Program exited after receiving signal %1. - + シグナル %1 を受けてプログラムが終了しました。 Program exited normally. - + プログラムは正常に終了しました。 - + Stopped at breakpoint. ブレークポイントで停止。 - + <p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name : </td><td>%1</td></tr><tr><td>Signal meaning : </td><td>%2</td></tr></table> - + <p>プログラムは、オペレーティング システムからのシグナルを受信した為、停止しました。<p><table><tr><td>シグナル名 : </td><td>%1</td></tr><tr><td>シグナルの意味 : </td><td>%2</td></tr></table> - - - <Unknown> - - - - + Signal received - + シグナルを受信しました @@ -4163,7 +3704,7 @@ Would you like to overwrite them? 停止: "%1" - + The debugger you are using identifies itself as: 使用中のデバッガ: @@ -4172,158 +3713,187 @@ Would you like to overwrite them? This version is not officially supported by Qt Creator. Debugging will most likely not work well. Using gdb 6.7 or later is strongly recommended. - このバージョンのgdbはQt Creatorで公式にサポートされていません。 + このバージョンの Gdb はQt Creatorで公式にサポートされていません。 デバッグ実行は、ほとんど正しく動作しない可能性があります。 -gdb 6.7以降をお使いになる事を強く推奨します。 +Gdb 6.7以降をお使いになる事を強く推奨します。 - - Starting executable failed - + + Continuing after temporary stop... + 一時停止後の継続中です... - - Starting executable failed: - - 実行ファイルの開始に失敗しました: - - - - + Running requested... - 実行しようとしています... + 実行しようとしています... - + Step requested... - + ステップ実行しようとしています... Step by instruction requested... - + 命令毎にステップ実行しようとしています... Finish function requested... - + 終了しようとしています... Step next requested... - + 続けてステップ実行しようとしています... - + Step next instruction requested... - + 続けて命令毎にステップ実行しようとしています... Run to line %1 requested... - + %1 行目まで実行しようとしています... - + Run to function %1 requested... - + 関数: %1 まで実行しようとしています... + + + + <unknown> + address + End address of loaded module + <不明> + + + + Jumping out of bogus frame... + 偽フレームから抜け出します... - + Dumper version %1, %n custom dumpers found. - - + + ダンパ バージョン %1、%n 個のカスタムダンパが見つかりました。 - + + The debugging helper library was not found at %1. + デバッグヘルパライブラリが %1 に見つかりませんでした。 + + + Disassembler failed: %1 - + 逆アセンブル失敗: %1 - - Adapter start failed - + + Unable to start gdb '%1': %2 + '%1' にある Gdb を開始できません: %2 + + + + Gdb I/O Error + Gdb I/O エラー - Inferior start preparation failed - + Unexpected Gdb Exit + 予期しない Gdb の終了 - - Inferior prepared for startup. - + + The gdb process exited unexpectedly (%1). + Gdb プロセスは予期せず終了しました (%1)。 - + + crashed + クラッシュ + + + + code %1 + 終了コード %1 + + + + Adapter start failed + アダプタの開始が失敗しました + + + Setting breakpoints... - + ブレークポイントの設定... - + Starting inferior... - + プログラムを開始しています... - + + <Unknown> + name + <不明> + + + + <Unknown> + meaning + <不明> + + + + Execution Error + 実行エラー + + + + Cannot continue debugged process: + + デバッグ プロセスを継続できません: + + + + Inferior start failed - + プログラムを開始できませんでした - + Inferior shutdown failed - + プログラムを終了できませんでした - + Adapter crashed - + アダプタがクラッシュしました - - Adapter shutdown failed - - - - The upload process failed to start. Either the invoked script '%1' is missing, or you may have insufficient permissions to invoke the program. - アップロードに失敗しました。実行するスクリプト '%1' が存在しないか、実行する権限がないため、プロセスが開始できません。 - - - The upload process crashed some time after starting successfully. - アップロードの開始後にプロセスがクラッシュしました。 - - - An error occurred when attempting to write to the upload process. For example, the process may not be running, or it may have closed its input channel. - アップロードプロセスへの書き込み時にエラーが発生しました。プロセスが動作していないか、入力チャネルが閉じられている可能性があります。 - - - An error occurred when attempting to read from the upload process. For example, the process may not be running. - アップロードプロセスからの読み込み時にエラーが発生しました。アップロードプロセスが動作していない可能性があります。 - - - An unknown error in the upload process occurred. This is the default return value of error(). - アップロードプロセスで不明なエラーが発生しました。error()がデフォルト値で呼び出されている場合などに生じるエラーです。 - - - + Library %1 loaded. ライブラリ '%1' を読み込みました。 - + Library %1 unloaded. ライブラリ '%1' を解放しました。 - + Thread group %1 created. スレッドグループ %1 を作成しました。 - + Thread %1 created. スレッド %1 を作成しました。 @@ -4343,57 +3913,23 @@ gdb 6.7以降をお使いになる事を強く推奨します。 スレッド %1 を選択しました。 - + Reading %1... %1 を読み込み中... - Program exited with exit code %1 - プログラムは終了コード %1 で終了しました - - - Program exited after receiving signal %1 - シグナル %1 を受けてプログラムが終了しました。 - - - Program exited normally - プログラムは正常に終了しました。 - - - + Processing queued commands. キューイングされたコマンドを処理しています。 - - - - + + Stopped. 停止しました。 - Debugger Startup Failure - デバッガの起動に失敗 - - - Cannot set up communication with child process: %1 - 子プロセスと通信できません: %1 - - - Starting Debugger: - デバッガを起動中: - - - Cannot start debugger: %1 - デバッガの起動に失敗: %1 - - - Gdb Running... - Gdb 実行中... - - - + Cannot find debugger initialization script デバッガ初期化スクリプトが見つかりません @@ -4403,71 +3939,25 @@ gdb 6.7以降をお使いになる事を強く推奨します。 デバッガに設定されたスクリプトファイル '%1' にアクセスできません。もしスクリプトファイルが不要でしたら、スクリプトファイルの設定を消去してみてください。そうすればこの警告が出るのを回避できます。 - Attached to running process. Stopped. - 実行中のプロセスにアタッチしました。停止中です。 - - - Connecting to remote server failed: - リモートサーバへの接続に失敗しました。 - - - Debugger exited. - デバッガを終了しました。 - - - <could not retreive module information> - <モジュール情報を取得できません> - - - + Unable to run '%1': %2 '%1' を実行できません: %2 - - <unknown> - End address of loaded module - <不明> - - - + Retrieving data for stack view... スタック ビュー用のデータを受信しています... - - '%1' contains no identifier - '%1' に識別子が見つかりません - - - String literal %1 - 文字列リテラル %1 - - - Cowardly refusing to evaluate expression '%1' with potential side effects - 副作用の可能性があるため、式 '%1' の評価を行いません - - - - <not in scope> - Variable - <スコープ範囲外> - - + Retrieving data for watch view (%n requests pending)... 監視ビュー用のデータを受信しています (%n 件の要求が保留中です)... - - %n custom dumpers found. - - %n 個のカスタムダンパが見つかりました。 - - - + <0 items> <項目なし> @@ -4480,58 +3970,27 @@ gdb 6.7以降をお使いになる事を強く推奨します。 - - The dumper library was not found at %1. - - - - - Dumper injection loading triggered (%1)... - ダンパ (%1) をインジェクションで読み込んでいます... - - - - Dumper loading (%1) failed: %2 - ダンパ ('%1') の読込に失敗しました: %2 - - - - Loading dumpers via debugger call (%1)... - ダンパ (%1) をデバッグ呼び出しで読み込んでいます... - - - + Finished retrieving data. データの受信が完了しました。 - - Cannot evaluate expression: %1 - 式が評価できません: %1 - Debugging helpers not found. デバッグヘルパが見つかりません。 - + Custom dumper setup: %1 カスタム ダンパー 設定: %1 - - %1 <shadowed %2> - Variable %1 is the variable name, %2 is a simple count - %1 <%2 個の隠された変数> - - - + <shadowed> - Type of local variable or parameter shadowed by another <隠された変数> - + <n/a> <N/A> @@ -4546,35 +4005,18 @@ gdb 6.7以降をお使いになる事を強く推奨します。 About variable's value <不明> - - - Unknown error: - 未知のエラー: - - - %1 is a typedef. - %1 は typedef です。 - - - Retrieving data for tooltip... - ツールチップ用のデータを受信しています... - - - The dumper library '%1' does not exist. - ダンパライブラリ '%1' は存在しません。 - Debugger::Internal::GdbOptionsPage Gdb - gdb + Gdb Choose Gdb Location - gdb のパスを選択してください + Gdb のパスを選択してください @@ -4690,14 +4132,10 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Debugger::Internal::OutputCollector - - Cannot create temporary file: %2 - 一時ファイルを作成できません: %2 - Cannot create temporary file: %1 - 一時ファイルを作成できません: %1 + 一時ファイルを作成できません: %1 @@ -4720,11 +4158,7 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Value (base %1) - - - - Value - + 値 (%1進表示) @@ -4737,32 +4171,32 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Open memory editor - + メモリ エディタを開く Open memory editor at %1 - + アドレス位置 %1 でメモリ エディタを開く Hexadecimal - 16進数 + 16進数 Decimal - 10進数 + 10進数 Octal - 8進数 + 8進数 Binary - 2進数 + 2進数 @@ -4779,17 +4213,13 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Reload register listing レジスタのリストを再読込 - - Always reload register listing - 常にレジスタのリストを再読込 - Debugger::Internal::ScriptEngine Running requested... - 実行しようとしています... + 実行しようとしています... @@ -4815,26 +4245,15 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Debugger::Internal::SourceFilesModel - - Internal name - 内部名 - - - Full name - 完全名 - - - - SourceFilesModel Internal name - 内部名 + 内部名 Full name - 完全名 + 完全名 @@ -4863,17 +4282,17 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Debugger::Internal::StackHandler - + ... ... <More> - <さらに> + <さらに表示> - + Address: アドレス: @@ -4900,16 +4319,16 @@ gdb 6.7以降をお使いになる事を強く推奨します。 From: - + From: To: - + To: - + Level 階層 @@ -4939,22 +4358,22 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Function - 関数 + 関数 File - ファイル + ファイル Line - 行番号 + 行番号 Address - アドレス + アドレス @@ -4964,12 +4383,12 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Thread: %1 at %2 (0x%3) - + スレッド: %1 は %2 (0x%3) で停止中 Thread: %1 at %2, %3:%4 (0x%5) - + スレッド: %1 は %3:%4 行目の %2 (0x%5) で停止中 @@ -4985,29 +4404,29 @@ gdb 6.7以降をお使いになる事を強く推奨します。 スタック - + Copy contents to clipboard 内容をクリップボードにコピー Open memory editor - + メモリ エディタを開く Open memory editor at %1 - + アドレス位置 %1 でメモリ エディタを開く Open disassembler - + 逆アセンブラを開く Open disassembler at %1 - + アドレス位置 %1 で逆アセンブラを開く @@ -5023,7 +4442,7 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Debugger::Internal::StartExternalDialog - + Select Executable 実行ファイルを選択 @@ -5046,26 +4465,15 @@ gdb 6.7以降をお使いになる事を強く推奨します。 実行ファイルを選択 - - Debugger::Internal::TcfEngine - - %1. - %1. - - - Stopped. - 停止しました。 - - Debugger::Internal::ThreadsWindow - + Thread スレッド - + Adjust column widths to contents 内容に合わせて列幅を調整 @@ -5078,15 +4486,21 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Debugger::Internal::WatchData - + + <not in scope> <スコープ範囲外> + + + %1 <shadowed %2> + %1 <%2 個の隠された変数> + Debugger::Internal::WatchHandler - + Expression @@ -5108,24 +4522,20 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Internal ID - + 内部ID Generation - + 世代 - + <Edit> - <編集> + <編集> - iname - 内部名 - - - + Root ルート @@ -5145,11 +4555,7 @@ gdb 6.7以降をお使いになる事を強く推奨します。 監視式 - Name - 名前 - - - + Value @@ -5158,55 +4564,43 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Type - - <No Locals> - <ローカル変数なし> - - - <No Tooltip> - <ツールチップなし> - - - <No Watchers> - <監視式なし> - Debugger::Internal::WatchModel - + decimal - + 10進数 hexadecimal - + 16進数 binary - + 2進数 octal - + 8進数 - + Name - 名前 + 名前 Value - + Type - + @@ -5219,40 +4613,45 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Change format for type '%1' - + '%1' 型のフォーマットを変更 Change format for expression '%1' - + 式 '%1' のフォーマットを変更 Change format for type - + 型のフォーマットを変更 Change format for expression - + 式のフォーマットを変更 Select widget to watch - + 監視対象のウィジェットを選択 - + Open memory editor... - + メモリ エディタを開く... Open memory editor at %1 - + アドレス位置 %1 でメモリ エディタを開く - + + Refresh code model snapshot + コードモデルスナップショットを更新 + + + Adjust column widths to contents 内容に合わせて列幅を調整 @@ -5262,14 +4661,10 @@ gdb 6.7以降をお使いになる事を強く推奨します。 常に内容に合わせて列幅を調整 - + Insert new watch item 新しい監視式を挿入 - - <Edit> - <編集> - DebuggerPane @@ -5289,7 +4684,7 @@ gdb 6.7以降をお使いになる事を強く推奨します。 This will enable nice display of Qt and Standard Library objects in the Locals&Watchers view - デバッグヘルパはローカル変数と監視式での Qt や STL の変数の値の表示を改善します。 + デバッグヘルパを使用すると、ローカル変数と監視式 ビュー内で Qt や STL オブジェクトが分かりやすく表示されます @@ -5321,6 +4716,16 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Debugging helper デバッグヘルパ + + + Makes use of Qt Creator's code model to find out if a variable has already been assigned a value at the point the debugger interrupts. + このオプションをチェックすると、変数がデバッガ割り込み時に値が代入されているかどうかを調査する為に Qt Creator のコードモデルが使用されるようになります。 + + + + Use code model + コード モデルを使用する + DependenciesModel @@ -5340,25 +4745,17 @@ gdb 6.7以降をお使いになる事を強く推奨します。 %1 has no dependencies. - + %1 が依存しているプロジェクトはありません。 %1 depends on %2. - + %1 は %2 に依存しています。 %1 depends on: %2. - - - - Project Dependencies - プロジェクトの依存関係 - - - Project Dependencies: - プロジェクトの依存関係: + %1 の依存先: %2. @@ -5381,23 +4778,12 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Designer - デザイナ + デザイナ Class Generation - - - - - Designer::Internal::EditorWidget - - Action editor - アクション エディタ - - - Signals and slots editor - シグナル/スロット エディタ + クラス 生成 @@ -5411,7 +4797,7 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Designer::Internal::FormClassWizardPage - + %1 - Error %1 - エラー @@ -5425,30 +4811,6 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Class クラス - - More - さらに - - - Embedding of the UI class - UIクラスの埋め込み方法 - - - Aggregation as a pointer member - 個々のメンバとして集合体 - - - Aggregation - 集合体 - - - Multiple Inheritance - 複合継承 - - - Support for changing languages at runtime - 実行時の言語変更をサポートする - Configure... @@ -5485,54 +4847,34 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Designer::Internal::FormEditorW - - Designer widgetbox - デザイナ ウィジェット ボックス - - - Object inspector - オブジェクト インスペクタ - - - Property editor - プロパティ エディタ - - - Signals and slots editor - シグナル/スロット エディタ - - - Action editor - アクション エディタ - Widget Box - + ウィジェット ボックス Object Inspector - + オブジェクト インスペクタ Property Editor - + プロパティ エディタ Signals & Slots Editor - + シグナル/スロット エディタ Action Editor - + アクション エディタ @@ -5612,22 +4954,22 @@ gdb 6.7以降をお使いになる事を強く推奨します。 Views - + ビュー Signals && Slots Editor - + シグナル/スロット エディタ Locked - 固定する + 固定する Reset to Default Layout - + デフォルト レイアウトに戻す @@ -5668,13 +5010,6 @@ gdb 6.7以降をお使いになる事を強く推奨します。 %1 - エラー - - Designer::Internal::FormWindowEditor - - untitled - 無題 - - Designer::Internal::FormWindowFile @@ -5725,13 +5060,6 @@ Rebuilding the project might help. メソッド定義を追加できません。 - - Designer::Internal::SettingsPage - - Designer - デザイナ - - DocSettingsPage @@ -5750,40 +5078,6 @@ Rebuilding the project might help. 削除 - - DuiEditor::Internal::DuiEditorPlugin - - Creates a Qt QML file. - Qt QML ファイルを作成します。 - - - Qt QML File - Qt QML ファイル - - - Qt - Qt - - - - DuiEditor::Internal::ScriptEditor - - <Select Symbol> - <シンボルを選択> - - - Rename... - 名前を変更... - - - New id: - 新しい ID: - - - Rename id '%1'... - ID '%1' の名前を変更... - - EmbeddedPropertiesPage @@ -6046,35 +5340,27 @@ Reason: %3 FakeVim::Internal::FakeVimHandler - %1,%2 - %1,%2 - - - %1 - %1 - - - + Not implemented in FakeVim FakeVim では実装していません - + E20: Mark '%1' not set E20: マーク '%1' はセットされていません - + %1%2% - + %1%2% %1All - + %1All - + File '%1' exists (add ! to override) ファイル '%1' は既に存在します ( ! を付け加えれば上書き) @@ -6120,11 +5406,7 @@ Reason: %3 Pattern not found: - - - - E492: Not an editor command: - E492: エディタのコマンドではありません: + パターンが見つかりません: @@ -6137,16 +5419,12 @@ Reason: %3 先頭まで到達したため、末尾から検索しました - E486: Pattern not found: - E486: パターンが見つかりません: - - - + Already at oldest change これ以上、元に戻せません - + Already at newest change これ以上、やり直せません @@ -6175,19 +5453,19 @@ Reason: %3 Saving succeeded - + 保存に成功しました %n files not saved - - + + %n 個のファイルは保存されていません Not an editor command: %1 - + エディタのコマンドではありません: %1 @@ -6245,7 +5523,7 @@ Reason: %3 Tabulator size: - タブの幅 + タブの幅: @@ -6372,11 +5650,7 @@ Reason: %3 Find... - - - - Find Dialog - 検索ダイアログ + 検索... @@ -6472,7 +5746,7 @@ Reason: %3 ... - ... + ... @@ -6483,7 +5757,7 @@ Reason: %3 検索結果 - + No matches found! 見つかりませんでした! @@ -6495,17 +5769,17 @@ Reason: %3 Replace with: - 置換文字列: + 置換文字列: - Replace all occurances - + Replace all occurrences + すべての出現箇所を置換します Replace - + 置換 @@ -6528,7 +5802,7 @@ Reason: %3 This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up. - ここは空にしておくか、gdb 起動後、直接実行される gdb コマンドを含むファイルへのパスを指定して下さいされます。 + ここは空にしておくか、Gdb 起動後、直接実行される Gdb コマンドを含むファイルへのパスを指定して下さい。 @@ -6568,7 +5842,7 @@ Reason: %3 This is either a full absolute path leading to the gdb binary you intend to use or the name of a gdb binary that will be searched in your PATH. - ここには使用したいgdbのフルパスか、PATHから検索されるgdbの実行ファイル名を指定します。 + ここには使用したい Gdb のフルパスか、PATHから検索される Gdb の実行ファイル名を指定します。 @@ -6602,17 +5876,17 @@ Reason: %3 Create - + 作成 New configuration - 新しい構成 + 新しい構成 New Configuration Name: - 新しい構成名: + 新しい構成名: @@ -6625,11 +5899,7 @@ Reason: %3 Tool Chain: - - - - Toolchain: - ツールチェイン: + ツール チェイン: @@ -6640,14 +5910,14 @@ Reason: %3 GenericProjectManager::Internal::GenericMakeStepConfigWidget - + Override %1: %1 の代わりに使用するコマンド: <b>Make:</b> %1 %2 - + <b>Make:</b> %1 %2 @@ -6660,7 +5930,7 @@ Reason: %3 Creates a generic project, supporting any build system. - 任意のビルドシステムをサポートする標準のプロジェクトを作成する。 + 任意のビルドシステムをサポートする標準のプロジェクトを作成します。 @@ -6805,7 +6075,7 @@ Reason: %3 Git::Internal::GitClient - + Note that the git plugin for QtCreator is not able to interact with the server so far. Thus, manual ssh-identification etc. will not work. Qt Creator 用 git プラグイン はサーバとうまく連携できない点にご注意下さい。手動でのssh認証もうまく動きません。 @@ -6819,19 +6089,13 @@ Reason: %3 Unable to parse the file output. ファイル出力がパースできません。 - - %1 Executing: %2 %3 - - <timestamp> Executing: <executable> <arguments> - %1 実行中: %2 %3 - - Executing: %1 %2 Executing: <executable> <arguments> - + 実行中: %1 %2 + @@ -6839,7 +6103,7 @@ Reason: %3 データ待機中... - + Git Diff Git 差分表示 @@ -6864,7 +6128,7 @@ Reason: %3 Git Blame %1 - + Unable to add %n file(s) to %1: %2 %n 個のファイルを %1 に追加できません: %2 @@ -6900,7 +6164,7 @@ Reason: %3 %1 で show コマンドを実行できません: %2 - + Changes 変更あり @@ -6948,31 +6212,20 @@ Reason: %3 ファイルは変更されていますが、元にもどしますか? - + The file is not modified. ファイルは変更されていません。 - + There are no modified files. 変更されたファイルはありません。 - - Git::Internal::GitOutputWindow - - Git Output - Git 出力 - - - Git - Git - - Git::Internal::GitPlugin - + &Git Git(&G) @@ -6987,12 +6240,12 @@ Reason: %3 "%1" の差分表示 - + Alt+G,Alt+D Alt+G,Alt+D - + File Status ファイル ステータス @@ -7002,12 +6255,12 @@ Reason: %3 "%1" 関連のステータス - + Alt+G,Alt+S Alt+G,Alt+S - + Log File ログファイルを表示 @@ -7017,12 +6270,12 @@ Reason: %3 "%1" のログ表示 - + Alt+G,Alt+L Alt+G,Alt+L - + Blame 編集者を表示 @@ -7032,12 +6285,12 @@ Reason: %3 "%1" の編集者を表示 - + Alt+G,Alt+B Alt+G,Alt+B - + Undo Changes 変更内容を元に戻す @@ -7047,12 +6300,12 @@ Reason: %3 "%1" の変更を元に戻す - + Alt+G,Alt+U Alt+G,Alt+U - + Stage File for Commit ファイルをコミット予定に追加 @@ -7062,12 +6315,12 @@ Reason: %3 "%1" をコミット予定に追加 - + Alt+G,Alt+A Alt+G,Alt+A - + Unstage File from Commit ファイルをコミット予定から削除 @@ -7076,14 +6329,6 @@ Reason: %3 Unstage "%1" from Commit "%1" をコミット予定から削除 - - Revert... - 元に戻す... - - - Revert "%1"... - "%1" を元に戻す... - Diff Current Project @@ -7095,7 +6340,7 @@ Reason: %3 プロジェクト "%1" の差分表示 - + Project Status プロジェクトの状態 @@ -7115,12 +6360,12 @@ Reason: %3 プロジェクト "%1" のログ - + Alt+G,Alt+K Alt+G,Alt+K - + Undo Project Changes プロジェクトの変更を元に戻す @@ -7155,12 +6400,12 @@ Reason: %3 コミット... - + Alt+G,Alt+C Alt+G,Alt+C - + Push Push @@ -7200,28 +6445,24 @@ Reason: %3 やり直す(&R) - + Could not find working directory 作業ディレクトリが見つかりませんでした Revert - 元に戻す + 元に戻す Would you like to revert all pending changes to the project? - + すべての保留中の変更を元に戻しますか? Another submit is currently being executed. - - - - Another submit is currently beeing executed. - 別のサブミットが実行中です。 + 別のサブミットが実行中です。 @@ -7371,12 +6612,12 @@ Reason: %3 Prompt to submit - コミット前に確認する + コミット前に確認する Omit date from annotation output - + blame の出力結果から日付を除外する @@ -7430,7 +6671,7 @@ Reason: %3 Hello World! Beautiful day today, isn't it? - こんにちは世界! 今日はいい天気ですね。 + こんにちは世界! 今日はいい天気ですね? @@ -7597,12 +6838,12 @@ Reason: %3 Previous Page - + 前のページ Next Page - + 次のページ @@ -7627,35 +6868,40 @@ Reason: %3 Increase Font Size - フォントを大きく + フォントを大きく Ctrl++ - Ctrl++ + Ctrl++ Decrease Font Size - フォントを小さく + フォントを小さく Ctrl+- - Ctrl+- + Ctrl+- Reset Font Size - + フォントの大きさをリセット Ctrl+0 - + Ctrl+0 - + + Go to Help Mode + ヘルプ モードに移行 + + + Unfiltered @@ -7905,7 +7151,7 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp Open Executable File - 実行可能ファイルを開く + 実行ファイルを開く @@ -8036,21 +7282,6 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp 変更 %1: %2 - - Perforce::Internal::PerforceOutputWindow - - Perforce Output - Perforce 出力 - - - Diff - 差分表示 - - - Perforce - Perforce - - Perforce::Internal::PerforcePlugin @@ -8069,12 +7300,12 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp "%1" を編集 - + Alt+P,Alt+E Alt+P,Alt+E - + Edit File ファイルを編集 @@ -8089,12 +7320,12 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp "%1" を追加 - + Alt+P,Alt+A Alt+P,Alt+A - + Add File ファイルを追加 @@ -8124,12 +7355,12 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp "%1" を元に戻す - + Alt+P,Alt+R Alt+P,Alt+R - + Revert File ファイルを元に戻す @@ -8155,12 +7386,12 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp プロジェクト "%1" の差分表示 - + Alt+P,Alt+D Alt+P,Alt+D - + Diff Opened Files 開いているファイルの差分表示 @@ -8170,12 +7401,12 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp Opened - + Alt+P,Alt+O Alt+P,Alt+O - + Submit Project プロジェクトのサブミット @@ -8192,12 +7423,12 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp Update Current Project/Session - + 現在のプロジェクト/セッションをアップデート Update Project "%1" - + プロジェクト "%1" をアップデート @@ -8222,29 +7453,29 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp - + Filelog Current File - 現在のファイルログ + 現在のファイルのファイルログ - + Filelog "%1" "%1" のファイルログ - + Alt+P,Alt+F Alt+P,Alt+F - + Filelog... ファイルログ... Update All - + すべてアップデート @@ -8277,7 +7508,7 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp ファイルは変更されていますが、元にもどしますか? - + Another submit is currently executed. 別のサブミットが実行中です。 @@ -8315,12 +7546,7 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp Executing: %1 - - - - %1 Executing: %2 - - %1 実行中: %2 + 実行中: %1 @@ -8371,7 +7597,7 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp Cannot open temporary file. - + 一時ファイルを開けません。 @@ -8382,7 +7608,7 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp p4 submit failed (exit code %1). - + p4 サブミットが失敗しました(終了コード %1)。 @@ -8473,14 +7699,10 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp Test テスト - - TextLabel - TextLabel - Prompt to submit - コミット前に確認する + コミット前に確認する @@ -8621,16 +7843,7 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp Plugin is not valid (does not derive from IPlugin) - - - - -Library base name: %1 - ライブラリ名: %1 - - - Plugin is not valid (doesn't derive from IPlugin) - 無効なプラグインです (IPlugin から派生していません) + 無効なプラグインです (IPlugin から派生していません) @@ -8759,7 +7972,7 @@ Library base name: %1 <UNSET> - + <未定義> @@ -8775,12 +7988,12 @@ Library base name: %1 <VARIABLE> - + <変数> <VALUE> - + <値> @@ -8788,37 +8001,37 @@ Library base name: %1 &Edit - 編集(&E) + 編集(&E) &Add - + 追加(&A) &Reset - + リセット(&R) &Unset - + 解除(&U) Unset <b>%1</b> - + <b>%1</b> を未定義にしました Set <b>%1</b> to <b>%2</b> - + <b>%1</b> の設定値を <b>%2</b> としました Summary: No changes to Environment - + サマリー: 環境変数は変更されていません @@ -8842,124 +8055,53 @@ Library base name: %1 ファイル パターン(&P): - - ProjectExplorer::Internal::ApplicationLauncher - - Failed to start program. Path or permissions wrong? - プログラムを開始できませんでした。パスかパーミッションに誤りはありませんか? - - - The program has unexpectedly finished. - プログラムが突然終了しました。 - - - Some error has occurred while running the program. - プログラムを実行中にいくつかエラーが発生しました。 - - - - ProjectExplorer::Internal::ApplicationRunConfigurationRunner - - Run - 実行 - - - - ProjectExplorer::Internal::ApplicationRunControl - - Starting %1... - %1 を起動中... - - - %1 exited with code %2 - %1 はコード %2 で終了しました - - ProjectExplorer::Internal::BuildSettingsPanel - + Build Settings ビルド設定 - - ProjectExplorer::Internal::BuildSettingsPropertiesPage - - Configurations - 構成 - - - + - + - - - - - - - - ProjectExplorer::Internal::BuildSettingsWidget - Create &New - 新規作成(&N) - - - + &Clone Selected 選択済みの構成を複製(&C) - - %1 - %2 - %1 - %2 - - - General - 概要 - Build Steps ビルド ステップ - Set as Active - アクティブにする - - - Clone - 複製 - - - Delete - 削除 - - - New configuration - 新しい構成 - - - + Edit Build Configuration: - + 編集するビルド構成: Add - 追加 + 追加 Remove - 削除 + 削除 - + Clean Steps - + クリーン ステップ - + + <a href="#">Make %1 active.</a> + <a href="#">%1 をアクティブにします。</a> + + + New Configuration Name: 新しい構成名: @@ -8971,50 +8113,30 @@ Library base name: %1 ProjectExplorer::Internal::BuildStepsPage - - 1 - 1 - - - + - + - - - - - - - - - ^ - ^ - - - v - v - No Build Steps - + ビルド ステップなし Add clean step - + クリーン ステップを追加 Add build step - + ビルド ステップを追加 Remove clean step - + クリーン ステップを削除 Remove build step - + ビルド ステップを削除 @@ -9024,7 +8146,7 @@ Library base name: %1 Clean Steps - + クリーン ステップ @@ -9043,10 +8165,6 @@ Library base name: %1 Cancel Build && Close ビルドを中止して閉じる - - Don't Close - 閉じない - A project is currently being built. @@ -9060,7 +8178,7 @@ Library base name: %1 Do not Close - + 閉じない @@ -9099,7 +8217,7 @@ Library base name: %1 Executable: - 実行可能ファイル: + 実行ファイル: @@ -9119,37 +8237,37 @@ Library base name: %1 Run Environment - + 実行時の環境変数 Base environment for this runconfiguration: - + 実行構成の元となる環境: Clean Environment - + 環境変数なし System Environment - + システム環境変数 Build Environment - ビルド時の環境変数 + ビルド時の環境変数 No Executable specified. - + 実行ファイルが指定されていません。 Running executable: <b>%1</b> %2 - + 実行ファイル: <b>%1</b> %2 @@ -9225,7 +8343,7 @@ Library base name: %1 Switch to session - + セッションの切替 @@ -9258,7 +8376,7 @@ Library base name: %1 Re-run this run-configuration - この実行構成で最実行 + この実行構成で再実行 @@ -9306,7 +8424,7 @@ Library base name: %1 Custom Process Step item in combobox - 独自プロセス ステップ + 独自プロセス ステップ @@ -9314,20 +8432,16 @@ Library base name: %1 <b>%1</b> %2 %3 %4 - + <b>%1</b> %2 %3 %4 (disabled) - + (使用不可) ProjectExplorer::Internal::ProcessStepWidget - - Enable custom process step - 独自 プロセス ステップを有効にする - Name: @@ -9351,7 +8465,7 @@ Library base name: %1 Enable Custom Process Step - + 独自 プロセス ステップを有効にする @@ -9364,11 +8478,7 @@ Library base name: %1 Projects - プロジェクト - - - Projectexplorer - プロジェクト エクスプローラー + プロジェクト @@ -9427,32 +8537,16 @@ Library base name: %1 ProjectExplorer::Internal::ProjectWindow - - Project Explorer - プロジェクト エクスプローラー - - - Projects - プロジェクト - - - Startup - スタートアップ - - - Path - パス - - + Active Build and Run Configurations - + アクティブなビルド構成および実行構成 - + No project loaded. - + プロジェクトが読み込まれていません。 @@ -9468,21 +8562,6 @@ Library base name: %1 追加されるファイル: - - ProjectExplorer::Internal::ProjetExplorerSettingsPageUi - - Build and Run - ビルドして実行 - - - Save all files before Build - ビルド前にすべてのファイルを保存する - - - Always build Project before Running - 実行前に必ずプロジェクトをビルドする - - ProjectExplorer::Internal::RemoveFileDialog @@ -9519,20 +8598,21 @@ Library base name: %1 Add - 追加 + 追加 Remove - 削除 + 削除 + + + + <a href="#">Make %1 active.</a> + <a href="#">%1 をアクティブにします。</a> ProjectExplorer::Internal::RunSettingsPropertiesPage - - Run &configuration: - 実行時の条件(&C): - + @@ -9543,14 +8623,10 @@ Library base name: %1 - - - - Settings - 設定 - Edit run configuration: - + 実行構成の編集: @@ -9591,18 +8667,18 @@ Library base name: %1 Show Warnings - + 警告を表示 ProjectExplorer::Internal::WinGuiProcess - + The process could not be started! プロセスを開始できません! - + Cannot retrieve debugging output! デバッグ出力を受け取ることができません! @@ -9646,7 +8722,7 @@ Library base name: %1 ProjectExplorer::ProjectExplorerPlugin - + Projects プロジェクト @@ -9703,7 +8779,7 @@ Library base name: %1 Show in Explorer... - + エクスプローラで表示... @@ -9713,7 +8789,7 @@ Library base name: %1 Show containing folder... - + 上位のフォルダを表示... @@ -9831,10 +8907,6 @@ Library base name: %1 Set Run Configuration 実行構成の設定 - - Go to Task Window - タスク ウィンドウに切り替える - Cancel Build @@ -9883,7 +8955,7 @@ Library base name: %1 新しいプロジェクト - + New File Title of dialog 新しいファイル @@ -9934,22 +9006,22 @@ to version control (%2)? Launching Windows Explorer failed - + Windows Explorer の起動に失敗 Could not find explorer.exe in path to launch Windows Explorer. - + Windows Explorer を起動する為の explorer.exe にパスが通っていません。 - + Launching a file explorer failed - + ファイル エクスプローラーの起動に失敗しました Could not find xdg-open to launch the native file explorer. - + ネイティブなファイルエクスプローラを起動する為の xdg-open が見つかりません。 @@ -9972,6 +9044,49 @@ to version control (%2)? ファイル %1 を削除できません。 + + ProjectExplorer::Internal::BuildConfigDialog + + + Change build configuration && continue + ビルド構成の変更 && 継続 + + + + Cancel + キャンセル + + + + Continue anyway + 無視して続行 + + + + Run configuration does not match build configuration + 実行構成がビルド構成と一致していません + + + + The active build configuration builds a target that cannot be used by the active run configuration. + アクティブなビルド構成は、アクティブな実行構成で使用することはできませんのでターゲットをビルドします。 + + + + This can happen if the active build configuration uses the wrong Qt version and/or tool chain for the active run configuration (for example, running in Symbian emulator requires building with the WINSCW tool chain). + これはアクティブな実行構成の為のアクティブなビルド構成が誤った Qt バージョン/ツールチェインを使っている場合に発生します(例えば、Symbian エミュレータの実行構成がビルド実行構成で WINSCW ツールチェインを要求している場合)。 + + + + Choose build configuration: + ビルド構成を選択: + + + + No valid build configuration found. + 有効なビルド構成が見つかりません。 + + ProjectExplorer::SessionManager @@ -9982,7 +9097,7 @@ to version control (%2)? Could not restore session %1 - セッション %1 を保存できません + セッション %1 を復元できません @@ -10011,61 +9126,6 @@ to version control (%2)? セッション ('%1') - - QLibrary - - Could not mmap '%1': %2 - '%1' を mmap できません: %2 - - - Plugin verification data mismatch in '%1' - プラグイン '%1' の検証データが合いません - - - Could not unmap '%1': %2 - '%1' を unmap できません: %2 - - - The shared library was not found. - 共有ライブラリが見つかりません。 - - - The file '%1' is not a valid Qt plugin. - ファイル '%1' は有効な Qt プラグインではありません。 - - - The plugin '%1' uses incompatible Qt library. (%2.%3.%4) [%5] - プラグイン '%1' は互換性のない Qt ライブラリ(%2.%3.%4 [%5])を使用しています。 - - - The plugin '%1' uses incompatible Qt library. Expected build key "%2", got "%3" - プラグイン '%1' は互換性のない Qt ライブラリを使用しています。要求されるビルドキー "%2" に対してライブラリのビルドキーは "%3" です。 - - - The plugin '%1' uses incompatible Qt library. (Cannot mix debug and release libraries.) - プラグイン '%1' は互換性のない Qt ライブラリを使用しています。デバッグライブラリとリリースライブラリを混在して使用することはできません。 - - - The plugin was not loaded. - プラグインは読み込めませんでした。 - - - Unknown error - 未知のエラー - - - Cannot load library %1: %2 - ライブラリ %1 を読み込めません: %2 - - - Cannot unload library %1: %2 - ライブラリ %1 を解放できません: %2 - - - Cannot resolve symbol "%1" in %2: %3 - %2 内でシンボル "%1" を解決できません: %3 - - QMakeStep @@ -10193,7 +9253,7 @@ to version control (%2)? Creates a QML application. - QML アプリケーションの作成を作成する。 + QML アプリケーションを作成します。 @@ -10201,7 +9261,7 @@ to version control (%2)? プロジェクト - + The project %1 could not be opened. プロジェクト %1 を開けませんでした。 @@ -10209,7 +9269,7 @@ to version control (%2)? QmlProjectManager::Internal::QmlNewProjectWizardDialog - + New QML Project 新しい QML プロジェクト @@ -10229,7 +9289,7 @@ to version control (%2)? Creates a QML project from an existing directory of QML files. - 既存のディレクトリに存在する QML ファイルから QML プロジェクトを作成する。 + 既存のディレクトリに存在する QML ファイルから QML プロジェクトを作成します。 @@ -10269,25 +9329,21 @@ to version control (%2)? QmlProjectManager::Internal::QmlRunConfiguration - + QML Viewer QML ビューア - - Could not find the qmlviewer executable, please specify one. - qmlviewer の実行ファイルが見つかりません。実行ファイルを指定してください。 - - + <Current File> <現在のファイル> - + QML Viewer arguments: - + QML ビューアの引数: @@ -10616,40 +9672,33 @@ to version control (%2)? Qt4ProjectManager::Internal::ProjectLoadWizard - - Import existing settings - 既存の設定をインポート + + + Import existing build settings + 既存のビルド設定をインポート Qt Creator has found an already existing build in the source directory.<br><br><b>Qt Version:</b> %1<br><b>Build configuration:</b> %2<br><b>Additional QMake Arguments:</b>%3 - + Qt Creator はソース ディレクトリに既に存在するビルド構成を見つけました。<br><br><b>Qt バージョン:</b> %1<br><b>ビルド構成:</b> %2<br><b>QMake への追加引数:</b> %3 <b>Note:</b> Importing the settings will automatically add the Qt Version identified by <br><b>%1</b> to the list of Qt versions. - - - - Qt Creator has found an already existing build in the source directory.<br><br><b>Qt Version:</b> %1<br><b>Build configuration:</b> %2<br> - Qt Creator はソース ディレクトリに既に存在するビルド構成を見つけました。<br><br><b>Qt バージョン:</b> %1<br><b>ビルド構成:</b> %2<br> + <b>注意:</b> 設定をインポートすることによって<b>%1</br>として特定される Qt を<br>自動的に Qt のバージョンリストに追加します。 Import existing build settings. 既存のビルド設定をインポートする。 - - <b>Note:</b> Importing the settings will automatically add the Qt Version from:<br><b>%1</b> to the list of Qt versions. - <b>注意:</b> 設定をインポートすることによって<b>%1</br>の Qt のバージョンを<br>自動的に Qt のバージョンリストに追加します。 - Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget Clear system environment - + システム環境変数を非表示にする @@ -10662,27 +9711,27 @@ to version control (%2)? Headers - + ヘッダー Sources - + ソース Forms - + フォーム Resources - + リソース Other files - + その他のファイル @@ -10741,10 +9790,6 @@ to version control (%2)? Qt Version: Qt バージョン: - - Manage Qt Versions - Qt のバージョンを管理する - This Qt-Version is invalid. @@ -10771,39 +9816,35 @@ to version control (%2)? シャドウビルド ディレクトリ - - + + Default Qt Version (%1) - + デフォルト Qt バージョン (%1) - + No Qt Version set - + Qt バージョンが設定されていません using Qt version: <b>%1</b><br>with tool chain <b>%2</b><br>building in <b>%3</b> - + 使用する Qt バージョン: <br>%1</b><br>ツールチェイン: <b>%2</b><br>ビルドディレクトリ: <b>%3</b> General 概要 - - Default Qt Version - デフォルト Qt バージョン - Manage - + 管理 Tool Chain: - + ツール チェイン: @@ -10819,72 +9860,72 @@ to version control (%2)? Qt4ProjectManager::Internal::Qt4RunConfiguration - + Qt4RunConfiguration Qt4 実行構成 Could not parse %1. The Qt4 run configuration %2 can not be started. - %1 をパースできません。Qt4 の実行時の条件設定 %2 を開始できません。 + %1 をパースできません。Qt4 の実行構成 %2 を開始できません。 Qt4ProjectManager::Internal::Qt4RunConfigurationWidget - + + Running executable: <b>%1</b> %2 (in terminal) + 動作中の実行ファイル: <b>%1</br> %2 (端末内) + + + + Running executable: <b>%1</b> %2 + 実行ファイル: <b>%1</b> %2 + + + Arguments: - 引数: + 引数: Run in Terminal - + 端末内で実行 Run Environment - + 実行時の環境変数 Base environment for this runconfiguration: - + 実行構成の元となる環境: Clean Environment - + 環境変数なし System Environment - + システム環境変数 Build Environment - ビルド時の環境変数 + ビルド時の環境変数 - - Running executable: <b>%1</b> %2 %3 - - - - - (in terminal) - - - - + Name: 名前: Executable: - 実行可能ファイル: + 実行ファイル: @@ -10901,14 +9942,6 @@ to version control (%2)? Working Directory: 作業ディレクトリ: - - &Arguments: - 引数(&A): - - - Run in &Terminal - 端末内で実行(&T) - Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug) @@ -10918,80 +9951,70 @@ to version control (%2)? Qt4ProjectManager::Internal::QtOptionsPageWidget - + <specify a name> <名前を入力> <specify a qmake location> - + <qmake のパスを入力> Select QMake Executable - + QMake の実行ファイルを選択 Select the MinGW Directory - + MinGW のディレクトリを選択 - Select "x86build" Directory from Carbide Install - + Select Carbide Install Directory + Carbide をインストールしたディレクトリ - + + Select S60 SDK Root + S60 の SDK のルートディレクトリを選択 + + + + Select the CSL Arm Toolchain (GCCE) Directory + CSL Arm ツールチェイン (GCCE) のディレクトリを選択 + + + Auto-detected - + 自動検出 Manual - + マニュアル - + Building helpers - + ヘルパビルド中 <html><body><table><tr><td>File:</td><td><pre>%1</pre></td></tr><tr><td>Last&nbsp;modified:</td><td>%2</td></tr><tr><td>Size:</td><td>%3 Bytes</td></tr></table></body></html> Tooltip showing the debugging helper library file. - + <html><body><table><tr><td>ファイル:</td><td><pre>%1</pre></td></tr><tr><td>最終更新日時:</td><td>%2</td></tr><tr><td>サイズ:</td><td>%3 バイト</td></tr></table></body></html> - + The Qt Version identified by %1 is not installed. Run make install - + %1 で特定される Qt のバージョンはインストールされていません。 make install を実行してください %1 does not specify a valid Qt installation - - - - <specify a path> - <パスを入力> - - - Select QTDIR - QTDIR を選択してください - - - Select the Qt Directory - Qt のディレクトリの選択 - - - The Qt Version %1 is not installed. Run make install - Qt バージョン %1 はインストールされていません。make install を実行してください - - - %1 is not a valid Qt directory - %1 は有効な Qt ディレクトリではありません + %1 は有効なインストール済みの Qt ではありません @@ -11011,10 +10034,6 @@ to version control (%2)? Name 名前 - - Path - パス - Debugging Helper @@ -11035,10 +10054,6 @@ to version control (%2)? Version Name: バージョン名: - - Path: - パス: - MinGW Directory: @@ -11085,17 +10100,27 @@ p, li { white-space: pre-wrap; } QMake Location - + QMake のパス QMake Location: - + QMake のパス: - MWC Directory: - + S60 SDK: + S60 SDK: + + + + Carbide Directory: + Carbide ディレクトリ: + + + + CSL/GCCE Directory: + CSL/GCCE ディレクトリ: @@ -11207,12 +10232,12 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::MakeStep - + <font color="#ff0000">Could not find make command: %1 in the build environment</font> <font color="#ff0000">ビルド環境に make コマンド:%1 が見つかりませんでした</font> - + <font color="#0000ff"><b>No Makefile found, assuming project is clean.</b></font> <font color="#0000ff"><b>Makefile が見つかりませんでした、プロジェクトがクリーン状態の可能性があります。</b></font> @@ -11220,19 +10245,19 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::MakeStepConfigWidget - + Override %1: %1 の代わりに使用するコマンド: - + <b>Make Step:</b> %1 not found in the environment. - + <b>Make ステップ:</b> %1 が環境変数に見つかりません。 <b>Make:</b> %1 %2 in %3 - + <b>Make:</b> %1 %2 (%3 ディレクトリ) @@ -11240,7 +10265,7 @@ p, li { white-space: pre-wrap; } Make - + @@ -11272,19 +10297,19 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::QMakeStepConfigWidget - + <b>QMake:</b> No Qt version set. QMake can not be run. - + <b>QMake:</b> Qt バージョンが設定されていません。 QMake を実行できません。 <b>QMake:</b> %1 %2 - + <b>QMake:</b> %1 %2 No valid Qt version set. - + 有効な Qt バージョンが設定されていません。 @@ -11292,7 +10317,7 @@ p, li { white-space: pre-wrap; } QMake - + @@ -11332,7 +10357,7 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::QtVersionManager - + <not found> <見つかりません> @@ -11340,11 +10365,55 @@ p, li { white-space: pre-wrap; } Qt in PATH - + PATH に含まれる Qt - Auto-detected Qt - 自動検出した Qt + + Name: + 名前: + + + + Source: + ソース: + + + + mkspec: + mkspec: + + + + qmake: + qmake: + + + + Default: + デフォルト: + + + + Compiler: + コンパイラ: + + + + Version: + バージョン: + + + + Debugging helper: + デバッグヘルパ: + + + + QApplication + + + The Qt Version has no toolchain. + Qt バージョンのツールチェインが見つかりません。 @@ -11412,12 +10481,12 @@ p, li { white-space: pre-wrap; } QtScriptTools Module - + QtScriptTools モジュール Additional Qt Script components - + Qt Script の追加機能 @@ -11472,12 +10541,12 @@ p, li { white-space: pre-wrap; } QtMultimedia Module - + QtMultimedia モジュール Classes for low-level multimedia functionality - + ローレベルなマルチメディア機能のためのクラス @@ -11510,20 +10579,12 @@ p, li { white-space: pre-wrap; } D-Bus を使ったIPCを実現する為のクラスです - - QtScriptEditor::Internal::QtScriptEditorActionHandler - - - Qt Script Error - Qt スクリプト エラー - - QtScriptEditor::Internal::QtScriptEditorPlugin - + Creates a Qt Script file. - Qt スクリプトファイルを作成する。 + Qt スクリプトファイルを作成します。 @@ -11535,21 +10596,11 @@ p, li { white-space: pre-wrap; } Qt Qt - - - Run - 実行 - - - - Ctrl+R - Ctrl+R - QtScriptEditor::Internal::ScriptEditor - + <Select Symbol> <シンボルを選択> @@ -11704,7 +10755,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Open documents - ドキュメントを開く + 開いているドキュメント @@ -11751,44 +10802,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t <入力してください> - - Locator::Internal::SettingsDialog - - - Configure Filters - フィルタ設定 - - - - Add - 追加 - - - - Remove - 削除 - - - - min - - - - - Refresh now! - 今すぐ更新! - - - - Edit... - 編集... - - - - Refresh Interval: - 更新間隔: - - Locator::Internal::SettingsPage @@ -11855,7 +10868,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Case &Sensitive - 大文字/小文字を区別(&C) + 大文字/小文字を区別(&S) @@ -11938,7 +10951,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Creates a Qt Resource file (.qrc). - Qt リソースファイル(.qrc)を作成する。 + Qt リソースファイル(.qrc)を作成します。 @@ -12228,7 +11241,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Executable: - 実行可能ファイル: + 実行ファイル: @@ -12304,7 +11317,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Prompt to submit - コミット前に確認する + コミット前に確認する @@ -12315,17 +11328,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Subversion コマンド - - Subversion::Internal::SubversionOutputWindow - - Subversion Output - Subversion 出力 - - - Subversion - Subversion - - Subversion::Internal::SubversionPlugin @@ -12344,12 +11346,12 @@ To do this, you type this shortcut and a space in the Locator entry field, and t "%1" を追加 - + Alt+S,Alt+A Alt+S,Alt+A - + Delete 削除 @@ -12384,12 +11386,12 @@ To do this, you type this shortcut and a space in the Locator entry field, and t "%1" の差分表示 - + Alt+S,Alt+D Alt+S,Alt+D - + Commit All Files すべてのファイルをコミット @@ -12404,14 +11406,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t "%1" をコミット - + Alt+S,Alt+C Alt+S,Alt+C - + Filelog Current File - 現在のファイルログ + 現在のファイルのファイルログ @@ -12484,23 +11486,20 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ファイルは変更されていますが、元にもどしますか? - + The commit list spans several repositories (%1). Please commit them one by one. - + 複数のリポジトリ (%1) に対するコミットリストです。1つずつコミットしてください。 - + Executing: %1 %2 Executing: <executable> <arguments> - + 実行中: %1 %2 + - The commit list spans several respositories (%1). Please commit them one by one. - 複数のリポジトリ (%1) に対するコミットリストです。1つずつコミットしてください。 - - - + Another commit is currently being executed. 別のコミットが実行中です。 @@ -12515,7 +11514,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t 一時ファイルを作成できません: %1 - + Describe 説明 @@ -12527,14 +11526,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t No subversion executable specified! - subvesion 実行可能ファイルが指定されていません! - - - %1 Executing: %2 %3 - - <timestamp> Executing: <executable> <arguments> - %1 実行中: %2 %3 - + subvesion 実行ファイルが指定されていません! @@ -12569,7 +11561,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::BaseFileFind - + %1 found 一致 %1 件 @@ -12600,7 +11592,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::BaseTextEditor - + Print Document ドキュメントを印刷 @@ -12618,7 +11610,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::BaseTextEditorEditable - + Line: %1, Col: %2 行番号: %1, 列位置: %2 @@ -12796,66 +11788,60 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mark text changes - + テキストの変更をマークする TextEditor::FontSettingsPage - + Font & Colors フォント & 色 Copy Color Scheme - + カラースキームをコピー Color Scheme name: - + カラースキーム名: %1 (copy) - + %1 (コピー) Delete Color Scheme - + カラースキームを削除 Are you sure you want to delete this color scheme permanently? - + このカラースキームを完全に削除しますか? Delete - 削除 + 削除 Color Scheme Changed - + 変更されたカラースキーム The color scheme "%1" was modified, do you want to save the changes? - + このカラースキーム "%1" は変更されています。変更内容をセーブしますか? Discard - - - - - This is only an example. - - This is only an example. + 廃棄 @@ -12935,34 +11921,6 @@ The following encodings are likely to fit: Size: サイズ: - - Bold - 太字 - - - Italic - 斜体 - - - Background: - 背景色: - - - Foreground: - 前景色: - - - Erase background - 背景色をクリア - - - x - x - - - Preview: - プレビュー: - Font @@ -12981,12 +11939,12 @@ The following encodings are likely to fit: Copy... - + コピー... Delete - 削除 + 削除 @@ -13007,7 +11965,7 @@ The following encodings are likely to fit: Creates a text file (.txt). - テキストファイル(.txt)を作成する。 + テキストファイル(.txt)を作成します。 @@ -13037,12 +11995,12 @@ The following encodings are likely to fit: Triggers a quick fix in this scope - + スコープ内で簡易修正する場合のトリガー Alt+Return - + Alt+Return @@ -13073,17 +12031,27 @@ The following encodings are likely to fit: Ctrl+I - + + Meta + Meta + + + + Ctrl + Ctrl + + + + %1+E, R + %1+E, R + + + &Visualize Whitespace 空白の可視化(&V) - - Ctrl+E, Ctrl+V - Ctrl+E, Ctrl+V - - - + Clean Whitespace 空白の除去 @@ -13093,12 +12061,7 @@ The following encodings are likely to fit: 文字の折り返しを有効にする(&W) - - Ctrl+E, Ctrl+W - Ctrl+E, Ctrl+W - - - + (Un)Comment &Selection 選択範囲のコメント/非コメント化(&S) @@ -13118,17 +12081,22 @@ The following encodings are likely to fit: Shift+Del - + &Rewrap Paragraph - + 段落の折り返しを再構築(&R) - - Ctrl+E, R - + + %1+E, %2+V + %1+E, %2+V - + + %1+E, %2+W + %1+E, %2+W + + + Cut &Line 一行切り取り(&L) @@ -13200,7 +12168,7 @@ The following encodings are likely to fit: Goto Block Start With Selection - 選択範囲内のブロックの開始位置に移動 + ブロックの開始位置に移動し、選択状態にする @@ -13210,7 +12178,7 @@ The following encodings are likely to fit: Goto Block End With Selection - 選択範囲内のブロックの終了位置に移動 + ブロックの終了位置に移動し、選択状態にする @@ -13232,10 +12200,6 @@ The following encodings are likely to fit: Select Block Down 選択したブロックを下へ - - Ctrl+Shift+U - Ctrl+Shift+U - Move Line Up @@ -13278,7 +12242,7 @@ The following encodings are likely to fit: - <line number> + <line number> <行番号> @@ -13332,17 +12296,17 @@ The following encodings are likely to fit: Occurrences - + ローカル変数 Unused Occurrence - + 未使用のローカル変数 Renaming Occurrence - + 改名中のローカル変数 @@ -13397,7 +12361,7 @@ The following encodings are likely to fit: Visual Whitespace - + 空白の可視化 @@ -13548,7 +12512,7 @@ The following encodings are likely to fit: Prompt to submit - コミット前に確認する + コミット前に確認する @@ -13583,10 +12547,6 @@ The following encodings are likely to fit: Common 共通 - - Prompt to submit - コミット前に確認する - Wrap submit message at: @@ -13628,7 +12588,7 @@ name <email> alias <email> VCSManager - + Version Control バージョン管理 @@ -13640,25 +12600,6 @@ Note: This might remove the local file. 注意: ローカルにあるファイルも一緒に削除されます。 - - View - - Paste - 貼り付け - - - <Username> - <ユーザ名> - - - <Description> - <説明> - - - <Comment> - <コメント> - - ViewDialog @@ -13686,20 +12627,6 @@ Note: This might remove the local file. <Description> <説明> - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">&lt;Comment&gt;</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">&lt;コメント&gt;</p></body></html> - - - Parts to send to codepaster - コード ペースターに送る部品 - Patch 1 @@ -13713,7 +12640,7 @@ p, li { white-space: pre-wrap; } Protocol: - + プロトコル: @@ -13722,12 +12649,16 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt;">&lt;Comment&gt;</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt;">&lt;コメント&gt;</span></p></body></html> Parts to send to server - + サーバに送る部品 @@ -13763,17 +12694,17 @@ p, li { white-space: pre-wrap; } Dialog - + ダイアログ TextLabel - TextLabel + TextLabel CheckBox - + チェックボックス @@ -13781,12 +12712,12 @@ p, li { white-space: pre-wrap; } Form - + フォーム Server Prefix: - + サーバ プレフィクス: @@ -13796,7 +12727,12 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://pastebin.com"><span style=" text-decoration: underline; color:#0000ff;">pastebin.com</span></a><span style=" font-size:8pt;"> allows to send posts to custom subdomains (eg. qtcreator.pastebin.com). Fill in the desired prefix.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Note that the plugin will use this for posting as well as fetching.</span></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://pastebin.com"><span style=" text-decoration: underline; color:#0000ff;">pastebin.com</span></a><span style=" font-size:8pt;"> は独自サブドメインに送信する事を許可しています(例:qtcreator.pastebin.com)。希望するプレフィクスを入力してください。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">メモ:プラグインは送信時だけでなく受信時にもこのプレフィクスを使用します。</span></p></body></html> @@ -13804,37 +12740,37 @@ p, li { white-space: pre-wrap; } Prompt to submit - コミット前に確認する + コミット前に確認する When checked, all files touched by a commit will be displayed when clicking on a revision number in the annotation view (retrieved via commit id). Otherwise, only the respective file will be displayed. - + このオプションをチェックしている場合、アノテーション ビュー内でリビジョン番号をクリックした時に、該当するコミットで変更されたファイル(コミットIDで紐づいているもの)をすべて表示します。チェックしていない場合は、それぞれのファイルだけを表示します。 Describe all files matching commit id: - + コミットIDで紐づいているすべてのファイルを表示する CVS Command: - + CVS コマンド: CVS Root: - + CVS ルート: Diff Options: - + 差分表示オプション: CVS - + CVS @@ -13842,47 +12778,42 @@ p, li { white-space: pre-wrap; } Form - + フォーム Gdb - gdb + Gdb Symbian ARM gdb location: - - - - - Cygwin location: - + Symbian ARM 用 Gdb へのパス: Communication - + 通信 Serial Port - + シリアルポート Bluetooth - + Bluetooth Port: - + ポート: Device: - + デバイス: @@ -13890,42 +12821,42 @@ p, li { white-space: pre-wrap; } Form - + フォーム Embedding of the UI Class - + UIクラスの埋め込み方法 Aggregation as a pointer member - 個々のメンバとして集合体 + ポインタ型のメンバとして集約 Aggregation - 集合体 + 集約 Multiple Inheritance - 複合継承 + 多重継承 Code Generation - + コード生成 Support for changing languages at runtime - 実行時の言語変更をサポートする + 実行時の言語変更をサポートする Use Qt module name in #include-directive - + #include ディレクティブで Qt モジュール名を使う @@ -13933,27 +12864,27 @@ p, li { white-space: pre-wrap; } ... - ... + ... <New Host> - + <新しいホスト> Host - + ホスト Projects - プロジェクト + プロジェクト Description - + 説明 @@ -13961,32 +12892,32 @@ p, li { white-space: pre-wrap; } WizardPage - + ウィザードページ Filter: - フィルタ: + フィルタ: ... - ... + ... Keep updating - + 更新し続ける Project - + プロジェクト Description - + 説明 @@ -13994,62 +12925,62 @@ p, li { white-space: pre-wrap; } WizardPage - + ウィザードページ Filter: - フィルタ: + フィルタ: ... - ... + ... Name - 名前 + 名前 Owner - + オーナー Description - + 説明 Choose a repository of the project '%1'. - + プロジェクト '%1' のリポジトリを選択してください。 Mainline Repositories - + Mainline リポジトリ Clones - + Clones Baseline Repositories - + Baseline リポジトリ Shared Project Repositories - + 共有プロジェクト リポジトリ Personal Repositories - + パーソナル リポジトリ @@ -14057,107 +12988,107 @@ p, li { white-space: pre-wrap; } Form - + フォーム Font - フォント + フォント Family: - フォント名: + フォント名: Style: - + スタイル: Size: - サイズ: + サイズ: Startup - スタートアップ + スタートアップ On context help: - + コンテキスト ヘルプを開く時: Show side-by-side if possible - + 可能であれば並べて表示 Always show side-by-side - + 常に並べて表示 Always start full help - + 常にフルサイズで表示 On help start: - + ヘルプを開く時: Show my home page - + ホームページを開く Show a blank page - + 空白ページを開く Show my tabs from last session - + 最後のセッションで開いていたタブを開く Home Page: - + ホームページ: Use &Current Page - + 現在のページを使用(&C) Use &Blank Page - + 空白ページを使用(&B) Restore to Default - + デフォルトに戻す Help Bookmarks - + ヘルプ ブックマーク Import... - インポート... + インポート... Export... - エクスポート... + エクスポート... @@ -14165,32 +13096,32 @@ p, li { white-space: pre-wrap; } Build and Run - ビルドして実行 + ビルドして実行 Save all files before Build - ビルド前にすべてのファイルを保存する + ビルド前にすべてのファイルを保存する Always build Project before Running - 実行前に必ずプロジェクトをビルドする + 実行前に必ずプロジェクトをビルドする Show Compiler Output on building - + ビルド中のコンパイラが出力する内容を表示 Use jom instead of nmake - + nmake の代わりに jom を使用する <i>jom</i> is a drop-in replacement for <i>nmake</i> which distributes the compilation process to multiple CPU cores. For more details, see the <a href="http://qt.gitorious.org/qt-labs/jom/">jom Homepage</a>. Disable it if you experience problems with your builds. - + <i>jom</i> は、マルチコアCPU環境下における分散コンパイルの為に <i>nmake</i> の一時的な代替ツールです。詳しい情報は、<a href="http://qt.gitorious.org/qt-labs/jom/">jom Homepage</a> を参照して下さい。お使いの環境で問題が発生した場合は、使用しないようにしてください。 @@ -14198,37 +13129,42 @@ p, li { white-space: pre-wrap; } Form - + フォーム Manage Sessions... - セッション管理... + セッション管理... Create New Project... - 新しいプロジェクトの作成... + 新しいプロジェクトの作成... Open Recent Project - 最近使ったプロジェクトを開く + 最近使ったプロジェクトを開く Resume Session - セッションを復元 + セッションを復元 - + %1 (last session) - %1 (最後のセッション) + %1 (最後のセッション) - + + %1 (current session) + %1 (現在のセッション) + + + New Project... - 新しいプロジェクト... + 新しいプロジェクト... @@ -14236,7 +13172,7 @@ p, li { white-space: pre-wrap; } Form - + フォーム @@ -14244,132 +13180,132 @@ p, li { white-space: pre-wrap; } Form - + フォーム The header file - + ヘッダーファイル &Sources - + ソース(&S) Widget librar&y: - + ウィジェットライブラリ(&Y): Widget project &file: - + ウィジェットプロジェクトファイル(&F): Widget h&eader file: - + ウィジェットヘッダーファイル(&E): The header file has to be specified in source code. - + ソースコード内で指定するヘッダーファイル。 Widge&t source file: - + ウィジェットソースファイル(&T): Widget &base class: - + ウィジェット基底クラス(&B): QWidget - + QWidget Plugin class &name: - + プラグインクラス名(&N): Plugin &header file: - + プラグインヘッダーファイル(&H): Plugin sou&rce file: - + プラグインソースファイル(&R): Icon file: - + アイコンファイル: &Link library - + ライブラリをリンク(&L) Create s&keleton - + スケルトンを作成(&K) Include pro&ject - + プロジェクトをインクルード(&J) &Description - + 説明(&D) G&roup: - + グループ(&R): &Tooltip: - + ツールチップ(&T): W&hat's this: - + これは何(&H): The widget is a &container - + コンテナウィジェット(&C) Property defa&ults - + プロパティのデフォルト(&U) dom&XML: - + dom &XML: Select Icon - + アイコンを選択 Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg) - + アイコンファイル (*.png *.ico *.jpg *.xpm *.tif *.svg) @@ -14377,47 +13313,47 @@ p, li { white-space: pre-wrap; } WizardPage - + ウィザードページ Plugin and Collection Class Information - + プラグインおよびコレクションクラスの情報 Specify the properties of the plugin library and the collection class. - + プラグインライブラリおよびコレクションクラスのプロパティを指定してください。 Collection class: - + コレクションクラス: Collection header file: - + コレクションヘッダーファイル: Collection source file: - + コレクションソースファイル: Plugin name: - + プラグイン名: Resource file: - + リソースファイル: icons.qrc - + icons.qrc @@ -14425,22 +13361,22 @@ p, li { white-space: pre-wrap; } Custom Qt Widget Wizard - + カスタム Qt ウィジェットウィザード Custom Widget List - + カスタムウィジェットリスト Widget &Classes: - + ウィジェットクラス(&C): Specify the list of custom widgets and their properties. - + カスタムウィジェットのリストとプロパティを指定。 @@ -14448,163 +13384,191 @@ p, li { white-space: pre-wrap; } Form - + フォーム Examples not installed - サンプルプログラムがインストールされていません + サンプルプログラムがインストールされていません Open - 開く + 開く - + Tutorials - チュートリアル + チュートリアル Explore Qt Examples - Qt のサンプルプログラムを参照 + Qt のサンプルプログラムを参照 Did You Know? - ご存じですか? + ご存じですか? <b>Qt Creator - A quick tour</b> - <b>Qt Creator - 簡易ガイド</b> + <b>Qt Creator - 簡易ガイド</b> Creating an address book - アドレス帳アプリの作成 + アドレス帳アプリの作成 Understanding widgets - ウィジェットを理解する + ウィジェットを理解する Building with qmake - qmake でビルドする + qmake でビルドする Writing test cases - テストケースを作成する + テストケースを作成します Choose an example... - サンプルプログラムを選ぶ... + サンプルプログラムを選ぶ... - + + Copy Project to writable Location? + プロジェクトを書き込み可能なパスへコピーしますか? + + + + <p>The project you are about to open is located in the write-protected location:</p><blockquote>%1</blockquote><p>Please select a writable location below and click "Copy Project and Open" to open a modifiable copy of the project or click "Keep Project and Open" to open the project in location.</p><p><b>Note:</b> You will not be able to alter or compile your project in the current location.</p> + <p>開こうとしているプロジェクトは書き込み不能なパスにあります:</p><blockquote>%1</blockquote><p>プロジェクトの編集可能なコピーを開くには、書き込み可能なパスを下記に指定して「プロジェクトをコピーして開く」を選択してください。このパスでプロジェクトを開くには「プロジェクトをコピーせずに開く」を選択してください。</p><p><b>注意:</b> このパスでプロジェクトを開いた場合、編集やコンパイルはできません。</p> + + + + &Location: + パス(&L): + + + + &Copy Project and Open + プロジェクトをコピーして開く(&C) + + + + &Keep Project and Open + プロジェクトをコピーせずに開く(&K) + + + + Warning + 警告 + + + + The specified location already exists. Please specify a valid location. + 指定されたパスは既に存在します。有効なパスを入力してください。 + + + Cmd Shortcut key - Cmd + Cmd Alt Shortcut key - Alt + Alt Ctrl Shortcut key - + Ctrl You can switch between Qt Creator's modes using <tt>Ctrl+number</tt>:<ul><li>1 - Welcome</li><li>2 - Edit</li><li>3 - Debug</li><li>4 - Projects</li><li>5 - Help</li><li></li><li>6 - Output</li></ul> - Qt Creator のモードは<tt>Ctrl+数字</tt>キーで変更できます:<ul><li>1 - ようこそ</li><li>2 - 編集</li><li>3 - デバッグ</li><li>4 - プロジェクト</li><li>5 - ヘルプ</li><li></li><li>6 - アウトプット</li></ul> + Qt Creator のモードは<tt>Ctrl+数字</tt>キーで変更できます:<ul><li>1 - ようこそ</li><li>2 - 編集</li><li>3 - デバッグ</li><li>4 - プロジェクト</li><li>5 - ヘルプ</li><li></li><li>6 - アウトプット</li></ul> You can show and hide the side bar using <tt>%1+0<tt>. - %1 gets replaced by Alt (Win/Unix) or Cmd (Mac) - <tt>%1+0</tt>キーでサイドバーの表示/非表示を切り替えられます。 + <tt>%1+0</tt>キーでサイドバーの表示/非表示を切り替えられます。 You can fine tune the <tt>Find</tt> function by selecting &quot;Whole Words&quot; or &quot;Case Sensitive&quot;. Simply click on the icons on the right end of the line edit. - <tt>検索</tt>機能は&quot;単語単位で検索する&quot;や&quot;大文字/小文字を区別する&quot;を選択することで目的に合わせて検索結果を調整できます。検索文字列を入力する欄の右端にあるアイコンをクリックすることで機能を選択できます。 + <tt>検索</tt>機能は&quot;単語単位で検索する&quot;や&quot;大文字/小文字を区別する&quot;を選択することで目的に合わせて検索結果を調整できます。検索文字列を入力する欄の右端にあるアイコンをクリックすることで機能を選択できます。 If you add <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">external libraries</a>, Qt Creator will automatically offer syntax highlighting and code completion. - <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">外部のライブラリ</a>をプロジェクトに追加した場合、Qt Creator は自動的にシンタックスハイライトやコード補完を行います。 + <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">外部のライブラリ</a>をプロジェクトに追加した場合、Qt Creator は自動的にシンタックスハイライトやコード補完を行います。 The code completion is CamelCase-aware. For example, to complete <tt>namespaceUri</tt> you can just type <tt>nU</tt> and hit <tt>Ctrl+Space</tt>. - コード補完はキャメルケースに対応しています。たとえば<tt>namespaceUrl</tt>を補完したい場合、<tt>nU</tt>と入力して<tt>Ctrl+Space</tt>を押してください。 + コード補完はキャメルケースに対応しています。たとえば<tt>namespaceUrl</tt>を補完したい場合、<tt>nU</tt>と入力して<tt>Ctrl+Space</tt>を押してください。 You can force code completion at any time using <tt>Ctrl+Space</tt>. - <tt>Ctrl+Space</tt>を押せば任意のタイミングでコード補完を開始することができます。 + <tt>Ctrl+Space</tt>を押せば任意のタイミングでコード補完を開始することができます。 You can start Qt Creator with a session by calling <tt>qtcreator &lt;sessionname&gt;</tt>. - Qt Creator の起動時にセッション名を渡す(<tt>qtcreator &lt;セッション名&gt;)とそのセッションを開始できます。 + Qt Creator の起動時にセッション名を渡す(<tt>qtcreator &lt;セッション名&gt;)とそのセッションを開始できます。 You can return to edit mode from any other mode at any time by hitting <tt>Escape</tt>. - <tt>エスケープ</tt>キーでいつでもほかのモードから編集モードに戻れます。 + <tt>エスケープ</tt>キーでいつでもほかのモードから編集モードに戻れます。 You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom:<ul><li>1 - Build Issues</li><li>2 - Search Results</li><li>3 - Application Output</li><li>4 - Compile Output</li></ul> - %1 gets replaced by Alt (Win/Unix) or Cmd (Mac) - アウトプット欄は<tt>%1+数字</tt>キーで変更できます。使用する数字はウィンドウの下部のボタンに記述されています:<ul><li>1 - ビルドの問題点</li><li>2 - 検索結果</li><li>3 - アプリケーション出力</li><li>4 - コンパイル出力</li></ul> + アウトプット欄は<tt>%1+数字</tt>キーで変更できます。使用する数字はウィンドウの下部のボタンに記述されています:<ul><li>1 - ビルドの問題点</li><li>2 - 検索結果</li><li>3 - アプリケーション出力</li><li>4 - コンパイル出力</li></ul> You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator bar</a> (<tt>%1+K</tt>). - + メソッドやクラス、ヘルプなどを素早く検索するには<a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">クイックアクセス</a> (<tt>%1+K</tt>)を使用します。 You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">build settings</a>. - <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">ビルド設定</a>を変更して独自のビルドステップを追加できます。 + <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">ビルド設定</a>を変更して独自のビルドステップを追加できます。 Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">dependencies</a> between projects. - セッションではプロジェクト間の<a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">依存関係</a>を定義できます。 + セッションではプロジェクト間の<a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">依存関係</a>を定義できます。 You can set the preferred editor encoding for every project in <tt>Projects -> Editor Settings -> Default Encoding</tt>. - 各プロジェクトの編集時の文字コードは<tt>プロジェクト -> エディタの設定 -> デフォルトの文字コード</tt>で指定できます。 + 各プロジェクトの編集時の文字コードは<tt>プロジェクト -> エディタの設定 -> デフォルトの文字コード</tt>で指定できます。 - You can modify the binary that is being executed when you press the <tt>Run</tt> button: Add a <tt>Custom Executable</tt> by clicking the <tt>+</tt> button in <tt>Projects -> Run Settings -> Run Configuration</tt> and then select the new target in the combo box. - <tt>実行</tt>ボタンを押したときに実行されるファイルは<tt>プロジェクト -> 実行時の設定 -> 実行時の条件</tt>の<tt>+</tt>ボタンで<tt>カスタム実行ファイル</tt>を選択することで追加できます。追加した後に<tt>実行時の条件</tt>のコンボボックスから作成した条件を選択してください。 - - - You can use Qt Creator with a number of <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">revision control systems</a> such as Subversion, Perforce, CVS and Git. - + Qt Creator では Subversion や Perforce、CVS、Git 等のさまざまな<a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">バージョン管理システム</a>を使用できます。 - In the editor, <tt>F2</tt> toggles declaration and definition while <tt>F4</tt> toggles header file and source file. - 編集モードでは<tt>F2</tt>キーで宣言と定義を、<tt>F4</tt>キーでヘッダファイルとソースファイルを切り替えできます。 + In the editor, <tt>F2</tt> follows symbol definition, <tt>Shift+F2</tt> toggles declaration and definition while <tt>F4</tt> toggles header file and source file. + 編集モードでは<tt>F2</tt>キーでシンボルの宣言を表示し、<tt>Shift+F2</tt>で宣言と定義を、<tt>F4</tt>キーでヘッダファイルとソースファイルを切り替えできます。 @@ -14612,32 +13576,32 @@ p, li { white-space: pre-wrap; } Form - + フォーム Installed S60 SDKs: - + インストール済みの S60 の SDK: SDK Location - + SDK のパス Qt Location - + Qt のパス Refresh - 更新 + 更新 - + S60 SDKs - + S60 の SDK @@ -14645,32 +13609,32 @@ p, li { white-space: pre-wrap; } Bold - 太字 + 太字 Italic - 斜体 + 斜体 Background: - 背景色: + 背景色: Foreground: - 前景色: + 前景色: Erase background - 背景色をクリア + 背景色をクリア x - x + x @@ -14678,17 +13642,17 @@ p, li { white-space: pre-wrap; } WizardPage - + ウィザードページ Checkout Directory: - + チェックアウト ディレクトリ: Path: - パス: + パス: @@ -14696,48 +13660,53 @@ p, li { white-space: pre-wrap; } Form - + フォーム - + News From the Qt Labs - Qt Labsからのニュース + Qt Labsからのニュース Qt Websites - Qt の Web サイト + Qt の Web サイト http://labs.trolltech.com/blogs/feed Add localized feed here only if one exists - http://labs.trolltech.com/blogs/feed + http://labs.trolltech.com/blogs/feed - + Qt Home - Qt Home + Qt Home Qt Labs - Qt Labs + Qt Labs Qt Git Hosting - Qt Git ホスティング + Qt Git ホスティング Qt Centre - Qt Centre + Qt Centre - Qt for S60 at Forum Nokia - Forum Nokia の Qt for S60 + Qt Apps + Qt Apps + + + + Qt for Symbian at Forum Nokia + Forum Nokia の Qt for Symbian @@ -14747,7 +13716,7 @@ p, li { white-space: pre-wrap; } #gradientWidget { background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); } - #gradientWidget { + #gradientWidget { background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); } @@ -14758,22 +13727,26 @@ p, li { white-space: pre-wrap; } border-width: 0; } - + #headerFrame { + border-image: url(:/welcome/images/center_frame_header.png) 0; + border-width: 0; +} + Help us make Qt Creator even better - Qt Creator の改善にご協力ください + Qt Creator の改善にご協力ください Feedback - フィードバック + フィードバック - + Welcome - ようこそ + ようこそ @@ -14781,7 +13754,7 @@ p, li { white-space: pre-wrap; } Show Details - + 詳細を表示 @@ -14789,22 +13762,22 @@ p, li { white-space: pre-wrap; } Plain Text Editor - + テキスト エディタ Binary Editor - + バイナリ エディタ C++ Editor - + C++ エディタ .pro File Editor - + .pro ファイル エディタ @@ -14812,34 +13785,53 @@ p, li { white-space: pre-wrap; } Preferences - + 設定 Options - オプション + オプション CodePaster::CodePasterProtocol - + + No Server defined in the CodePaster preferences. + コードペースターの設定にサーバが定義されていません。 + + + + No Server defined in the CodePaster options. + コードペースターの設定にサーバが定義されていません。 + + + No such paste - + 貼り付けるものがありません CodePaster::CodePasterSettingsPage - CodePaster - コード ペースター + コード ペースター + + + + Code Pasting + コード貼り付け Server: - + サーバ: + + + + Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com). + メモ: コードペースター サービスを提供するホスト名を、プロトコルを含まず(例:codepaster.mycompany.com)に指定してください。 @@ -14847,7 +13839,7 @@ p, li { white-space: pre-wrap; } Error during paste - + 貼り付け中にエラー @@ -14855,12 +13847,12 @@ p, li { white-space: pre-wrap; } Pastebin.com - + Pastebin.com - CodePaster - コード ペースター + Code Pasting + コード貼り付け @@ -14868,25 +13860,25 @@ p, li { white-space: pre-wrap; } Paste - 貼り付け + 貼り付け <Username> - <ユーザ名> + <ユーザ名> <Description> - <説明> + <説明> <Comment> - <コメント> + <コメント> @@ -14894,7 +13886,7 @@ p, li { white-space: pre-wrap; } Methods in current Document - + 現在のドキュメント内のメソッド @@ -14908,35 +13900,41 @@ p, li { white-space: pre-wrap; } ** To protect a percent sign, use '%%'. **************************************************************************/ - + /************************************************************************** +** Qt Creator ライセンス ヘッダー テンプレート +** 特殊キーワード: %USER% %DATE% %YEAR% +** 環境変数: %$VARIABLE% +** パーセント記号を使用する場合は '%%' としてください。 +**************************************************************************/ + Edit... - 編集... + 編集... Choose a location for the new license template file - + 新しいライセンス テンプレート ファイルの保存先を指定して下さい Template write error - + テンプレート ファイルの書き込みエラー Cannot write to %1: %2 - + %1 に書き込めませんでした: %2 CppTools::Internal::CppFindReferences - + Searching... - + 検索中... @@ -14944,12 +13942,12 @@ p, li { white-space: pre-wrap; } Checks out a project from a CVS repository. - + CVS リポジトリからプロジェクトをチェックアウトします。 CVS Checkout - + CVS チェックアウト @@ -14957,12 +13955,12 @@ p, li { white-space: pre-wrap; } Specify repository and path. - + リポジトリ名とパスを指定して下さい。 Repository: - リポジトリ: + リポジトリ: @@ -14970,7 +13968,7 @@ p, li { white-space: pre-wrap; } Cannot find repository for '%1' - + '%1' のリポジトリが見つかりません @@ -14978,239 +13976,241 @@ p, li { white-space: pre-wrap; } Parsing of the log output failed - + ログ出力の解析に失敗しました &CVS - + CVS(&C) Add - 追加 + 追加 Add "%1" - "%1" を追加 + "%1" を追加 - + Alt+C,Alt+A - + Alt+C,Alt+A - + Delete - 削除 + 削除 Delete "%1" - "%1" を削除 + "%1" を削除 Revert - 元に戻す + 元に戻す Revert "%1" - "%1" を元に戻す + "%1" を元に戻す Diff Project - プロジェクトの差分表示 + プロジェクトの差分表示 Diff Current File - 現在のファイルの差分表示 + 現在のファイルの差分表示 Diff "%1" - "%1" の差分表示 + "%1" の差分表示 - + Alt+C,Alt+D - + Alt+C,Alt+D - + Commit All Files - すべてのファイルをコミット + すべてのファイルをコミット Commit Current File - 現在のファイルをコミット + 現在のファイルをコミット Commit "%1" - "%1" をコミット + "%1" をコミット - + Alt+C,Alt+C - + Alt+C,Alt+C - + Filelog Current File - 現在のファイルログ + 現在のファイルのファイルログ Filelog "%1" - "%1" のファイルログ + "%1" のファイルログ Annotate Current File - 現在のファイルのアノテーション + 現在のファイルのアノテーション Annotate "%1" - "%1" のアノテーション + "%1" のアノテーション Project Status - プロジェクトの状態 + プロジェクトの状態 Update Project - プロジェクトをアップデート + プロジェクトをアップデート Commit - コミット + コミット Diff Selected Files - 選択済みファイルの差分表示 + 選択済みファイルの差分表示 &Undo - 元に戻す(&U) + 元に戻す(&U) &Redo - やり直す(&R) + やり直す(&R) Closing CVS Editor - + CVS エディタを閉じようとしています Do you want to commit the change? - 変更内容をコミットしますか? + 変更内容をコミットしますか? The commit message check failed. Do you want to commit the change? - コミットメッセージが確認できませんでした。変更をコミットしますか? + コミットメッセージが確認できませんでした。変更をコミットしますか? The files do not differ. - + 差分はありません。 The file '%1' could not be deleted. - + ファイル '%1' は削除できませんでした。 The file has been changed. Do you want to revert it? - ファイルは変更されていますが、元にもどしますか? + ファイルは変更されていますが、元にもどしますか? - + The commit list spans several repositories (%1). Please commit them one by one. - + 複数のリポジトリ (%1) に対するコミットリストです。1つずつコミットしてください。 Another commit is currently being executed. - 別のコミットが実行中です。 + 別のコミットが実行中です。 There are no modified files. - 変更されたファイルはありません。 + 変更されたファイルはありません。 Cannot create temporary file: %1 - 一時ファイルを作成できません: %1 + 一時ファイルを作成できません: %1 - + Project status - + プロジェクトの状態 The initial revision %1 cannot be described. - + 初期リビジョン %1 に説明はありません。 Could not find commits of id '%1' on %2. - + %2 以降で、ID が '%1' のコミットが見つかりませんでした。 Executing: %1 %2 - + 実行中: %1 %2 + Executing in %1: %2 %3 - + 実行中: %1 %2 %3 + No cvs executable specified! - + cvs 実行ファイルが指定されていません! The process terminated with exit code %1. - プロセスは終了コード %1 で終了しました。 + プロセスは終了コード %1 で終了しました。 The process terminated abnormally. - プロセスは異常終了しました。 + プロセスは異常終了しました。 Could not start cvs '%1'. Please check your settings in the preferences. - + cvs '%1' を開始できませんでした。設定を確認してください。 CVS did not respond within timeout limit (%1 ms). - + CVS がタイムアウト制限時間 (%1 ミリ秒) 内に応答を返しませんでした。 @@ -15218,22 +14218,22 @@ p, li { white-space: pre-wrap; } Added - + 追加 Removed - + 削除 Modified - + 変更 CVS Submit - + CVS コミット @@ -15241,7 +14241,7 @@ p, li { white-space: pre-wrap; } CVS Command - + CVS コマンド @@ -15249,25 +14249,25 @@ p, li { white-space: pre-wrap; } <Unknown Type> - + <不明な型> <Unknown Value> - + <不明な値> <Unknown> - + <不明> SymbolGroup - + Out of scope - + スコープ範囲外 @@ -15275,403 +14275,336 @@ p, li { white-space: pre-wrap; } Memory $ - + メモリ $ Debugger::Internal::DebuggerRunControlFactory - + Debug - デバッグ + デバッグ - Debugger::Internal::AttachGdbAdapter + Debugger::Internal::DebuggerRunControl - - Attached to stopped inferior. - - - - - Inferior process could not be stopped: - - - - - - Gdb process could not be stopped: - - + + Debugger + デバッガ Debugger::Internal::CoreGdbAdapter - - Attached to core temporarily. - + + + + Error Loading Symbols + シンボル読み込みでエラー - - No binary found. - + + No executable to load symbols from specified. + 指定されたシンボルを読み込む為の実行ファイルがありません。 - - Symbols found. - - - - - Symbols not found in "%1" failed: -%2 - - - - - Attached to core. - - - - - Attach to core "%1" failed: -%2 - - - - - Gdb process could not be stopped: + + Loading symbols from "%1" failed: - + "%1" からのシンボル読み込みが失敗しました: + + + + + Attached to core temporarily. + 一時的にコアファイルにアタッチしました。 + + + + Unable to determine executable from core file. + コアファイルからの実行ファイル特定ができません。 + + + + Attach to core "%1" failed: + + コアファイル "%1" へのアタッチが失敗しました: + + + + + Symbols found. + シンボルが見つかりました。 + + + + Attached to core. + コアファイルにアタッチしました。 Debugger::Internal::PlainGdbAdapter - + Cannot set up communication with child process: %1 - 子プロセスと通信できません: %1 + 子プロセスと通信できません: %1 - + Starting executable failed: - 実行ファイルの開始に失敗しました: + 実行ファイルの開始に失敗しました: - - - Inferior started. - - - - - Inferior process could not be stopped: - - - - - - Gdb process could not be stopped: - - - Debugger::Internal::RemoteGdbAdapter - The upload process failed to start. Either the invoked script '%1' is missing, or you may have insufficient permissions to invoke the program. - アップロードに失敗しました。実行するスクリプト '%1' が存在しないか、実行する権限がないため、プロセスが開始できません。 + The upload process failed to start. Shell missing? + アップロードプロセスの開始に失敗しました。シェルが失われていませんか? - + The upload process crashed some time after starting successfully. - アップロードの開始後にプロセスがクラッシュしました。 + アップロードの開始後にプロセスがクラッシュしました。 The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. - 直前のwaitFor...() 関数はタイムアウトしました。QProcessの状態に変化がありませんので、再度 waitFor...() を呼び出せます。 + 直前の waitFor...() 関数はタイムアウトしました。QProcessの状態に変化がないので、再度 waitFor...() を呼び出せます。 An error occurred when attempting to write to the upload process. For example, the process may not be running, or it may have closed its input channel. - アップロードプロセスへの書き込み時にエラーが発生しました。プロセスが動作していないか、入力チャネルが閉じられている可能性があります。 + アップロードプロセスへの書き込み時にエラーが発生しました。プロセスが動作していないか、入力チャネルが閉じられている可能性があります。 An error occurred when attempting to read from the upload process. For example, the process may not be running. - アップロードプロセスからの読み込み時にエラーが発生しました。アップロードプロセスが動作していない可能性があります。 + アップロードプロセスからの読み込み時にエラーが発生しました。アップロードプロセスが動作していない可能性があります。 An unknown error in the upload process occurred. This is the default return value of error(). - アップロードプロセスで不明なエラーが発生しました。error()がデフォルト値で呼び出されている場合などに生じるエラーです。 + アップロードプロセスで不明なエラーが発生しました。error()がデフォルト値で呼び出されている場合などに生じるエラーです。 Error - エラー + エラー Adapter too old: does not support asynchronous mode. - + アダプタが古すぎる為、非同期モードをサポートしていません。 - + Starting remote executable failed: - - - - - Attached to stopped inferior. - - - - - Connecting to remote server failed: - - - - - - Inferior process could not be stopped: - - - - - - Gdb process could not be stopped: - - + リモート実行が開始できませんでした: + Debugger::Internal::TrkGdbAdapter - - Connecting to trk server adapter failed: + + Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. + プロセス(PID: 0x%1、スレッドID: %2、コード セグメント: 0x%3、データ セグメント: %4)が開始しました。 + + + + Connecting to TRK server adapter failed: - - - - - Inferior running. - - - - - Connecting to remote server failed: - リモートサーバへの接続に失敗しました。 - - - - Inferior process could not be stopped: - - - - - - Gdb process could not be stopped: - - - - - - Debugger::Internal::TrkOptionsPage - - - S60 / Trk - + TRK サーバ アダプタへの接続に失敗しました: + NameDemanglerPrivate - + Premature end of input - + 入力の途中終了 Invalid encoding - + 不正なエンコード - + Invalid name - + 不正な名前 Invalid nested-name - + 不正にネストされた名前 Invalid template args - + 不正なテンプレート引数 Invalid template-param - + 不正なテンプレート パラメータ Invalid qualifiers: unexpected 'volatile' - + 不正な修飾詞: 予期せぬ 'volatile' Invalid qualifiers: 'const' appears twice - + 不正な修飾詞: 二重になっている 'const' Invalid non-negative number - + 不正な非負数 Invalid template-arg - + 不正なテンプレート引数 Invalid expression - + 不正な式 Invalid primary expression - + 不正な一次式 Invalid expr-primary - + 不正な一次式 - + Invalid type - + 不正な型 Invalid built-in type - + 不正なビルトイン型 Invalid builtin-type - + 不正なビルトイン型 Invalid function type - + 不正な関数 - - + + Invalid unqualified-name - + 不正な非修飾名 - + Invalid operator-name '%s' - + 不正なオペレータ名 '%s' Invalid array-type - + 不正な配列型 - + Invalid pointer-to-member-type - + 不正なポインタ型メンバ - + - + Invalid substitution - + 不正な代入 - + Invalid substitution: element %1 was requested, but there are only %2 - + 不正な代入: %1番目の要素が要求されましたが、%2個しかありません Invalid substitution: There are no elements - + 不正な代入: 要素がありません - + Invalid special-name - + 不正な特殊名 - + Invalid local-name - + 不正なローカル名 Invalid discriminator - + 不正な識別子 Invalid ctor-dtor-name - + 不正なコンストラクタ/デストラクタ名 Invalid call-offset - + 不正な呼び出しオフセット Invalid v-offset - + 不正な仮想呼び出しオフセット Invalid digit - + 不正な数値 At position %1: - + 位置 %1: @@ -15679,7 +14612,7 @@ p, li { white-space: pre-wrap; } untitled - 無題 + 無題 @@ -15687,12 +14620,12 @@ p, li { white-space: pre-wrap; } Clones a project from a git repository. - + git リポジトリからプロジェクトをクローンします。 Git Repository Clone - + Git リポジトリ クローン @@ -15700,12 +14633,12 @@ p, li { white-space: pre-wrap; } Specify repository URL, checkout directory and path. - + リポジトリのURL、チェックアウト先ディレクトリおよびパスを指定して下さい。 Clone URL: - + クローン URL: @@ -15713,17 +14646,17 @@ p, li { white-space: pre-wrap; } Error parsing reply from '%1': %2 - + '%1' からの応答を解析中にエラー: %2 Request failed for '%1': %2 - + '%1' への要求に失敗: %2 Open source projects that use Git. - + Git を使ったオープン ソース プロジェクトです。 @@ -15731,12 +14664,12 @@ p, li { white-space: pre-wrap; } Clones a project from a Gitorious repository. - + Gitorious リポジトリからプロジェクトをクローンします。 Gitorious Repository Clone - + Gitorious リポジトリ クローン @@ -15744,7 +14677,7 @@ p, li { white-space: pre-wrap; } Select a host. - + ホストを選択してください。 @@ -15752,7 +14685,7 @@ p, li { white-space: pre-wrap; } Choose a project from '%1' - + '%1' からプロジェクトを選択 @@ -15760,33 +14693,33 @@ p, li { white-space: pre-wrap; } General settings - 基本設定 + 基本設定 Help - ヘルプ + ヘルプ Open Image - + ヘルプ ブックマークを開く Files (*.xbel) - + ファイル (*.xbel) There was an error while importing bookmarks! - + ブックマークをインポート中にエラーが発生しました! Save File - + ファイルの保存 @@ -15794,30 +14727,30 @@ p, li { white-space: pre-wrap; } The file is not an XBEL version 1.0 file. - + ファイルは XBEL バージョン 1.0 形式のファイルではありません。 Unknown title - + 不明なタイトル ProjectExplorer::ApplicationLauncher - + Failed to start program. Path or permissions wrong? - プログラムを開始できませんでした。パスかパーミッションに誤りはありませんか? + プログラムを開始できませんでした。パスかパーミッションに誤りはありませんか? The program has unexpectedly finished. - プログラムが突然終了しました。 + プログラムが突然終了しました。 Some error has occurred while running the program. - プログラムを実行中にいくつかエラーが発生しました。 + プログラムを実行中にいくつかエラーが発生しました。 @@ -15825,7 +14758,7 @@ p, li { white-space: pre-wrap; } Run - 実行 + 実行 @@ -15833,30 +14766,30 @@ p, li { white-space: pre-wrap; } Starting %1... - %1 を起動中... + %1 を起動中... %1 exited with code %2 - %1 はコード %2 で終了しました + %1 はコード %2 で終了しました ProjectExplorer::DebuggingHelperLibrary - + The target directory %1 could not be created. - + ターゲット ディレクトリ %1 を作成できませんでした。 The existing file %1 could not be removed. - + 既存ファイル %1 を削除できませんでした。 The file %1 could not be copied to %2. - + ファイル %1 を %2 にコピーできませんでした。 @@ -15864,62 +14797,70 @@ p, li { white-space: pre-wrap; } - %1 Reason: %2 - + デバッガヘルパがいづれのディレクトリでもビルドできませんでした: +- %1 + +理由: %2 Building debugging helper library in %1 - + %1 でデバッグヘルパライブラリをビルド中 + Running %1 %2... - + 実行中です %1 %2... + %1 not found in PATH - + %1 が環境変数 PATH に見つかりません + Running %1 ... - + %1 を実行中... + ProjectExplorer::Internal::ProjectWelcomePage - + Develop - 開発 + 開発 ProjectExplorer::Internal::ActiveConfigurationWidget + Active run configuration - + アクティブな実行構成 ProjectExplorer::Internal::ProjectLabel - + Edit Project Settings for Project <b>%1</b> - + <b>%1</b> のプロジェクト設定を編集 No Project loaded - + プロジェクトが読み込まれていません @@ -15927,7 +14868,7 @@ Reason: %2 Select Project - + プロジェクトを選択 @@ -15935,62 +14876,57 @@ Reason: %2 GCC - + GCC Intel C++ Compiler (Linux) - + インテル C++ コンパイラ (Linux) - - MinGW - - - - + Microsoft Visual C++ - + Microsoft Visual C++ Windows CE - + Windows CE WINSCW - + WINSCW GCCE - + GCCE RVCT (ARMV5) - + RVCT (ARMV5) RVCT (ARMV6) - + RVCT (ARMV6) Other - + その他 <Invalid> - + <無効> <Unknown> - + <不明> @@ -15998,40 +14934,40 @@ Reason: %2 <Select Symbol> - <シンボルを選択> + <シンボルを選択> Rename... - 名前を変更... + 名前を変更... New id: - 新しい ID: + 新しい ID: Rename id '%1'... - ID '%1' の名前を変更... + ID '%1' の名前を変更... QmlEditor::Internal::QmlEditorPlugin - + Qt - Qt + Qt Creates a Qt QML file. - Qt QML ファイルを作成します。 + Qt QML ファイルを作成します。 Qt QML File - Qt QML ファイル + Qt QML ファイル @@ -16039,7 +14975,7 @@ Reason: %2 Indexing - 解析中 + 解析中 @@ -16047,7 +14983,7 @@ Reason: %2 <b>QML Make</b> - + <b>QML Make</b> @@ -16056,17 +14992,17 @@ Reason: %2 <New class> - + <新しいクラス> Confirm Delete - + 削除の確認 Delete class %1 from list? - + クラス %1 をリストから削除しますか? @@ -16074,12 +15010,12 @@ Reason: %2 Qt4 Designer Custom Widget - + Qt4 デザイナーカスタムウィジェット Creates a Qt4 Designer Custom Widget or a Custom Widget Collection. - + Qt4 デザイナー用カスタムウィジェットまたはカスタムウィジェットコレクションを作成をします。 @@ -16087,7 +15023,7 @@ Reason: %2 This wizard generates a Qt4 Designer Custom Widget or a Qt4 Designer Custom Widget Collection project. - + このウィザードでは Qt4 デザイナー用カスタムウィジェットもしくは Qt4 デザイナーカスタムウィジェットコレクションプロジェクトを生成します。 @@ -16095,17 +15031,17 @@ Reason: %2 Cannot open icon file %1. - + アイコンファイル %1 を開けません。 Creating multiple widget libraries (%1, %2) in one project (%3) is not supported. - + 一つのプロジェクト(%3)で複数のウィジェットライブラリ(%1, %2)の作成はサポートしていません。 Cannot open %1: %2 - + %1 を開けません: %2 @@ -16113,261 +15049,334 @@ Reason: %2 Getting Started - Qt Creator を始めよう + Qt Creator を始めよう Qt4ProjectManager::Internal::S60DeviceRunConfiguration - - %1 on Device - - - - + QtS60DeviceRunConfiguration - + Qt S60 デバイス実行構成 - + Could not parse %1. The QtS60 Device run configuration %2 can not be started. - + %1 をパースできません。QtS60 デバイスの実行構成 %2 を開始できません。 + + + + %1 on Symbian Device + Symbian デバイス上の %1 Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget - + + Device: + デバイス: + + + Name: - 名前: + 名前: - + Install File: - + インストールするファイル: - + Device on Serial Port: - + シリアルポートのデバイス: - + + Queries the device for information + デバイスの情報を取得 + + + Self-signed certificate - + 自己署名証明書 Choose certificate file (.cer) - + 証明書ファイル(.cer)の選択 Custom certificate: - + カスタム証明書: Choose key file (.key / .pem) - + 秘密鍵ファイルの選択(.key / .pem) Key file: - + 秘密鍵ファイル: + + + + <No Device> + Summary text of S60 device run configuration + <デバイスなし> + + + + (custom certificate) + (カスタム証明書) + + + + (self-signed certificate) + (自己署名証明書) + + + + Summary: Run on '%1' %2 + サマリー: '%1' %2 で実行 + + + + Connecting... + 接続中... Qt4ProjectManager::Internal::S60DeviceRunConfigurationFactory - - %1 on Device - + + %1 on Symbian Device + Symbian デバイス上の %1 Qt4ProjectManager::Internal::S60DeviceRunControlBase - + + There is no device plugged in. + デバイスが接続されていません。 + + + Creating %1.sisx ... - + %1.sisx の作成中... Executable file: %1 - - - - - - %1 %2 - - - - - Could not read template package file '%1' - - - - - Could not write package file '%1' - - - - - - An error occurred while creating the package. - - - - - Package: %1 -Deploying application to '%2'... - - - - - Could not connect to phone on port '%1': %2 -Check if the phone is connected and the TRK application is running. - + 実行ファイル: %1 + Debugger for Symbian Platform + Symbian プラットフォーム用のデバッガ + + + + + %1 %2 + %1 %2 + + + + Could not read template package file '%1' + テンプレートパッケージファイル '%1' を読み込めません + + + + Could not write package file '%1' + パッケージファイル '%1' に書き込めません + + + + + An error occurred while creating the package. + パッケージの作成中にエラーが発生しました。 + + + + Package: %1 +Deploying application to '%2'... + パッケージ: %1 +アプリケーションを '%2' へ転送中... + + + + Could not connect to phone on port '%1': %2 +Check if the phone is connected and App TRK is running. + ポート '%1' のデバイスに接続できません: %2 +デバイスが接続済みであり、 TRK アプリケーションが実行中であるか確認してください。 + + + Could not create file %1 on device: %2 - + デバイス上にファイル %1 を作成できません: %2 Could not write to file %1 on device: %2 - + デバイス上にファイル %1 を書き込めません: %2 Could not close file %1 on device: %2. It will be closed when App TRK is closed. - + デバイス上のファイル %1 を閉じれません: %2。TRK アプリケーションを閉じるときにファイルも閉じられます。 + Could not connect to App TRK on device: %1. Restarting App TRK might help. + デバイスの TRK アプリケーションに接続できません: %1。 TRK アプリケーションを再起動してください。 + + + Copying install file... - + インストールファイルをコピー中... %1% copied. - + %1% コピーしました。 Installing application... - + アプリケーションのインストール中... Could not install from package %1 on device: %2 - + デバイスにパッケージ %1 からインストールできません: %2 - + + Waiting for App TRK + TRK アプリケーションを待機中 + + + + Please start App TRK on %1. + %1 で TRK アプリケーションを起動してください。 + + + + Canceled. + キャンセルしました。 + + + Failed to start %1. - + %1 の起動に失敗しました。 %1 has unexpectedly finished. - + %1 は突然終了しました。 An error has occurred while running %1. - + %1 の実行中にエラーが発生しました。 Qt4ProjectManager::Internal::S60DeviceRunControl - + Finished. - + 終了。 Starting application... - + アプリケーションの起動中... Application running with pid %1. - + アプリケーションは pid %1 で動作中。 Could not start application: %1 - + アプリケーションを起動できません: %1 Qt4ProjectManager::Internal::S60DeviceDebugRunControl - + Warning: Cannot locate the symbol file belonging to %1. - + 警告: %1に属するシンボルファイルを配置できません。 Launching debugger... - + デバッガの起動中... Debugging finished. - + デバッグ終了。 Qt4ProjectManager::Internal::S60DevicesWidget - + No Qt installed - - - - - Qt4ProjectManager::Internal::S60EmulatorRunConfiguration - - - %1 in Emulator - - - - - QtS60EmulatorRunConfiguration - - - - - Could not parse %1. The QtS60 emulator run configuration %2 can not be started. - + Qt がインストールされていません Qt4ProjectManager::Internal::S60EmulatorRunConfigurationWidget - + Name: - 名前: + 名前: - + Executable: - + 実行ファイル: + + + + Summary: Run %1 in emulator + サマリー: エミュレータを %1 で実行 + + + + Qt4ProjectManager::Internal::S60EmulatorRunConfiguration + + + %1 in Symbian Emulator + Symbian エミュレータ上の %1 + + + + QtSymbianEmulatorRunConfiguration + Qt Symbian エミュレータ実行構成 + + + + Could not parse %1. The Qt for Symbian emulator run configuration %2 can not be started. + %1 をパースできません。Qt for Symbian エミュレータの実行時の条件設定 %2 を開始できません。 Qt4ProjectManager::Internal::S60EmulatorRunConfigurationFactory - - %1 in Emulator - + + %1 in Symbian Emulator + Symbian エミュレータ上の %1 @@ -16375,35 +15384,35 @@ Check if the phone is connected and the TRK application is running. Starting %1... - %1 を起動中... + %1 を起動中... [Qt Message] - + [Qt メッセージ] %1 exited with code %2 - %1 はコード %2 で終了しました + %1 はコード %2 で終了しました Qt4ProjectManager::Internal::S60Manager - + Run in Emulator - + エミュレータで実行 Run on Device - + デバイスで実行 Debug on Device - + デバイスでデバッグ @@ -16411,22 +15420,32 @@ Check if the phone is connected and the TRK application is running. Using Default Qt Version - + デフォルトの Qt バージョンを使用 Using Qt Version "%1" - + Qt バージョン "%1" を使用 - + New configuration - 新しい構成 + 新しい構成 New Configuration Name: - 新しい構成名: + 新しい構成名: + + + + %1 Debug + %1 デバッグ + + + + %1 Release + %1 リリース @@ -16434,12 +15453,12 @@ Check if the phone is connected and the TRK application is running. Checks out a project from a Subversion repository. - + Subversion リポジトリからプロジェクトをチェックアウトします。 Subversion Checkout - + Subversion チェックアウト @@ -16447,12 +15466,12 @@ Check if the phone is connected and the TRK application is running. Specify repository, checkout directory and path. - + リポジトリ、チェックアウト先ディレクトリおよびパスを指定してください。 Repository: - リポジトリ: + リポジトリ: @@ -16460,7 +15479,7 @@ Check if the phone is connected and the TRK application is running. Not a color scheme file. - + カラースキームファイルではありません。 @@ -16468,7 +15487,7 @@ Check if the phone is connected and the TRK application is running. Customized - + カスタムフォント @@ -16476,55 +15495,60 @@ Check if the phone is connected and the TRK application is running. Cannot Open Project - + プロジェクトを開けません Failed to open project in '%1'. - + '%1' にあるプロジェクトが開けませんでした。 Could not find any project files matching (%1) in the directory '%2'. - + ディレクトリ '%2' 内に (%1) にマッチするプロジェクトファイルが見つかりませんでした。 The Project Explorer is not available. - + プロジェクト エクスプローラは使用できません。 '%1' does not exist. - + '%1' は存在しません。 Unable to open the project '%1'. - + プロジェクト '%1' が開けませんでした。 VCSBase::ProcessCheckoutJob - + + Unable to start %1: %2 + %1 を開始できません: %2 + + + The process terminated with exit code %1. - プロセスは終了コード %1 で終了しました。 + プロセスは終了コード %1 で終了しました。 The process returned exit code %1. - + プロセスは終了コード %1 をリターンしました。 The process terminated in an abnormal way. - + プロセスは異常終了しました。 Stopping... - + 停止中... @@ -16532,17 +15556,17 @@ Check if the phone is connected and the TRK application is running. Checkout started... - + チェックアウトを開始しました... - + Failed. - + 失敗しました。 Succeeded. - + 成功しました。 @@ -16550,12 +15574,12 @@ Check if the phone is connected and the TRK application is running. Clear - クリア + クリア Version Control - + バージョン管理 @@ -16563,145 +15587,433 @@ Check if the phone is connected and the TRK application is running. Community - コミュニティ + コミュニティ MimeType - + unknown - 不明 + 不明 CMake Project file - + CMake プロジェクト ファイル C Source file - + C ソース ファイル C Header file - + C ヘッダー ファイル C++ Header file - + C++ ヘッダー ファイル C++ header - + C++ ヘッダー C++ Source file - + C++ ソース ファイル C++ source code - + C++ ソース コード Objective-C source code - + Objective-C ソース コード CVS submit template - + CVS コミット テンプレート Qt Designer file - + Qt デザイナ ファイル Generic Qt Creator Project file - + 標準 Qt Creator プロジェクトファイル Generic Project Files - + 標準プロジェクト ファイル Generic Project Include Paths - + 標準プロジェクト インクルード パス Generic Project Configuration File - + 標準プロジェクト構成ファイル Perforce submit template - + Perforce コミット テンプレート QML file - + QML ファイル Qml Project file - + Qml プロジェクト ファイル Qt Project file - + Qt プロジェクト ファイル Qt Project include file - + Qt プロジェクト インクルード ファイル message catalog - + メッセージ カタログ Qt Script file - Qt スクリプト ファイル + Qt スクリプト ファイル Qt Resource file - Qt リソースファイル + Qt リソースファイル Subversion submit template - + Subversion コミット テンプレート Plain text document - + テキスト文書 XML document - + XML ドキュメント Differences between files - + 差分ファイル + + + + Debugger::Internal::AbstractGdbAdapter + + + The Gdb process could not be stopped: +%1 + Gdb プロセスを停止できませんでした: +%1 + + + + Inferior process could not be stopped: +%1 + プログラムを停止できませんでした: +%1 + + + + Inferior started. + プログラムを開始しました。 + + + + Inferior running. + プログラムを実行しています。 + + + + Attached to stopped inferior. + 停止済のプログラムにアタッチしました。 + + + + Connecting to remote server failed: +%1 + リモート サーバへの接続に失敗しました: +%1 + + + + TrkOptions + + + No Symbian gdb executable specified. + Symbian 用 Gdb 実行ファイルが指定されていません。 + + + + The Symbian gdb executable '%1' could not be found in the search path. + Symbian 用 Gdb の実行ファイル '%1' が検索パスに見つかりません。 + + + + Debugger::Internal::TermGdbAdapter + + + Debugger Error + デバッガエラー + + + + Debugger::Internal::TrkOptionsPage + + + Symbian TRK + Symbian TRK + + + + QmlParser + + + Illegal character + 無効な文字 + + + + Unclosed string at end of line + 文末で閉じられていない文字列 + + + + Illegal escape squence + 無効なエスケープシーケンス + + + + Illegal unicode escape sequence + 無効な UNICODE エスケープシーケンス + + + + Unclosed comment at end of file + 文末で閉じられていないコメント + + + + Illegal syntax for exponential number + 無効な指数シンタックス + + + + Identifier cannot start with numeric literal + 識別子は数字で始められません + + + + Unterminated regular expression literal + 閉じられていない正規表現 + + + + Invalid regular expression flag '%0' + 無効な正規表現フラグ '%0' + + + + Unexpected token '%1' + 予期せぬトークン '%1' + + + + + Expected token '%1' + 予期したトークン '%1' + + + + Syntax error + シンタックスエラー + + + + Qt4ProjectManager::Internal::S60Devices::Device + + + Id: + ID: + + + + Name: + 名前: + + + + EPOC: + EPOC: + + + + Tools: + ツール: + + + + Qt: + Qt: + + + + trk::BluetoothListener + + + %1: Stopping listener %2... + %1: リスナ %2 を停止中... + + + + %1: Starting Bluetooth listener %2... + %1: Bluetooth リスナ %2 を起動中... + + + + Unable to run '%1': %2 + '%1' を実行できません: %2 + + + + %1: Bluetooth listener running (%2). + %1: Bluetooth リスナ (%2) が実行中。 + + + + %1: Process %2 terminated with exit code %3. + %1: プロセス %2 は終了コード %3 で終了しました。 + + + + %1: Process %2 crashed. + %1: プロセス %2 が異常終了しました。 + + + + %1: Process error %2: %3 + %1: プロセスエラー %2: %3 + + + + trk::promptStartCommunication + + + Connection on %1 canceled. + %1 への接続がキャンセルされました。 + + + + Waiting for App TRK + TRK アプリケーションを待機中 + + + + Waiting for App TRK to start on %1... + %1 で TRK アプリケーションを待機中... + + + + Waiting for Bluetooth Connection + Bluetooth 接続を待機中 + + + + Connecting to %1... + %1 へ接続中... + + + + trk::BaseCommunicationStarter + + + %1: timed out after %n attempts using an interval of %2ms. + + %1: %2 ms の間隔で %n 回試行後にタイムアウトしました。 + + + + + %1: Connection attempt %2 succeeded. + %1: %2 に接続しました。 + + + + %1: Connection attempt %2 failed: %3 (retrying)... + %1: %2 への接続に失敗しました: %3 (再試行中)... + + + + trk::Session + + + CPU: v%1.%2%3%4 + CPU description of an S60 device %1 major verison, %2 minor version %3 real name of major verison, %4 real name of minor version + CPU: v%1.%2%3%4 + + + + App TRK: v%1.%2 TRK protocol: v%3.%4 + TRK アプリケーション: v%1.%2 TRK プロトコル: v%3.%4 + + + + %1, %2%3%4, %5 + s60description description of an S60 device %1 CPU description, %2 endianness %3 default type size (if any), %4 float size (if any) %5 TRK version + %1, %2%3%4, %5 + + + + big endian + ビッグエンディアン + + + + little endian + リトルエンディアン + + + + , type size: %1 + will be inserted into s60description + , 型サイズ: %1 + + + + , float size: %1 + will be inserted into s60description + , float サイズ: %1 diff --git a/share/qtcreator/translations/qtcreator_pl.ts b/share/qtcreator/translations/qtcreator_pl.ts index 382130868f2..26c7f6e2b02 100644 --- a/share/qtcreator/translations/qtcreator_pl.ts +++ b/share/qtcreator/translations/qtcreator_pl.ts @@ -14757,7 +14757,7 @@ Następujące kodowania będą najprawdopodobniej pasowały: - <line number> + <line number> <numer linii> diff --git a/share/qtcreator/translations/qtcreator_ru.ts b/share/qtcreator/translations/qtcreator_ru.ts index 3065beed58a..65599f122fc 100644 --- a/share/qtcreator/translations/qtcreator_ru.ts +++ b/share/qtcreator/translations/qtcreator_ru.ts @@ -140,7 +140,7 @@ You are going to delete a Folder which will also<br>remove its content. Are you sure you would like to continue? - Вы собираетесь удалить папку, что повлечёт<br>удаление её содержимого. Вы уверены, что хотите продолжить? + Вы собираетесь удалить папку, что повлечёт<br>удаление её содержимого. Вы уверены, что желаете продолжить? @@ -413,7 +413,7 @@ Base environment for this runconfiguration: - Базовая среда этой конфигурации выполнения: + Базовая среда данной конфигурации выполнения: @@ -431,7 +431,7 @@ The path %1 is not a executable. - Путь %1 не является исполняемой программой. + Путь %1 не является путём к исполняемой программе. @@ -513,7 +513,7 @@ Qt Creator has detected an <b>in-source-build in %1</b> which prevents shadow builds. Qt Creator will not allow you to change the build directory. If you want a shadow build, clean your source directory and re-open the project. - Qt Creator обнаружил <b>сборку в каталоге с исходниками (%1)</b>, что препятствует фоновой сборке. Поэтому Qt Creator не позволит изменить каталог сборки. Если требуется фоновая сборка, необходимо очистить каталог исходников и открыть проект снова. + Qt Creator обнаружил <b>сборку в каталоге с исходниками (%1)</b>, что препятствует фоновой сборке. Qt Creator не позволит изменить каталог сборки. Если требуется фоновая сборка, необходимо очистить каталог исходников и открыть проект снова. @@ -715,7 +715,7 @@ The commit message check failed. Do you want to commit the change? - Сообщение о фиксации содержит ошибки. Всё-равно желаете зафиксировать изменения? + Сообщение о фиксации содержит ошибки. Желаете зафиксировать изменения? @@ -733,7 +733,7 @@ Файл был изменён. Желаете откатить его изменения? - + The commit list spans several repositories (%1). Please commit them one by one. Список на фиксацию содержит несколько репозиториев (%1). Пожалуйста, фиксируйте их по одному. @@ -753,7 +753,7 @@ Не удалось создать временный файл: %1 - + Project status Состояние проекта @@ -866,7 +866,7 @@ When checked, all files touched by a commit will be displayed when clicking on a revision number in the annotation view (retrieved via commit id). Otherwise, only the respective file will be displayed. - Если включено, то по щелчку на номере равизии при просмотре аннотации (полученной по идентификатору фиксации) будут отображаться все зафиксированные файлы. В противном случае, только соответствующий файл. + Если включено, по щелчку на номере равизии при просмотре аннотации (полученной по идентификатору фиксации) будут отображаться все зафиксированные файлы. В противном случае, только соответствующий файл. @@ -905,7 +905,7 @@ CVSPlugin - + Cannot find repository for '%1' Не удалось найти репозиторий для '%1' @@ -947,7 +947,7 @@ <html><body><p>Specify the path to the <a href="%1">Debugging Tools for Windows</a> (%2) here.</p><p><b>Note:</b> Restarting Qt Creator is required for these settings to take effect.</p></p></body></html> Label text for path configuration. %2 is "x-bit version". - <html><body><p>Укажите здесь путь к <a href="%1">Debugging Tools for Windows</a> (%2).</p><p><b>Замечание:</b> Для вступления изменений в силу необходим перезапуск Qt Creator.</p></p></body></html> + <html><body><p>Укажите путь к <a href="%1">Debugging Tools for Windows</a> (%2).</p><p><b>Замечание:</b> Для вступления изменений в силу необходим перезапуск Qt Creator.</p></p></body></html> @@ -993,7 +993,6 @@ Repository Location: - "Размещение репозитория" слишком длинно Репозиторий: @@ -1120,7 +1119,7 @@ Display Output Pane after sending a post - Показать окно вывода, отослав данные + Отправив данные, показать окно вывода @@ -1158,7 +1157,7 @@ Checking this will populate the source file view automatically but might slow down debugger startup considerably. - Включение приведет к автоматическому заполнению просмотра исходного файла, но может значительно замедлить процесс запуска отладчика. + Включение приведёт к автоматическому заполнению просмотра файла исходных текстов, но может замедлить процесс запуска отладчика. @@ -1174,8 +1173,8 @@ When this option is checked, 'Step Into' compresses several steps into one in certain situations, leading to 'less noisy' debugging. So will, e.g., the atomic reference counting code be skipped, and a single 'Step Into' for a signal emission will end up directly in the slot connected to it. - Когда включён данный параметр, в определенных ситуациях 'Зайти в' объединяет несколько шагов в один, позволяя 'снизить шум' при отладке. Например, будет пропущен -атомарный код подсчета ссылок и единственная операция 'Зайти в' инициации сигнала завершится прямо в слоте, который подключен к нему. + Когда включён данный параметр, в определенных ситуациях 'Зайти в' объединяет несколько шагов в один, позволяя 'снизить шум' при отладке. +Например, будет пропущен атомарный код подсчета ссылок и единственная операция 'Зайти в' инициации сигнала завершится прямо в слоте, подключённому к данному сигналу. @@ -1205,7 +1204,7 @@ Use tooltips in main editor while debugging - Включает подсказки в основном редакторе при отладке + Использовать подсказки в основном редакторе при отладке @@ -1228,7 +1227,7 @@ Automatically insert (, ) and ; when appropriate. - Автоматически вставлять (, ) и ; когда потребуется. + Автоматически вставлять '(, )' и ';', когда потребуется. @@ -1324,7 +1323,7 @@ Would you like to overwrite them? Следующие файлы уже присутствуют в каталоге %1: %2. -Вы хотите перезаписать их? +Желаете перезаписать их? @@ -1455,17 +1454,17 @@ Would you like to overwrite them? Remove Current Split - Удалить текущее разделение + Удалить текущее разделитель Remove All Splits - Удалить все разделения + Удалить все разделители Goto Other Split - Перейти к другому разделению + Перейти к другому разделителю @@ -1521,7 +1520,7 @@ Would you like to overwrite them? Open File - Открытие файла + Открыть файл @@ -1598,7 +1597,7 @@ Would you like to overwrite them? You will lose your current changes if you proceed reverting %1. - Будут потеряны все текущие изменения, если продолжить откат %1. + Если продолжить откат %1, будут потеряны все текущие изменения. @@ -1777,7 +1776,7 @@ Would you like to overwrite them? General settings - Основные установки + Основные настройки @@ -1812,7 +1811,7 @@ Would you like to overwrite them? General - Основное + Основные @@ -1859,7 +1858,7 @@ Would you like to overwrite them? Консоль - + &File &Файл @@ -2040,7 +2039,7 @@ Would you like to overwrite them? General - Основное + Основные @@ -2106,7 +2105,7 @@ Would you like to overwrite them? Close All Except %1 - Закрыть всё, кроме %1 + Закрыть все, кроме %1 @@ -2225,7 +2224,7 @@ Would you like to overwrite them? Save Selected - Сохранить выбранное + Сохранить выбранные @@ -2233,8 +2232,7 @@ Would you like to overwrite them? Preferences - Честно говоря, не знаю, как Preferences в Mac OS переводят - Параметры + Настройки @@ -2300,7 +2298,7 @@ Would you like to overwrite them? <h3>Qt Creator %1</h3>Based on Qt %2 (%3 bit)<br/><br/>Built on %4 at %5<br /><br/>%8<br/>Copyright 2008-%6 %7. All rights reserved.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> - <h3>Qt Creator %1</h3>Основан на Qt %2 (%3-х битной)<br/><br/>Собран %4 в %5<br /><br/>%8<br/>Copyright 2008-%6 %7. All rights reserved.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> + <h3>Qt Creator %1</h3>Основан на Qt %2 (%3-х битной)<br/><br/>Собран %4 в %5<br /><br/>%8<br/>Copyright 2008-%6 %7. All rights reserved.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> @@ -2380,7 +2378,7 @@ Would you like to overwrite them? Press <RETURN> to close this window... - Нажмите <ВВОД>, чтобы закрыть это окно... + Для закрытия данного окна нажмите <ВВОД>... @@ -2446,7 +2444,7 @@ Would you like to overwrite them? The name must not be empty - Имя должно быть не пустым + Имя не должно быть пустым @@ -2470,18 +2468,18 @@ Would you like to overwrite them? %1: canceled. %n occurrences found in %2 files. - %1: отменено. %n совпадение найдено в %2 файлах. - %1: отменено. %n совпадения найдено в %2 файлах. - %1: отменено. %n совпадений найдено в %2 файлах. + %1: отменено. %n совпадение найдено в %2 файле(ах). + %1: отменено. %n совпадения найдено в %2 файле(ах). + %1: отменено. %n совпадений найдено в %2 файле(ах). %1: %n occurrences found in %2 files. - %1: %n совпадение найдено в %2 файлах. - %1: %n совпадения найдено в %2 файлах. - %1: %n совпадений найдено в %2 файлах. + %1: %n совпадение найдено в %2 файле(ах). + %1: %n совпадения найдено в %2 файле(ах). + %1: %n совпадений найдено в %2 файле(ах). @@ -2539,7 +2537,7 @@ Would you like to overwrite them? Generate form: - Создать форму: + Создать форму: @@ -2559,12 +2557,12 @@ Would you like to overwrite them? Type information: - Тип класса: + Тип класса: None - Не указан + Не указан @@ -2597,7 +2595,7 @@ Would you like to overwrite them? The path must not be empty. - Путь не может быть пустым. + Путь не должен быть пустым. @@ -2607,12 +2605,12 @@ Would you like to overwrite them? The path '%1' is not a directory. - Путь '%1' не является каталогом. + Путь '%1' не является путём к каталогу. The path '%1' is not a file. - Путь '%1' не является файлом. + Путь '%1' не является путём к файлу. @@ -2686,7 +2684,7 @@ Would you like to overwrite them? The name must not contain the '.'-character. - Название не должно содержать символ "точка". + Название не должно содержать символ "." (точка). @@ -2735,12 +2733,12 @@ Would you like to overwrite them? The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes? - Несохранённый файл %1 изменился вне Qt Creator. Перезагрузить его с потерей изменений? + Несохранённый файл %1 был изменён вне Qt Creator. Перезагрузить его с потерей изменений? The file %1 has changed outside Qt Creator. Do you want to reload it? - Файл %1 изменён вне Qt Creator. Желаете перезагрузить его? + Файл %1 был изменён вне Qt Creator. Желаете перезагрузить его? @@ -2753,12 +2751,12 @@ Would you like to overwrite them? This change cannot be undone. - Это изменение нельзя будет отменить. + Данное изменение невозможно отменить. Yes, I know what I am doing. - Да, я знаю, что делаю. + Да, я знаю что делаю. @@ -2771,7 +2769,7 @@ Would you like to overwrite them? The header and source file names will be derived from the class name - Названия файлов исходников будут получены из имени класса + Названия файла исходных текстов и заголовочного файла будут получены из имени класса @@ -2784,7 +2782,7 @@ Would you like to overwrite them? Error while generating file contents. - Ошибка во время формирования содержимого файла. + Ошибка формирования содержимого файла. @@ -2800,13 +2798,14 @@ Would you like to overwrite them? Unfiltered + пустой фильтр документации Вся CppEditor::Internal::CppPlugin - + C++ C++ @@ -2841,7 +2840,7 @@ Would you like to overwrite them? Создание заголовочного и исходного файлов для нового класса. - + Follow Symbol under Cursor Перейти к символу под курсором @@ -2865,6 +2864,11 @@ Would you like to overwrite them? Rename Symbol under Cursor Переименовать символ под курсором + + + Update code model + Обновить модель кода + CppFileSettingsPage @@ -3026,7 +3030,7 @@ Would you like to overwrite them? CppTools::Internal::CppToolsPlugin - + &C++ &C++ @@ -3073,9 +3077,9 @@ Would you like to overwrite them? %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 - %n известный тип, Qt версии: %1, пространство имен Qt: %2, Версия дампера: %3 - %n известных типа, Qt версии: %1, пространство имен Qt: %2, Версия дампера: %3 - %n известных типов, Qt версии: %1, пространство имен Qt: %2, Версия дампера: %3 + %n известный тип, Qt версии: %1, пространство имён Qt: %2, Версия дампера: %3 + %n известных типа, Qt версии: %1, пространство имён Qt: %2, Версия дампера: %3 + %n известных типов, Qt версии: %1, пространство имён Qt: %2, Версия дампера: %3 @@ -3166,7 +3170,7 @@ Would you like to overwrite them? Changing breakpoint state requires either a fully running or fully stopped application. - Изменение состояние точки останова требует или полностью остановленную программу, или полностью работающую. + Изменение состояние точки останова требует или полностью остановленную программу, или полностью запущенную. @@ -3196,7 +3200,7 @@ Would you like to overwrite them? Turn off helper usage - Отключить помощника + Не использовать помощника @@ -3206,7 +3210,7 @@ Would you like to overwrite them? The debugging helper is used to nicely format the values of some Qt and Standard Library data types. It must be compiled for each used Qt version separately. This can be done in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' in the 'Debugging Helper' row. - Помощник отладчика используется для преобразования к наглядному виду значений некоторых типов данных Qt и стандартной библиотеки. Он должен быть собран отдельно для каждой версии Qt. Это можно сделать в параметрах Qt, выбрав профиль Qt и нажав на 'Пересобрать' в строке 'Помощник отладчика'. + Помощник отладчика используется для преобразования значений некоторых типов данных Qt и стандартной библиотеки к наглядному виду. Он должен быть собран отдельно для каждой версии Qt. Это можно сделать в параметрах Qt, выбрав профиль Qt и нажав на 'Пересобрать' в строке 'Помощник отладчика'. @@ -3226,7 +3230,7 @@ Would you like to overwrite them? Continue anyway - Всё равно продолжить + Всё-равно продолжить @@ -3348,7 +3352,7 @@ Would you like to overwrite them? Ignore Count: - Число пропусков: + Количество пропусков: @@ -3388,12 +3392,12 @@ Would you like to overwrite them? Breakpoint will only be hit if this condition is met. - Точка останова сработает только, когда условие выполнится. + Точка останова сработает только при выполнении условия. Breakpoint will only be hit after being ignored so many times. - Точка останова сработает только через указанное количество попаданий. + Точка останова сработает только через указанное количество пропусков. @@ -3664,17 +3668,17 @@ Would you like to overwrite them? Loading the custom dumper library '%1' (%2) ... - Загружается особая библиотека дампера '%1' (%2)... + Загружается особая библиотека дампера '%1' (%2)... Loading of the custom dumper library '%1' (%2) failed: %3 - Загрузка особой библиотеки дампера '%1' (%2) не удалась: %3 + Загрузка особой библиотеки дампера '%1' (%2) не удалась: %3 Loaded the custom dumper library '%1' (%2). - Загружена особая библиотека дампера '%1' (%2). + Загружена особая библиотека дампера '%1' (%2). @@ -3684,7 +3688,7 @@ Would you like to overwrite them? Disabling dumpers due to debuggee crash... - Отключение дамперов из-за падения отлаживаемой программы... + Отключение дамперов из-за сбоя отлаживаемой программы... @@ -3747,7 +3751,7 @@ Would you like to overwrite them? Adds the Microsoft symbol server providing symbols for operating system libraries.Requires specifying a local cache directory. - Добавляет сервер символов Microsoft, который предоставляет их для файлов операционной системы. Требует указания каталога локального кэша. + Добавляет сервер символов Microsoft, который предоставляет символы для файлов операционной системы. Требует указания каталога локального кэша. @@ -3789,7 +3793,7 @@ Would you like to overwrite them? Attached to core temporarily. - Временно подключено к дампу. + Временно подключено к дампу. @@ -3825,17 +3829,17 @@ Would you like to overwrite them? Close Debugging Session - Закрытие отладочной сессии + Закрытие сессии отладки A debugging session is still in progress. Would you like to terminate it? - Идёт отладка. Завершить её? + Идёт отладка. Завершить её? A debugging session is still in progress. Terminating the session in the current state (%1) can leave the target in an inconsistent state. Would you still like to terminate it? - Идёт отладка. Её завершение в текущем режиме (%1) может оставить исполнитель в неизвестном состоянии. Завершить её? + Идёт отладка. Её завершение в текущем режиме (%1) может оставить исполнитель в неизвестном состоянии. Завершить отладку? @@ -3863,12 +3867,12 @@ Would you like to overwrite them? Start and Debug External Application... - Запустить под отладчиком внешнее приложение... + Запустить внешнее приложение для отладки... Attach to Running External Application... - Подключить к работающему внешнему приложению... + Подключить к запущенному внешнему приложению... @@ -4258,12 +4262,12 @@ Would you like to overwrite them? Обработка очереди команд. - + Loading %1... Загружается %1... - + Stopped at breakpoint. Остановлено на точке останова. @@ -4285,12 +4289,12 @@ Would you like to overwrite them? - + Stopped. Остановлено. - + Stopped: "%1" Остановлено: "%1" @@ -4314,7 +4318,7 @@ Using gdb 6.7 or later is strongly recommended. Продолжение после временного останова... - + The debugging helper library was not found at %1. Библиотека помощника отладчика не обнаружена в %1. @@ -4334,12 +4338,12 @@ Using gdb 6.7 or later is strongly recommended. Не удалось запустить подчинённого - + Inferior shutdown failed Не удалось остановить подчинённого - + Cannot find debugger initialization script Не удалось найти скрипт инициализации отладчика @@ -4349,18 +4353,18 @@ Using gdb 6.7 or later is strongly recommended. В настройках указан файл скрипта '%1', который сейчас недоступен. Если файл скрипта не обязателен, просто очистите поле, чтобы не было этого предупреждения. - + Unable to run '%1': %2 Не удалось запустить '%1': %2 - + <unknown> End address of loaded module <неизвестный> - + Retrieving data for stack view... Получение данных о стеке... @@ -4375,7 +4379,7 @@ Using gdb 6.7 or later is strongly recommended. - + An unknown error in the Gdb process occurred. Неизвестная ошибка возникла у процесса Gdb. @@ -4418,7 +4422,7 @@ Using gdb 6.7 or later is strongly recommended. Программа завершилась с ошибкой: %1 - + Execution Error Ошибка выполнения @@ -4430,7 +4434,7 @@ Using gdb 6.7 or later is strongly recommended. - + Running requested... Потребован запуск... @@ -4470,7 +4474,7 @@ Using gdb 6.7 or later is strongly recommended. Потребовано выполнение до функции %1... - + Jumping out of bogus frame... Выход из подложного кадра... @@ -4735,7 +4739,7 @@ Using gdb 6.7 or later is strongly recommended. Debugger::Internal::PlainGdbAdapter - + Cannot set up communication with child process: %1 Не удалось установить связь с дочерним процессом: %1 @@ -5404,7 +5408,7 @@ Using gdb 6.7 or later is strongly recommended. This will enable nice display of Qt and Standard Library objects in the Locals&Watchers view - Включит удобное отображение объектов Qt и стандартной библиотеки в окне отслеживаемых переменных + Включить удобное отображение объектов Qt и стандартной библиотеки в окне отслеживаемых переменных @@ -5414,7 +5418,7 @@ Using gdb 6.7 or later is strongly recommended. This will load a dumper library - Загрузит библиотеку дампера данных + Загружать библиотеку дампера данных @@ -5434,7 +5438,7 @@ Using gdb 6.7 or later is strongly recommended. Makes use of Qt Creator's code model to find out if a variable has already been assigned a value at the point the debugger interrupts. - Включит использование модели кода Qt Creator для определения, + Включить использование модели кода Qt Creator для определения было ли переменной присвоено значение в точке прерывания отладчиком. @@ -5461,7 +5465,7 @@ Using gdb 6.7 or later is strongly recommended. The file name is empty. - Имя файла пустое. + Пустое имя файла. @@ -5514,7 +5518,7 @@ Using gdb 6.7 or later is strongly recommended. Code Generation - Генерация кода + Создание кода @@ -5583,7 +5587,7 @@ Using gdb 6.7 or later is strongly recommended. Creates a Qt Designer form file (.ui) with a matching class. - Создание файла формы Qt Designer (.ui) с подходящим классом. + Создание файла формы Qt Designer (.ui) и соответствующего класса. @@ -5833,8 +5837,8 @@ Rebuilding the project might help. Note: This adds the toolchain to the build environment and runs the program inside a virtual machine. It also automatically sets the correct Qt version. Использовать VirtualBox -Заметка: Добавится возможность создавать и запускать программы под виртуальной машиной. -Так же будет автоматически установлена правильная версия Qt. +Замечание: Добавляет возможность создавать и запускать программы под виртуальной машиной. +Также будет автоматически установлена корректная версия Qt. @@ -5965,7 +5969,7 @@ It also automatically sets the correct Qt version. Read - Считан + Описание прочитано @@ -6000,7 +6004,7 @@ It also automatically sets the correct Qt version. Plugin's initialization method succeeded - Метод инициализации модуля завершился успешно + Инициализация модуля завершилась успешно @@ -6010,7 +6014,7 @@ It also automatically sets the correct Qt version. Plugin successfully loaded and running - Модуль успешно загружен и работает + Модуль успешно загружен и запущен @@ -6690,7 +6694,7 @@ Reason: %3 Show side-by-side if possible - Показывать сбоку по возможности + Показывать сбоку, если возможно @@ -6959,7 +6963,7 @@ Reason: %3 Git::Internal::GitClient - + Note that the git plugin for QtCreator is not able to interact with the server so far. Thus, manual ssh-identification etc. will not work. Следует иметь в виду, что модуль Git до сих пор не умеет работать с сервером. Поэтому, ручная настройка ssh-авторизации и другое не будет работать. @@ -6987,7 +6991,7 @@ Reason: %3 Ожидание данных... - + Git Diff Git - Сравнение @@ -7012,7 +7016,7 @@ Reason: %3 Git - аннотация %1 - + Unable to add %n file(s) to %1: %2 Не удалось добавить %n файл в %1: %2 @@ -7054,7 +7058,7 @@ Reason: %3 Не удалось запустить показ: %1: %2 - + Changes Изменения @@ -7110,12 +7114,12 @@ Reason: %3 Файл был изменён. Желаете откатить его изменения? - + The file is not modified. Файл не изменялся. - + There are no modified files. Нет изменённых файлов. @@ -7123,7 +7127,7 @@ Reason: %3 Git::Internal::GitPlugin - + &Git &Git @@ -7343,7 +7347,7 @@ Reason: %3 &Вернуть - + Could not find working directory Не удалось найти рабочий каталог @@ -7828,7 +7832,7 @@ Perl через переменные среды окружения. Cannot unregister documentation file %1! - Невозможно разрегистрировать файл документации %1! + Невозможно дерегистрировать файл документации %1! @@ -7849,7 +7853,7 @@ Perl через переменные среды окружения. General settings - Основные установки + Основные настройки @@ -7870,7 +7874,7 @@ Perl через переменные среды окружения. There was an error while importing bookmarks! - Возникла ошибка при импорте закладок! + При импорте закладок возникла ошибка! @@ -8014,7 +8018,7 @@ Perl через переменные среды окружения. <html><head><title>No Documentation</title></head><body><br/><center><b>%1</b><br/>No documentation available.</center></body></html> - <html><head><title>Документации нет</title></head><body><br/><center><b>%1</b><br/>Нет доступной документации.</center></body></html> + <html><head><title>Документация отсутствует</title></head><body><br/><center><b>%1</b><br/>Нет доступной документации.</center></body></html> @@ -8243,7 +8247,7 @@ Perl через переменные среды окружения. The current startup project can not be run. - Текущий запускаемый проект не может быть запущен. + Текущий проект не может быть запущен. @@ -8292,7 +8296,7 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp. MimeType - + unknown неизвестный @@ -8644,7 +8648,7 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp. Plain Text Editor - Редактор обычного текста + Текстовый редактор @@ -9046,7 +9050,7 @@ p, li { white-space: pre-wrap; } Файл был изменён. Желаете откатить его изменения? - + Another submit is currently executed. Другая фиксация уже идёт в этот момент. @@ -9528,7 +9532,7 @@ p, li { white-space: pre-wrap; } ProjectExplorer::DebuggingHelperLibrary - + The target directory %1 could not be created. Не удалось создать целевой каталог %1. @@ -14254,7 +14258,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Файл был изменён. Желаете откатить его изменения? - + The commit list spans several repositories (%1). Please commit them one by one. Список на фиксацию содержит несколько репозиториев (%1). Пожалуйста, фиксируйте их по одному. @@ -14274,7 +14278,7 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Не удаётся создать временный файл: %1 - + Describe Описание @@ -15069,7 +15073,7 @@ The following encodings are likely to fit: - <line number> + <line number> <номер строки> @@ -15596,7 +15600,7 @@ name <email> alias <email> VCSManager - + Version Control Контроль версий @@ -15849,7 +15853,7 @@ p, li { white-space: pre-wrap; } Debugger::Internal::TermGdbAdapter - + Debugger Error Ошибка отладчика diff --git a/share/qtcreator/translations/qtcreator_sl.ts b/share/qtcreator/translations/qtcreator_sl.ts index 196b3d46411..3dbc9927bee 100644 --- a/share/qtcreator/translations/qtcreator_sl.ts +++ b/share/qtcreator/translations/qtcreator_sl.ts @@ -12694,7 +12694,7 @@ Naslednji nabori znakov so verjetno ustrezni: - <line number> + <line number> <številka vrstice> diff --git a/src/plugins/coreplugin/editormanager/editormanager.cpp b/src/plugins/coreplugin/editormanager/editormanager.cpp index fe675b910b9..7f4db0b13a7 100644 --- a/src/plugins/coreplugin/editormanager/editormanager.cpp +++ b/src/plugins/coreplugin/editormanager/editormanager.cpp @@ -1201,10 +1201,12 @@ IEditor *EditorManager::openEditorWithContents(const QString &editorKind, QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); IEditor *edt = createEditor(editorKind); - if (!edt) + if (!edt) { + QApplication::restoreOverrideCursor(); return 0; + } - if (!edt || !edt->createNew(contents)) { + if (!edt->createNew(contents)) { QApplication::restoreOverrideCursor(); delete edt; edt = 0; diff --git a/src/plugins/cpptools/cppcodecompletion.cpp b/src/plugins/cpptools/cppcodecompletion.cpp index 0fb216a475e..37ea378d2e1 100644 --- a/src/plugins/cpptools/cppcodecompletion.cpp +++ b/src/plugins/cpptools/cppcodecompletion.cpp @@ -89,6 +89,14 @@ public: { setFocusPolicy(Qt::NoFocus); setAttribute(Qt::WA_DeleteOnClose); + + // Set the window and button text to the tooltip text color, since this + // widget draws the background as a tooltip. + QPalette p = palette(); + const QColor toolTipTextColor = p.color(QPalette::Inactive, QPalette::ToolTipText); + p.setColor(QPalette::Inactive, QPalette::WindowText, toolTipTextColor); + p.setColor(QPalette::Inactive, QPalette::ButtonText, toolTipTextColor); + setPalette(p); } protected: @@ -1019,7 +1027,8 @@ bool CppCodeCompletion::completeConstructorOrFunction(const QList &r if (doc->parse(Document::ParseDeclaration)) { doc->check(); if (SimpleDeclarationAST *sd = doc->translationUnit()->ast()->asSimpleDeclaration()) { - if (sd->declarator_list && sd->declarator_list->value->postfix_declarator_list + if (sd->declarator_list && + sd->declarator_list && sd->declarator_list->value->postfix_declarator_list && sd->declarator_list->value->postfix_declarator_list->value->asFunctionDeclarator()) { autocompleteSignature = true; } diff --git a/src/plugins/debugger/debuggeragents.cpp b/src/plugins/debugger/debuggeragents.cpp index d29b5e506fc..102be15cb7f 100644 --- a/src/plugins/debugger/debuggeragents.cpp +++ b/src/plugins/debugger/debuggeragents.cpp @@ -44,6 +44,8 @@ #include #include + +#include #include #include #include @@ -68,13 +70,13 @@ namespace Internal { */ MemoryViewAgent::MemoryViewAgent(DebuggerManager *manager, quint64 addr) - : QObject(manager), m_engine(manager->currentEngine()) + : QObject(manager), m_engine(manager->currentEngine()), m_manager(manager) { init(addr); } MemoryViewAgent::MemoryViewAgent(DebuggerManager *manager, const QString &addr) - : QObject(manager), m_engine(manager->currentEngine()) + : QObject(manager), m_engine(manager->currentEngine()), m_manager(manager) { bool ok = true; init(addr.toULongLong(&ok, 0)); @@ -94,11 +96,19 @@ void MemoryViewAgent::init(quint64 addr) m_editor = editorManager->openEditorWithContents( Core::Constants::K_DEFAULT_BINARY_EDITOR, &titlePattern); - connect(m_editor->widget(), SIGNAL(lazyDataRequested(quint64,bool)), - this, SLOT(fetchLazyData(quint64,bool))); - editorManager->activateEditor(m_editor); - QMetaObject::invokeMethod(m_editor->widget(), "setLazyData", - Q_ARG(quint64, addr), Q_ARG(int, 1024 * 1024), Q_ARG(int, BinBlockSize)); + if (m_editor) { + connect(m_editor->widget(), SIGNAL(lazyDataRequested(quint64,bool)), + this, SLOT(fetchLazyData(quint64,bool))); + editorManager->activateEditor(m_editor); + QMetaObject::invokeMethod(m_editor->widget(), "setLazyData", + Q_ARG(quint64, addr), Q_ARG(int, 1024 * 1024), Q_ARG(int, BinBlockSize)); + } else { + m_manager->showMessageBox(QMessageBox::Warning, + tr("No memory viewer available"), + tr("The memory contents cannot be shown as no viewer plugin not " + "the BinEditor plugin could be loaded.")); + deleteLater(); + } } void MemoryViewAgent::fetchLazyData(quint64 block, bool sync) diff --git a/src/plugins/debugger/debuggeragents.h b/src/plugins/debugger/debuggeragents.h index ff7e4879aa6..f0888c6b92f 100644 --- a/src/plugins/debugger/debuggeragents.h +++ b/src/plugins/debugger/debuggeragents.h @@ -70,6 +70,7 @@ private: QPointer m_engine; QPointer m_editor; + QPointer m_manager; }; diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 9365e54ee4a..fe167734eb1 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -4497,17 +4497,19 @@ void GdbEngine::handleInferiorPrepared() { const QString qtInstallPath = m_startParameters->qtInstallPath; if (!qtInstallPath.isEmpty()) { - QString qtBuildPath = - #if defined(Q_OS_WIN) - _("C:/qt-greenhouse/Trolltech/Code_less_create_more/Trolltech/Code_less_create_more/Troll/4.6/qt"); - #elif defined(Q_OS_MAC) - QString(); - #else - _("/var/tmp/qt-x11-src-4.6.0"); - #endif - if (!qtBuildPath.isEmpty()) + QString qtBuildPath; +#if defined(Q_OS_WIN) + qtBuildPath = _("C:/qt-greenhouse/Trolltech/Code_less_create_more/Trolltech/Code_less_create_more/Troll/4.6/qt"); postCommand(_("set substitute-path %1 %2") - .arg(qtBuildPath).arg(qtInstallPath)); + .arg(qtBuildPath).arg(qtInstallPath)); + qtBuildPath = _("C:/iwmake/build_mingw_opensource"); + postCommand(_("set substitute-path %1 %2") + .arg(qtBuildPath).arg(qtInstallPath)); +#elif defined(Q_OS_UNIX) && !defined (Q_OS_MAC) + qtBuildPath = _("/var/tmp/qt-x11-src-4.6.0"); + postCommand(_("set substitute-path %1 %2") + .arg(qtBuildPath).arg(qtInstallPath)); +#endif } // Initial attempt to set breakpoints diff --git a/src/plugins/designer/qtcreatorintegration.cpp b/src/plugins/designer/qtcreatorintegration.cpp index 31ecc39d2b3..636627c40f8 100644 --- a/src/plugins/designer/qtcreatorintegration.cpp +++ b/src/plugins/designer/qtcreatorintegration.cpp @@ -47,6 +47,8 @@ #include #include #include +#include +#include #include @@ -577,9 +579,22 @@ bool QtCreatorIntegration::navigateToSlot(const QString &objectName, const QFileInfo fi(currentUiFile); const QString uicedName = QLatin1String("ui_") + fi.completeBaseName() + QLatin1String(".h"); + // Retrieve code model snapshot restricted to project of ui file. + const ProjectExplorer::Project *uiProject = ProjectExplorer::ProjectExplorerPlugin::instance()->session()->projectForFile(currentUiFile); + if (!uiProject) { + *errorMessage = tr("Internal error: No project could be found for %1.").arg(currentUiFile); + return false; + } + CPlusPlus::Snapshot docTable = cppModelManagerInstance()->snapshot(); + for (CPlusPlus::Snapshot::iterator it = docTable.begin(); it != docTable.end(); ) { + const ProjectExplorer::Project *project = ProjectExplorer::ProjectExplorerPlugin::instance()->session()->projectForFile(it.key()); + if (project == uiProject) { + ++it; + } else { + it = docTable.erase(it); + } + } // take all docs, find the ones that include the ui_xx.h. - - const CPlusPlus::Snapshot docTable = cppModelManagerInstance()->snapshot(); QList docList = findDocumentsIncluding(docTable, uicedName, true); // change to false when we know the absolute path to generated ui_<>.h file if (Designer::Constants::Internal::debug) diff --git a/src/plugins/fakevim/fakevimhandler.cpp b/src/plugins/fakevim/fakevimhandler.cpp index c8cf6b90829..d690a3452cd 100644 --- a/src/plugins/fakevim/fakevimhandler.cpp +++ b/src/plugins/fakevim/fakevimhandler.cpp @@ -1178,7 +1178,7 @@ EventResult FakeVimHandler::Private::handleCommandMode(int key, int unmodified, m_passing = !m_passing; updateMiniBuffer(); } else if (key == '.') { - //qDebug() << "REPEATING" << quoteUnprintable(m_dotCommand); + //qDebug() << "REPEATING" << quoteUnprintable(m_dotCommand) << count(); QString savedCommand = m_dotCommand; m_dotCommand.clear(); replay(savedCommand, count()); @@ -1366,6 +1366,8 @@ EventResult FakeVimHandler::Private::handleCommandMode(int key, int unmodified, } finishMovement("j"); } else if (key == 'J') { + setDotCommand("%1J", count()); + beginEditBlock(); if (m_submode == NoSubMode) { for (int i = qMax(count(), 2) - 1; --i >= 0; ) { moveToEndOfLine(); @@ -1380,6 +1382,8 @@ EventResult FakeVimHandler::Private::handleCommandMode(int key, int unmodified, if (!m_gflag) moveLeft(); } + endEditBlock(); + finishMovement(); } else if (key == 'k' || key == Key_Up) { if (m_submode == NoSubMode || m_submode == ZSubMode || m_submode == CapitalZSubMode || m_submode == RegisterSubMode) { diff --git a/src/plugins/help/helpplugin.cpp b/src/plugins/help/helpplugin.cpp index da93cd67955..9e5fd1a8054 100644 --- a/src/plugins/help/helpplugin.cpp +++ b/src/plugins/help/helpplugin.cpp @@ -418,7 +418,7 @@ bool HelpPlugin::initialize(const QStringList &arguments, QString *error) cmd->setDefaultKeySequence(QKeySequence(tr("Ctrl++"))); connect(a, SIGNAL(triggered()), m_centralWidget, SLOT(zoomIn())); advancedMenu->addAction(cmd, Core::Constants::G_EDIT_FONT); - + a = new QAction(tr("Decrease Font Size"), this); cmd = am->registerAction(a, TextEditor::Constants::DECREASE_FONT_SIZE, modecontext); @@ -572,7 +572,6 @@ void HelpPlugin::extensionsInitialized() return; } - bool needsSetup = false; bool assistantInternalDocRegistered = false; QStringList documentationToRemove; QStringList filtersToRemove; @@ -601,12 +600,10 @@ void HelpPlugin::extensionsInitialized() QHelpEngineCore hc(m_helpEngine->collectionFile()); hc.setupData(); foreach (const QString &ns, documentationToRemove) { - if (hc.unregisterDocumentation(ns)) - needsSetup = true; + hc.unregisterDocumentation(ns); } foreach (const QString &filter, filtersToRemove) { - if (hc.removeCustomFilter(filter)) - needsSetup = true; + hc.removeCustomFilter(filter); } if (!assistantInternalDocRegistered) { @@ -619,38 +616,46 @@ void HelpPlugin::extensionsInitialized() #endif if (!hc.registerDocumentation(qchFileName)) qDebug() << qPrintable(hc.error()); - needsSetup = true; } } - QLatin1String key("UnfilteredFilterInserted"); - int i = m_helpEngine->customValue(key).toInt(); - if (i != 1) { - { - QHelpEngineCore hc(m_helpEngine->collectionFile()); - hc.setupData(); - hc.addCustomFilter(tr("Unfiltered"), QStringList()); - hc.setCustomValue(key, 1); + const QLatin1String weAddedFilterKey("UnfilteredFilterInserted"); + const QLatin1String previousFilterNameKey("UnfilteredFilterName"); + int i = m_helpEngine->customValue(weAddedFilterKey).toInt(); + const QString filterName = tr("Unfiltered"); + if (i == 1) { // we added a filter at some point + // remove previously added filter + QHelpEngineCore hc(m_helpEngine->collectionFile()); + hc.setupData(); + QString previousFilterName = hc.customValue(previousFilterNameKey).toString(); + if (!previousFilterName.isEmpty()) { // we noted down the name of the previously added filter + hc.removeCustomFilter(previousFilterName); + } + if (previousFilterName != filterName) { // potentially remove a filter with new name + hc.removeCustomFilter(filterName); } - bool blocked = m_helpEngine->blockSignals(true); - m_helpEngine->setCurrentFilter(tr("Unfiltered")); - m_helpEngine->blockSignals(blocked); - needsSetup = true; } + { + QHelpEngineCore hc(m_helpEngine->collectionFile()); + hc.setupData(); + hc.addCustomFilter(filterName, QStringList()); + hc.setCustomValue(weAddedFilterKey, 1); + hc.setCustomValue(previousFilterNameKey, filterName); + } + bool blocked = m_helpEngine->blockSignals(true); + m_helpEngine->setCurrentFilter(filterName); + m_helpEngine->blockSignals(blocked); QString addedDocs = m_helpEngine->customValue(QLatin1String("AddedDocs")).toString(); if (!addedDocs.isEmpty()) { QStringList documentationToAdd = addedDocs.split(";"); - foreach(QString item, documentationToAdd) { - needsSetup = true; + foreach (QString item, documentationToAdd) m_helpEngine->registerDocumentation(item); - } m_helpEngine->removeCustomValue(QLatin1String("AddedDocs")); } - if (needsSetup) - m_helpEngine->setupData(); + m_helpEngine->setupData(); updateFilterComboBox(); m_bookmarkManager->setupBookmarkModels(); @@ -662,7 +667,7 @@ void HelpPlugin::extensionsInitialized() font = qVariantValue(m_helpEngine->customValue(QLatin1String("font"), font)); - + webSettings->setFontFamily(QWebSettings::StandardFont, font.family()); webSettings->setFontSize(QWebSettings::DefaultFontSize, font.pointSize()); #endif diff --git a/src/plugins/projectexplorer/environmenteditmodel.cpp b/src/plugins/projectexplorer/environmenteditmodel.cpp index 422c8328c26..b34a7d64b22 100644 --- a/src/plugins/projectexplorer/environmenteditmodel.cpp +++ b/src/plugins/projectexplorer/environmenteditmodel.cpp @@ -234,15 +234,21 @@ int EnvironmentModel::findInResultInsertPosition(const QString &name) const bool EnvironmentModel::setData(const QModelIndex &index, const QVariant &value, int role) { if (role == Qt::EditRole && index.isValid()) { + // ignore changes to already set values: + if (data(index, role) == value) + return true; + if (index.column() == 0) { //fail if a variable with the same name already exists #ifdef Q_OS_WIN - if (findInChanges(value.toString().toUpper()) != -1) - return false; + const QString &newName = value.toString().toUpper(); #else - if (findInChanges(value.toString()) != -1) - return false; + const QString &newName = value.toString(); #endif + + if (findInChanges(newName) != -1) + return false; + EnvironmentItem old("", ""); if (m_mergedEnvironments) { int pos = findInChanges(indexToVariable(index)); @@ -256,11 +262,7 @@ bool EnvironmentModel::setData(const QModelIndex &index, const QVariant &value, } else { old = m_items.at(index.row()); } -#ifdef Q_OS_WIN - const QString &newName = value.toString().toUpper(); -#else - const QString &newName = value.toString(); -#endif + if (changes(old.name)) removeVariable(old.name); old.name = newName; diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index 549d0ce3508..1693c398df7 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -2006,17 +2006,15 @@ void ProjectExplorerPlugin::populateRunConfigurationMenu() foreach (const Project *pro, d->m_session->projects()) { foreach (RunConfiguration *runConfiguration, pro->runConfigurations()) { - if (runConfiguration->isEnabled()) { - const QString title = QString("%1 (%2)").arg(pro->name(), runConfiguration->name()); - QAction *act = new QAction(title, d->m_runConfigurationActionGroup); - act->setCheckable(true); - act->setData(qVariantFromValue(runConfiguration)); - act->setChecked(runConfiguration == activeRunConfiguration); - d->m_runConfigurationMenu->addAction(act); - if (debug) - qDebug() << "RunConfiguration" << runConfiguration << "project:" << pro->name() - << "active:" << (runConfiguration == activeRunConfiguration); - } + const QString title = QString("%1 (%2)").arg(pro->name(), runConfiguration->name()); + QAction *act = new QAction(title, d->m_runConfigurationActionGroup); + act->setCheckable(true); + act->setData(qVariantFromValue(runConfiguration)); + act->setChecked(runConfiguration == activeRunConfiguration); + d->m_runConfigurationMenu->addAction(act); + if (debug) + qDebug() << "RunConfiguration" << runConfiguration << "project:" << pro->name() + << "active:" << (runConfiguration == activeRunConfiguration); } } diff --git a/src/plugins/projectexplorer/projectwizardpage.ui b/src/plugins/projectexplorer/projectwizardpage.ui index 6773a3da3a7..89d15be8683 100644 --- a/src/plugins/projectexplorer/projectwizardpage.ui +++ b/src/plugins/projectexplorer/projectwizardpage.ui @@ -65,10 +65,13 @@ Qt::Vertical + + QSizePolicy::Fixed + - 20 - 40 + 0 + 10 @@ -92,8 +95,8 @@ 0 0 - 601 - 154 + 611 + 305 diff --git a/src/plugins/qt4projectmanager/qt-s60/s60devices.cpp b/src/plugins/qt4projectmanager/qt-s60/s60devices.cpp index 9207460cb02..d77db8e0741 100644 --- a/src/plugins/qt4projectmanager/qt-s60/s60devices.cpp +++ b/src/plugins/qt4projectmanager/qt-s60/s60devices.cpp @@ -138,22 +138,56 @@ bool S60Devices::read() #endif } +// Windows: Get list of paths containing common program data +// as pointed to by environment. +static QStringList commonProgramFilesPaths() +{ + const QChar pathSep = QLatin1Char(';'); + QStringList rc; + const QByteArray commonX86 = qgetenv("CommonProgramFiles(x86)"); + if (!commonX86.isEmpty()) + rc += QString::fromLocal8Bit(commonX86).split(pathSep); + const QByteArray common = qgetenv("CommonProgramFiles"); + if (!common.isEmpty()) + rc += QString::fromLocal8Bit(common).split(pathSep); + return rc; +} + // Windows EPOC +// Find the "devices.xml" file containing the SDKs +static QString devicesXmlFile(QString *errorMessage) +{ + const QString devicesFile = QLatin1String(SYMBIAN_DEVICES_FILE); + // Try registry + const QSettings settings(QLatin1String(SYMBIAN_SDKS_KEY), QSettings::NativeFormat); + const QString devicesRegistryXmlPath = settings.value(QLatin1String(SYMBIAN_PATH_KEY)).toString(); + if (!devicesRegistryXmlPath.isEmpty()) + return QDir::cleanPath(devicesRegistryXmlPath + QLatin1Char('/') + devicesFile); + // Look up common program data files + const QString symbianDir = QLatin1String("/symbian/"); + foreach(const QString &commonDataDir, commonProgramFilesPaths()) { + const QFileInfo fi(commonDataDir + symbianDir + devicesFile); + if (fi.isFile()) + return fi.absoluteFilePath(); + } + // None found... + *errorMessage = QString::fromLatin1("The file '%1' containing the device SDK configuration " + "could not be found looking at the registry key " + "%2\\%3 or the common program data directories."). + arg(devicesFile, QLatin1String(SYMBIAN_SDKS_KEY), + QLatin1String(SYMBIAN_PATH_KEY)); + return QString(); +} + bool S60Devices::readWin() { - // Check the windows registry via QSettings for devices.xml path - QSettings settings(SYMBIAN_SDKS_KEY, QSettings::NativeFormat); - QString devicesXmlPath = settings.value(SYMBIAN_PATH_KEY).toString(); - if (devicesXmlPath.isEmpty()) { - m_errorString = "Could not find installed SDKs in registry."; + const QString devicesXmlPath = devicesXmlFile(&m_errorString); + if (devicesXmlPath.isEmpty()) return false; - } - - devicesXmlPath += QLatin1String("/") + QLatin1String(SYMBIAN_DEVICES_FILE); QFile devicesFile(devicesXmlPath); - if (!devicesFile.open(QIODevice::ReadOnly)) { - m_errorString = QString("Could not read devices file at %1.").arg(devicesXmlPath); + if (!devicesFile.open(QIODevice::ReadOnly|QIODevice::Text)) { + m_errorString = QString::fromLatin1("Could not open the devices file %1: %2").arg(devicesXmlPath, devicesFile.errorString()); return false; } QXmlStreamReader xml(&devicesFile); @@ -192,10 +226,10 @@ bool S60Devices::readWin() } devicesFile.close(); if (xml.hasError()) { - m_errorString = xml.errorString(); + m_errorString = QString::fromLatin1("Syntax error in devices file %1: %2"). + arg(devicesXmlPath, xml.errorString()); return false; } - return true; } diff --git a/src/plugins/qt4projectmanager/qt-s60/s60devicespreferencepane.cpp b/src/plugins/qt4projectmanager/qt-s60/s60devicespreferencepane.cpp index 81023915f02..c1b616eb772 100644 --- a/src/plugins/qt4projectmanager/qt-s60/s60devicespreferencepane.cpp +++ b/src/plugins/qt4projectmanager/qt-s60/s60devicespreferencepane.cpp @@ -72,8 +72,26 @@ void S60DevicesWidget::updateDevicesList() item->setToolTip(1, tooltip); m_ui->list->addTopLevelItem(item); } + const QString errorString = m_devices->errorString(); + if (errorString.isEmpty()) { + clearErrorLabel(); + } else { + setErrorLabel(errorString); + } } +void S60DevicesWidget::setErrorLabel(const QString& t) +{ + m_ui->errorLabel->setText(t); + m_ui->errorLabel->setVisible(true); +} + +void S60DevicesWidget::clearErrorLabel() +{ + m_ui->errorLabel->setVisible(false); +} + + S60DevicesPreferencePane::S60DevicesPreferencePane(S60Devices *devices, QObject *parent) : Core::IOptionsPage(parent), m_widget(0), @@ -121,3 +139,5 @@ void S60DevicesPreferencePane::apply() void S60DevicesPreferencePane::finish() { } + + diff --git a/src/plugins/qt4projectmanager/qt-s60/s60devicespreferencepane.h b/src/plugins/qt4projectmanager/qt-s60/s60devicespreferencepane.h index 3378dcd3169..92efc14e499 100644 --- a/src/plugins/qt4projectmanager/qt-s60/s60devicespreferencepane.h +++ b/src/plugins/qt4projectmanager/qt-s60/s60devicespreferencepane.h @@ -56,6 +56,9 @@ private slots: private: void updateDevicesList(); + void setErrorLabel(const QString&); + void clearErrorLabel(); + Ui::S60DevicesPreferencePane *m_ui; S60Devices *m_devices; }; diff --git a/src/plugins/qt4projectmanager/qt-s60/s60devicespreferencepane.ui b/src/plugins/qt4projectmanager/qt-s60/s60devicespreferencepane.ui index f739161007a..1693e3e8a5b 100644 --- a/src/plugins/qt4projectmanager/qt-s60/s60devicespreferencepane.ui +++ b/src/plugins/qt4projectmanager/qt-s60/s60devicespreferencepane.ui @@ -15,7 +15,7 @@ - + Installed S60 SDKs: @@ -50,6 +50,22 @@ + + + + background-color: red; + + + Error + + + true + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + + diff --git a/src/plugins/qt4projectmanager/qtmodulesinfo.cpp b/src/plugins/qt4projectmanager/qtmodulesinfo.cpp index 90a3f28f4d5..92f8e565c4a 100644 --- a/src/plugins/qt4projectmanager/qtmodulesinfo.cpp +++ b/src/plugins/qt4projectmanager/qtmodulesinfo.cpp @@ -51,67 +51,67 @@ const itemVectorType itemVector() { static const struct item items[] = { {"core", - QCoreApplication::translate("QtModulesInfo", "QtCore Module"), + QLatin1String("QtCore"), QCoreApplication::translate("QtModulesInfo", "Core non-GUI classes used by other modules"), true}, {"gui", - QCoreApplication::translate("QtModulesInfo", "QtGui Module"), + QLatin1String("QtGui"), QCoreApplication::translate("QtModulesInfo", "Graphical user interface components"), true}, {"network", - QCoreApplication::translate("QtModulesInfo", "QtNetwork Module"), + QLatin1String("QtNetwork"), QCoreApplication::translate("QtModulesInfo", "Classes for network programming"), false}, {"opengl", - QCoreApplication::translate("QtModulesInfo", "QtOpenGL Module"), + QLatin1String("QtOpenGL"), QCoreApplication::translate("QtModulesInfo", "OpenGL support classes"), false}, {"sql", - QCoreApplication::translate("QtModulesInfo", "QtSql Module"), + QLatin1String("QtSql"), QCoreApplication::translate("QtModulesInfo", "Classes for database integration using SQL"), false}, {"script", - QCoreApplication::translate("QtModulesInfo", "QtScript Module"), + QLatin1String("QtScript"), QCoreApplication::translate("QtModulesInfo", "Classes for evaluating Qt Scripts"), false}, {"scripttools", - QCoreApplication::translate("QtModulesInfo", "QtScriptTools Module"), + QLatin1String("QtScriptTools"), QCoreApplication::translate("QtModulesInfo", "Additional Qt Script components"), false}, {"svg", - QCoreApplication::translate("QtModulesInfo", "QtSvg Module"), + QLatin1String("QtSvg"), QCoreApplication::translate("QtModulesInfo", "Classes for displaying the contents of SVG files"), false}, {"webkit", - QCoreApplication::translate("QtModulesInfo", "QtWebKit Module"), + QLatin1String("QtWebKit"), QCoreApplication::translate("QtModulesInfo", "Classes for displaying and editing Web content"), false}, {"xml", - QCoreApplication::translate("QtModulesInfo", "QtXml Module"), + QLatin1String("QtXml"), QCoreApplication::translate("QtModulesInfo", "Classes for handling XML"), false}, {"xmlpatterns", - QCoreApplication::translate("QtModulesInfo", "QtXmlPatterns Module"), + QLatin1String("QtXmlPatterns"), QCoreApplication::translate("QtModulesInfo", "An XQuery/XPath engine for XML and custom data models"), false}, {"phonon", - QCoreApplication::translate("QtModulesInfo", "Phonon Module"), + QLatin1String("Phonon"), QCoreApplication::translate("QtModulesInfo", "Multimedia framework classes"), false}, {"multimedia", - QCoreApplication::translate("QtModulesInfo", "QtMultimedia Module"), + QLatin1String("QtMultimedia"), QCoreApplication::translate("QtModulesInfo", "Classes for low-level multimedia functionality"), false}, {"qt3support", - QCoreApplication::translate("QtModulesInfo", "Qt3Support Module"), + QLatin1String("Qt3Support"), QCoreApplication::translate("QtModulesInfo", "Classes that ease porting from Qt 3 to Qt 4"), false}, {"testlib", - QCoreApplication::translate("QtModulesInfo", "QtTest Module"), + QLatin1String("QtTest"), QCoreApplication::translate("QtModulesInfo", "Tool classes for unit testing"), false}, {"dbus", - QCoreApplication::translate("QtModulesInfo", "QtDBus Module"), + QLatin1String("QtDBus"), QCoreApplication::translate("QtModulesInfo", "Classes for Inter-Process Communication using the D-Bus"), false} }; diff --git a/src/plugins/texteditor/completionwidget.cpp b/src/plugins/texteditor/completionwidget.cpp index e4f7c97b80e..7cdbac8577d 100644 --- a/src/plugins/texteditor/completionwidget.cpp +++ b/src/plugins/texteditor/completionwidget.cpp @@ -139,7 +139,16 @@ bool CompletionWidget::event(QEvent *e) bool forwardKeys = true; if (e->type() == QEvent::FocusOut) { - closeList(); + QModelIndex index; +#if defined(Q_OS_DARWIN) && ! defined(QT_MAC_USE_COCOA) + QFocusEvent *fe = static_cast(e); + if (fe->reason() == Qt::OtherFocusReason) { + // Qt/carbon workaround + // focus out is received before the key press event. + index = currentIndex(); + } +#endif + closeList(index); return true; } else if (e->type() == QEvent::KeyPress) { QKeyEvent *ke = static_cast(e); @@ -153,7 +162,8 @@ bool CompletionWidget::event(QEvent *e) case Qt::Key_Tab: case Qt::Key_Return: //independently from style, accept current entry if return is pressed - closeList(currentIndex()); + if (qApp->focusWidget() == this) + closeList(currentIndex()); return true; case Qt::Key_Up: if (currentIndex().row() == 0) { diff --git a/src/plugins/texteditor/texteditoractionhandler.cpp b/src/plugins/texteditor/texteditoractionhandler.cpp index 5043583a469..9da54ddc10c 100644 --- a/src/plugins/texteditor/texteditoractionhandler.cpp +++ b/src/plugins/texteditor/texteditoractionhandler.cpp @@ -362,9 +362,11 @@ void TextEditorActionHandler::gotoAction() { Locator::LocatorManager *locatorManager = Locator::LocatorManager::instance(); QTC_ASSERT(locatorManager, return); - const QString shortcut = TextEditorPlugin::instance()->lineNumberFilter()->shortcutString(); - const QString text = tr(" "); - locatorManager->show(shortcut + text, 2, text.length()-1); + QString locatorString = TextEditorPlugin::instance()->lineNumberFilter()->shortcutString(); + locatorString += QLatin1Char(' '); + const int selectionStart = locatorString.size(); + locatorString += tr(""); + locatorManager->show(locatorString, selectionStart, locatorString.size() - selectionStart); } void TextEditorActionHandler::printAction() diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index dafec2ef83b..b9ed42aa4b5 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -175,8 +175,7 @@ private slots: private: void dumpQAbstractItemHelper(QModelIndex &index); void dumpQAbstractItemModelHelper(QAbstractItemModel &m); - void dumpQDateTimeHelper(const QDateTime &d); - void dumpQFileHelper(const QString &name, bool exists); + void dumpQDateTimeHelper(const QDateTime &d, bool isNull); template void dumpQHashNodeHelper(QHash &hash); void dumpQImageHelper(const QImage &img); void dumpQImageDataHelper(QImage &img); @@ -458,10 +457,13 @@ static const QByteArray ptrToBa(const void *p, bool symbolicNull = true) QByteArray("0x") + QByteArray::number((quintptr) p, 16)); } -static const QByteArray generateQStringSpec(const QString &str) +static const QByteArray generateQStringSpec(const QString &str, bool isNull = false) { - return QByteArray("value='%',type='"NS"QString',numchild='0',valueencoded='2'") - << utfToBase64(str); + if (isNull) + return QByteArray("value=''' (null)',type='"NS"QString',numchild='0'"); + return + QByteArray("value='%',valueencoded='2',type='"NS"QString',numchild='0'") + << utfToBase64(str); } static const QByteArray generateQCharSpec(const QChar& ch) @@ -925,7 +927,7 @@ void tst_Debugger::dumpQChar() &c, NS"QChar", false); } -void tst_Debugger::dumpQDateTimeHelper(const QDateTime &d) +void tst_Debugger::dumpQDateTimeHelper(const QDateTime &d, bool isNull) { QByteArray value; if (d.isNull()) @@ -944,10 +946,10 @@ void tst_Debugger::dumpQDateTimeHelper(const QDateTime &d) << value << generateBoolSpec(d.isNull()) << generateLongSpec((d.toTime_t())) - << generateQStringSpec(d.toString()) - << generateQStringSpec(d.toString(Qt::ISODate)) - << generateQStringSpec(d.toString(Qt::SystemLocaleDate)) - << generateQStringSpec(d.toString(Qt::LocaleDate)); + << generateQStringSpec(d.toString(), isNull) + << generateQStringSpec(d.toString(Qt::ISODate), isNull) + << generateQStringSpec(d.toString(Qt::SystemLocaleDate), isNull) + << generateQStringSpec(d.toString(Qt::LocaleDate), isNull); testDumper(expected, &d, NS"QDateTime", true); } @@ -955,11 +957,11 @@ void tst_Debugger::dumpQDateTime() { // Case 1: Null object. QDateTime d; - dumpQDateTimeHelper(d); + dumpQDateTimeHelper(d, true); // Case 2: Non-null object. d = QDateTime::currentDateTime(); - dumpQDateTimeHelper(d); + dumpQDateTimeHelper(d, false); } void tst_Debugger::dumpQDir() @@ -983,30 +985,35 @@ void tst_Debugger::dumpQDir() &dir, NS"QDir", true); } -void tst_Debugger::dumpQFileHelper(const QString &name, bool exists) -{ - QFile file(name); - QByteArray filenameAsBase64 = utfToBase64(name); - testDumper(QByteArray("value='%',valueencoded='2',type='$T',numchild='2'," - "children=[{name='fileName',value='%',type='"NS"QString'," - "numchild='0',valueencoded='2'}," - "{name='exists',value=%,type='bool',numchild='0'}]") - << filenameAsBase64 << filenameAsBase64 << boolToVal(exists), - &file, NS"QFile", true); -} void tst_Debugger::dumpQFile() { // Case 1: Empty file name => Does not exist. - dumpQFileHelper("", false); + QFile file1(""); + testDumper(QByteArray("value='',valueencoded='2',type='$T',numchild='2'," + "children=[{name='fileName',value='',valueencoded='2',type='"NS"QString'," + "numchild='0'}," + "{name='exists',value='false',type='bool',numchild='0'}]"), + &file1, NS"QFile", true); // Case 2: File that is known to exist. - QTemporaryFile file; - file.open(); - dumpQFileHelper(file.fileName(), true); + QTemporaryFile file2; + file2.open(); + testDumper(QByteArray("value='%',valueencoded='2',type='$T',numchild='2'," + "children=[{name='fileName',value='%',valueencoded='2',type='"NS"QString'," + "numchild='0'}," + "{name='exists',value='true',type='bool',numchild='0'}]") + << utfToBase64(file2.fileName()) << utfToBase64(file2.fileName()), + &file2, NS"QFile", true); // Case 3: File with a name that most likely does not exist. - dumpQFileHelper("jfjfdskjdflsdfjfdls", false); + QFile file3("jfjfdskjdflsdfjfdls"); + testDumper(QByteArray("value='%',valueencoded='2',type='$T',numchild='2'," + "children=[{name='fileName',value='%',valueencoded='2',type='"NS"QString'," + "numchild='0'}," + "{name='exists',value='false',type='bool',numchild='0'}]") + << utfToBase64(file3.fileName()) << utfToBase64(file3.fileName()), + &file3, NS"QFile", true); } void tst_Debugger::dumpQFileInfo() @@ -1062,7 +1069,7 @@ void tst_Debugger::dumpQFileInfo() expected <<= generateQStringSpec(fi.canonicalPath()); expected <<= generateQStringSpec(fi.canonicalFilePath()); expected <<= generateQStringSpec(fi.completeBaseName()); - expected <<= generateQStringSpec(fi.completeSuffix()); + expected <<= generateQStringSpec(fi.completeSuffix(), true); expected <<= generateQStringSpec(fi.baseName()); #ifdef Q_OS_MACX expected <<= generateBoolSpec(fi.isBundle()); @@ -2254,7 +2261,7 @@ void tst_Debugger::dumpQSharedPointer() void tst_Debugger::dumpQString() { QString s; - testDumper("value='',valueencoded='2',type='$T',numchild='0'", + testDumper("value=''' (null)',type='$T',numchild='0'", &s, NS"QString", false); s = "abc"; testDumper("value='YQBiAGMA',valueencoded='2',type='$T',numchild='0'", diff --git a/tests/auto/debugger/tst_gdb.cpp b/tests/auto/debugger/tst_gdb.cpp index 1aa484c570f..0fa27658be6 100644 --- a/tests/auto/debugger/tst_gdb.cpp +++ b/tests/auto/debugger/tst_gdb.cpp @@ -1534,7 +1534,7 @@ void dump_QObject() /* B */ QObject ob; /* D */ ob.setObjectName("An Object"); /* E */ QObject::connect(&ob, SIGNAL(destroyed()), qApp, SLOT(quit())); - /* F */ QObject::disconnect(&ob, SIGNAL(destroyed()), qApp, SLOT(quit())); +// /* F */ QObject::disconnect(&ob, SIGNAL(destroyed()), qApp, SLOT(quit())); /* G */ ob.setObjectName("A renamed Object"); /* H */ (void) 0; } @@ -1554,7 +1554,7 @@ void tst_Gdb::dump_QObject() run("A","{iname='local.ob',name='ob'," "type='"NS"QObject',value=''," "numchild='0'}"); - next(3); + next(4); run("F","{iname='local.ob',name='ob',type='"NS"QObject',valueencoded='7'," "value='41006e0020004f0062006a00650063007400',numchild='4',children=[" diff --git a/tests/auto/fakevim/main.cpp b/tests/auto/fakevim/main.cpp index d3e71f5032b..5c692fc5eaf 100644 --- a/tests/auto/fakevim/main.cpp +++ b/tests/auto/fakevim/main.cpp @@ -56,26 +56,27 @@ public slots: private slots: // command mode + void command_Cxx_down_dot(); + void command_Gyyp(); + void command_J(); + void command_Yp(); void command_cc(); void command_cw(); - void command_dw(); void command_dd(); void command_dd_2(); + void command_dfx_down(); void command_dollar(); void command_down(); - void command_dfx_down(); - void command_Cxx_down_dot(); + void command_dw(); void command_e(); void command_i(); void command_left(); + void command_ma_yank(); void command_r(); void command_right(); void command_up(); void command_w(); void command_yyp(); - void command_Yp(); - void command_Gyyp(); - void command_ma_yank(); // special tests void test_i_cw_i(); @@ -525,6 +526,21 @@ return; // FIXME: not in sync with Gui behaviour? check("iaa" + escape, l[0] + "\nxya@ay" + lmid(1)); } +void tst_FakeVim::command_J() +{ + setup(); + move("4j4l", "int @main"); + + check("J", lmid(0, 5) + "@ " + lmid(5)); + check("u", lmid(0, 4) + "\nint @main(int argc, char *argv[])\n" + lmid(5)); + checkEx("redo", lmid(0, 5) + "@ " + lmid(5)); + +return; // FIXME: not in sync with Gui behaviour? + check("3J", lmid(0, 5) + " " + lmid(5, 1) + "@" + lmid(6).mid(3)); + check("u", lmid(0, 4) + "\nint @main(int argc, char *argv[])\n" + lmid(5)); + checkEx("redo", lmid(0, 5) + "@ " + lmid(5)); +} + /*