Also translating the window title

This commit is contained in:
Pierre Pronchery 2012-05-20 11:18:01 +00:00
parent 72fe4a1f19
commit c09f1c16e5
3 changed files with 37 additions and 29 deletions

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mixer 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-03-21 18:05+0100\n"
"POT-Creation-Date: 2012-05-20 13:15+0200\n"
"PO-Revision-Date: 2010-04-23 04:08+0200\n"
"Last-Translator: Pierre Pronchery <khorben@defora.org>\n"
"Language-Team: French\n"
@ -20,106 +20,114 @@ msgstr ""
msgid ""
"Usage: mixer [-H|-T|-V][-d device][-x]\n"
" -H\tShow the classes next to each other\n"
" -V\tShow the classes in separate tabs\n"
" -T\tShow the classes in separate tabs\n"
" -V\tShow the classes on top of each other\n"
" -d\tThe mixer device to use\n"
" -x\tEnable embedded mode\n"
msgstr ""
"Usage: mixer [-H|-T|-V][-d périphérique][-x]\n"
" -H\tAffichage horizontal des catégories\n"
" -T\tAffichage en tabs des catégories\n"
" -T\tAffichage par tabs des catégories\n"
" -V\tAffichage vertical des catégories\n"
" -d\tChoix du périphérique sonore\n"
" -x\tActiver le mode embarqué\n"
#: ../src/mixer.c:142
#: ../src/mixer.c:144
msgid "_Properties"
msgstr "_Propriétés"
#: ../src/mixer.c:144
#: ../src/mixer.c:146
msgid "_Close"
msgstr "_Fermer"
#: ../src/mixer.c:151
#: ../src/mixer.c:153
msgid "_All"
msgstr "_Tous"
#: ../src/mixer.c:154
#: ../src/mixer.c:156
msgid "_Outputs"
msgstr "_Sorties"
#: ../src/mixer.c:156
#: ../src/mixer.c:158
msgid "_Inputs"
msgstr "_Entrées"
#: ../src/mixer.c:158
#: ../src/mixer.c:160
msgid "_Record"
msgstr "En_registrement"
#: ../src/mixer.c:160
#: ../src/mixer.c:162
msgid "Mo_nitor"
msgstr "Sui_vi"
#: ../src/mixer.c:162
#: ../src/mixer.c:164
msgid "_Equalization"
msgstr "É_galisation"
#: ../src/mixer.c:164
#: ../src/mixer.c:166
msgid "Mi_x"
msgstr "Mi_x"
#: ../src/mixer.c:166
#: ../src/mixer.c:168
msgid "_Modem"
msgstr "_Modem"
#: ../src/mixer.c:174
#: ../src/mixer.c:176
msgid "_About"
msgstr "À _propos"
#: ../src/mixer.c:180
#: ../src/mixer.c:182
msgid "_File"
msgstr "_Fichier"
#: ../src/mixer.c:181
#: ../src/mixer.c:183
msgid "_View"
msgstr "_Vue"
#: ../src/mixer.c:182
#: ../src/mixer.c:184
msgid "_Help"
msgstr "_Aide"
#: ../src/mixer.c:338
#: ../src/mixer.c:281
msgid "Mixer"
msgstr "Contrôle du volume"
#: ../src/mixer.c:340
msgid "All"
msgstr "Tous"
#: ../src/mixer.c:615
#: ../src/mixer.c:617
msgid "Mute"
msgstr "Muet"
#: ../src/mixer.c:692
#: ../src/mixer.c:694
msgid "Bind"
msgstr "Lier"
#: ../src/mixer.c:889
#: ../src/mixer.c:887
msgid "Volume mixer for the DeforaOS desktop"
msgstr "Contrôle du volume pour l'environnement DeforaOS"
#: ../src/mixer.c:893
msgid "translator-credits"
msgstr "Pierre Pronchery <khorben@defora.org>"
#: ../src/mixer.c:922
#: ../src/mixer.c:926
msgid "Mixer properties"
msgstr "Propriétés du mixer"
msgstr "Propriétés du contrôleur"
#: ../src/mixer.c:938
#: ../src/mixer.c:942
msgid "Name: "
msgstr "Nom : "
#: ../src/mixer.c:948
#: ../src/mixer.c:952
msgid "Version: "
msgstr "Version : "
#: ../src/mixer.c:958
#: ../src/mixer.c:962
msgid "Device: "
msgstr "Carte : "
#: ../src/mixer.c:1041 ../src/mixer.c:1046
#: ../src/mixer.c:1045 ../src/mixer.c:1050
msgid "Error"
msgstr "Erreur"

View File

@ -8,7 +8,7 @@ CPPFLAGS?=
CFLAGSF = -W `pkg-config --cflags libDesktop`
CFLAGS = -Wall -g -O2 -pedantic
LDFLAGSF= `pkg-config --libs libDesktop`
LDFLAGS =
LDFLAGS =
RM ?= rm -f
LN ?= ln -f
MKDIR ?= mkdir -p

View File

@ -278,7 +278,7 @@ Mixer * mixer_new(char const * device, MixerLayout layout, gboolean embedded)
gtk_window_set_icon_name(GTK_WINDOW(mixer->window),
"stock_volume");
#endif
gtk_window_set_title(GTK_WINDOW(mixer->window), PACKAGE);
gtk_window_set_title(GTK_WINDOW(mixer->window), _("Mixer"));
g_signal_connect_swapped(mixer->window, "delete-event",
G_CALLBACK(on_closex), mixer);
}