aboutsummaryrefslogtreecommitdiff
path: root/nls/fr_FR
diff options
context:
space:
mode:
Diffstat (limited to 'nls/fr_FR')
-rw-r--r--nls/fr_FR/.cvsignore5
-rw-r--r--nls/fr_FR/Basemenu.m2
-rw-r--r--nls/fr_FR/Configmenu.m18
-rw-r--r--nls/fr_FR/Makefile.am32
-rw-r--r--nls/fr_FR/Windowmenu.m22
-rw-r--r--nls/fr_FR/common.m22
-rw-r--r--nls/fr_FR/fluxbox.m6
-rw-r--r--nls/fr_FR/main.m4
8 files changed, 70 insertions, 41 deletions
diff --git a/nls/fr_FR/.cvsignore b/nls/fr_FR/.cvsignore
new file mode 100644
index 0000000..4120fef
--- /dev/null
+++ b/nls/fr_FR/.cvsignore
@@ -0,0 +1,5 @@
1.cvsignore
2Makefile
3Makefile.in
4*.cat
5*.m
diff --git a/nls/fr_FR/Basemenu.m b/nls/fr_FR/Basemenu.m
index 16bc86a..4de3b99 100644
--- a/nls/fr_FR/Basemenu.m
+++ b/nls/fr_FR/Basemenu.m
@@ -1,4 +1,4 @@
1$set 2 #Basemenu 1$set 2 #Basemenu
2 2
3$ #BlackboxMenu 3$ #BlackboxMenu
4# Menu de Blackbox 4# Menu de Fluxbox
diff --git a/nls/fr_FR/Configmenu.m b/nls/fr_FR/Configmenu.m
index b9ee923..d38e0bb 100644
--- a/nls/fr_FR/Configmenu.m
+++ b/nls/fr_FR/Configmenu.m
@@ -37,12 +37,20 @@ $ #TopBottom
37$ #BottomTop 37$ #BottomTop
38# De bas en haut 38# De bas en haut
39$ #Tabs 39$ #Tabs
40# Use Tabs 40# Utiliser les onglets
41$ #Icons 41$ #Icons
42# Use Icons 42# Utiliser les icones
43$ #TabPlacement 43$ #TabPlacement
44# Tab Placement 44# Emplacement des onglets
45$ #TabRotateVertical 45$ #TabRotateVertical
46# Rotate Vertical Tabs 46# Rotation verticale des onglets
47$ #SemiSloppyFocus 47$ #SemiSloppyFocus
48# Semi Sloppy Focus 48# Focus semi-stupide
49$ #MaxOverSlit
50# Maximisez au dessus du Slit
51$ #SloppyWindowGrouping
52# Groupement des fenêtres stupide
53$ #WorkspaceWarping
54# Workspace Warping
55$ #DesktopWheeling
56# Desktop Wheeling
diff --git a/nls/fr_FR/Makefile.am b/nls/fr_FR/Makefile.am
index 91c9f01..4f7f43f 100644
--- a/nls/fr_FR/Makefile.am
+++ b/nls/fr_FR/Makefile.am
@@ -1,33 +1,37 @@
1# nls/fr_FR/Makefile.am for Blackbox-0.61.x - an X11 Window Manager 1# nls/fr_FR/Makefile.am for Fluxbox - an X11 Window Manager
2
3THE_LANG = fr_FR
4CODESET = ISO-8859-15
2 5
3NLSTEST = @NLS@ 6NLSTEST = @NLS@
4CLEANFILES = blackbox.cat 7CLEANFILES = fluxbox.cat
5MAINTAINERCLEANFILES = Makefile.in Translation.m 8MAINTAINERCLEANFILES = Makefile.in Translation.m
6MFILES = BaseDisplay.m Basemenu.m Configmenu.m Icon.m Image.m Screen.m Slit.m Toolbar.m Window.m Windowmenu.m Workspace.m Workspacemenu.m blackbox.m common.m main.m bsetroot.m 9MFILES = BaseDisplay.m Basemenu.m Configmenu.m Icon.m Image.m Screen.m Slit.m Toolbar.m Window.m Windowmenu.m Workspace.m Workspacemenu.m fluxbox.m common.m main.m bsetroot.m
7EXTRA_DIST=$(MFILES) 10EXTRA_DIST=$(MFILES)
8 11
9all-local: blackbox.cat 12all-local: fluxbox.cat
10install-data-local: blackbox.cat 13install-data-local: fluxbox.cat
11 @if test x$(NLSTEST) = "x-DNLS"; then \ 14 @if test x$(NLSTEST) = "x-DNLS"; then \
12 echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/fr_FR"; \ 15 echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)"; \
13 $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/fr_FR; \ 16 $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \
14 $(INSTALL_DATA) blackbox.cat $(DESTDIR)$(pkgdatadir)/nls/fr_FR; \ 17 $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \
15 rm -f $(DESTDIR)$(pkgdatadir)/nls/fr; \ 18 rm -f $(DESTDIR)$(pkgdatadir)/nls/fr; \
16 ln -fs fr_FR $(DESTDIR)$(pkgdatadir)/nls/fr; \ 19 ln -fs $(THE_LANG) $(DESTDIR)$(pkgdatadir)/nls/fr; \
17 fi 20 fi
18uninstall-local: 21uninstall-local:
19 @if test x$(NLSTEST) = "x-DNLS"; then \ 22 @if test x$(NLSTEST) = "x-DNLS"; then \
20 rm -f $(DESTDIR)$(pkgdatadir)/nls/fr_FR/blackbox.cat; \ 23 rm -f $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)/fluxbox.cat; \
21 rm -f $(DESTDIR)$(pkgdatadir)/nls/fr; \ 24 rm -f $(DESTDIR)$(pkgdatadir)/nls/fr; \
22 rmdir $(DESTDIR)$(pkgdatadir)/nls/fr_FR; \ 25 rmdir $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \
23 fi 26 fi
24 27
25Translation.m: $(MFILES) 28Translation.m: $(MFILES)
26 @if test x$(NLSTEST) = "x-DNLS"; then \ 29 @if test x$(NLSTEST) = "x-DNLS"; then \
27 awk -f ../convert.awk output=Translation.m $(MFILES); \ 30 rm -f Translation.m; \
31 awk -f ../convert.awk codeset=$(CODESET) output=Translation.m $(MFILES); \
28 fi 32 fi
29 33
30blackbox.cat: Translation.m 34fluxbox.cat: Translation.m
31 @if test x$(NLSTEST) = "x-DNLS"; then \ 35 @if test x$(NLSTEST) = "x-DNLS"; then \
32 $(gencat_cmd) blackbox.cat Translation.m; \ 36 LANG=$(THE_LANG) $(gencat_cmd) fluxbox.cat Translation.m; \
33 fi 37 fi
diff --git a/nls/fr_FR/Windowmenu.m b/nls/fr_FR/Windowmenu.m
index c769696..3aa156e 100644
--- a/nls/fr_FR/Windowmenu.m
+++ b/nls/fr_FR/Windowmenu.m
@@ -1,20 +1,24 @@
1$set 10 #Windowmenu 1$set 10 #Windowmenu
2 2
3$ #SendTo 3$ #SendTo
4# Redirige vers... 4# Envoyer vers ...
5$ #SendGroupTo
6# Envoyer le groupe vers ...
5$ #Shade 7$ #Shade
6# Ombrage 8# Ombrer
7$ #Iconify 9$ #Iconify
8# Iconifie 10# Iconifier
9$ #Maximize 11$ #Maximize
10# Maximize 12# Maximiser
11$ #Raise 13$ #Raise
12# Résurrection 14# Lever
13$ #Lower 15$ #Lower
14# Réduit 16# Baisser
15$ #Stick 17$ #Stick
16# Epingle 18# Coller
17$ #KillClient 19$ #KillClient
18# Massacre 20# Massacrer
19$ #Close 21$ #Close
20# Ferme 22# Fermer
23$ #Tab
24# Onglet
diff --git a/nls/fr_FR/common.m b/nls/fr_FR/common.m
index d98ea24..1a5352d 100644
--- a/nls/fr_FR/common.m
+++ b/nls/fr_FR/common.m
@@ -34,25 +34,25 @@ $ #PlacementCenterRight
34$ #PlacementBottomRight 34$ #PlacementBottomRight
35# En bas à droite 35# En bas à droite
36$ #PlacementLeftTop 36$ #PlacementLeftTop
37# Left Top 37# A gauche en Haut
38$ #PlacementLeftCenter 38$ #PlacementLeftCenter
39# Left Center 39# A gauche au centre
40$ #PlacementLeftBottom 40$ #PlacementLeftBottom
41# Left Bottom 41# A gauche en bas
42$ #PlacementRightTop 42$ #PlacementRightTop
43# Right Top 43# A droite en haut
44$ #PlacementRightCenter 44$ #PlacementRightCenter
45# Right Center 45# A droite au centre
46$ #PlacementRightBottom 46$ #PlacementRightBottom
47# Right Bottom 47# A droite en bas
48$ #PlacementTopRelative 48$ #PlacementTopRelative
49# Top Relative 49# En haut (relatif)
50$ #PlacementBottomRelative 50$ #PlacementBottomRelative
51# Bottom Relative 51# En bas (relatif)
52$ #PlacementLeftRelative 52$ #PlacementLeftRelative
53# Left Relative 53# A gauche (relatif)
54$ #PlacementRightRelative 54$ #PlacementRightRelative
55# Right Relative 55# A droite (relatif)
56 56
57$ #AutoHide 57$ #AutoHide
58# Auto hide 58# Masquer automatiquement
diff --git a/nls/fr_FR/fluxbox.m b/nls/fr_FR/fluxbox.m
new file mode 100644
index 0000000..4da9e7a
--- /dev/null
+++ b/nls/fr_FR/fluxbox.m
@@ -0,0 +1,6 @@
1$set 13 #blackbox
2
3$ #NoManagableScreens
4# Blackbox::Blackbox: Aucun écran exploitable n'a été trouvé, annulation\n
5$ #MapRequest
6# Blackbox::process_event: MapRequest pour 0x%lx\n
diff --git a/nls/fr_FR/main.m b/nls/fr_FR/main.m
index 8844f63..1c60e58 100644
--- a/nls/fr_FR/main.m
+++ b/nls/fr_FR/main.m
@@ -7,10 +7,12 @@ $ #DISPLAYRequiresArg
7$ #WarnDisplaySet 7$ #WarnDisplaySet
8# Attention: impossible d'attribuer la variable d'environnement 'DISPLAY'\n 8# Attention: impossible d'attribuer la variable d'environnement 'DISPLAY'\n
9$ #Usage 9$ #Usage
10# Fluxbox %s: (c) 2001 Henrik Kinnunen\n\n\ 10# Fluxbox %s: (c) %s Henrik Kinnunen\n\n\
11 -display <chaîne>\t\tutilise la connexion à l'affichage.\n\ 11 -display <chaîne>\t\tutilise la connexion à l'affichage.\n\
12 -rc <chaîne>\t\t\tutilise un autre fichier de configuration.\n\ 12 -rc <chaîne>\t\t\tutilise un autre fichier de configuration.\n\
13 -version\t\t\taffiche la version et quitte.\n\ 13 -version\t\t\taffiche la version et quitte.\n\
14 -info\t\t\t\tdisplay some useful information.\n\
15 -log <filename>\t\t\tlog output to file.\n\
14 -help\t\t\t\taffiche ce texte d'aide et quitte.\n\n 16 -help\t\t\t\taffiche ce texte d'aide et quitte.\n\n
15$ #CompileOptions 17$ #CompileOptions
16# Options de compilation:\n\ 18# Options de compilation:\n\