diff options
Diffstat (limited to 'nls/pt_BR')
-rw-r--r-- | nls/pt_BR/.cvsignore | 5 | ||||
-rw-r--r-- | nls/pt_BR/Configmenu.m | 8 | ||||
-rw-r--r-- | nls/pt_BR/Makefile.am | 30 | ||||
-rw-r--r-- | nls/pt_BR/Windowmenu.m | 6 | ||||
-rw-r--r-- | nls/pt_BR/fluxbox.m | 6 | ||||
-rw-r--r-- | nls/pt_BR/main.m | 4 |
6 files changed, 44 insertions, 15 deletions
diff --git a/nls/pt_BR/.cvsignore b/nls/pt_BR/.cvsignore new file mode 100644 index 0000000..4120fef --- /dev/null +++ b/nls/pt_BR/.cvsignore | |||
@@ -0,0 +1,5 @@ | |||
1 | .cvsignore | ||
2 | Makefile | ||
3 | Makefile.in | ||
4 | *.cat | ||
5 | *.m | ||
diff --git a/nls/pt_BR/Configmenu.m b/nls/pt_BR/Configmenu.m index 129d991..6c9d702 100644 --- a/nls/pt_BR/Configmenu.m +++ b/nls/pt_BR/Configmenu.m | |||
@@ -46,3 +46,11 @@ $ #TabRotateVertical | |||
46 | # Rotate Vertical Tabs | 46 | # Rotate Vertical Tabs |
47 | $ #SemiSloppyFocus | 47 | $ #SemiSloppyFocus |
48 | # Semi Sloppy Focus | 48 | # Semi Sloppy Focus |
49 | $ #MaxOverSlit | ||
50 | # Maximize Over Slit | ||
51 | $ #SloppyWindowGrouping | ||
52 | # Sloppy Window Grouping | ||
53 | $ #WorkspaceWarping | ||
54 | # Workspace Warping | ||
55 | $ #DesktopWheeling | ||
56 | # Desktop Wheeling | ||
diff --git a/nls/pt_BR/Makefile.am b/nls/pt_BR/Makefile.am index 197c57d..4745ce1 100644 --- a/nls/pt_BR/Makefile.am +++ b/nls/pt_BR/Makefile.am | |||
@@ -1,29 +1,33 @@ | |||
1 | # nls/pt_BR/Makefile.am for Blackbox-0.61.x - an X11 Window Manager | 1 | # nls/pt_BR/Makefile.am for Fluxbox - an X11 Window Manager |
2 | |||
3 | THE_LANG = pt_BR | ||
4 | CODESET = ISO-8859-1 | ||
2 | 5 | ||
3 | NLSTEST = @NLS@ | 6 | NLSTEST = @NLS@ |
4 | CLEANFILES = blackbox.cat | 7 | CLEANFILES = fluxbox.cat |
5 | MAINTAINERCLEANFILES = Makefile.in Translation.m | 8 | MAINTAINERCLEANFILES = Makefile.in Translation.m |
6 | MFILES = 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 | 9 | MFILES = 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 |
7 | EXTRA_DIST=$(MFILES) | 10 | EXTRA_DIST=$(MFILES) |
8 | all-local: blackbox.cat | 11 | all-local: fluxbox.cat |
9 | install-data-local: blackbox.cat | 12 | install-data-local: fluxbox.cat |
10 | @if test x$(NLSTEST) = "x-DNLS"; then \ | 13 | @if test x$(NLSTEST) = "x-DNLS"; then \ |
11 | echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/pr_BR"; \ | 14 | echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)"; \ |
12 | $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/pt_BR; \ | 15 | $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \ |
13 | $(INSTALL_DATA) blackbox.cat $(DESTDIR)$(pkgdatadir)/nls/pt_BR; \ | 16 | $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \ |
14 | fi | 17 | fi |
15 | uninstall-local: | 18 | uninstall-local: |
16 | @if test x$(NLSTEST) = "x-DNLS"; then \ | 19 | @if test x$(NLSTEST) = "x-DNLS"; then \ |
17 | rm -f $(DESTDIR)$(pkgdatadir)/nls/pt_BR/blackbox.cat; \ | 20 | rm -f $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)/fluxbox.cat; \ |
18 | rmdir $(DESTDIR)$(pkgdatadir)/nls/pt_BR; \ | 21 | rmdir $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \ |
19 | fi | 22 | fi |
20 | 23 | ||
21 | Translation.m: $(MFILES) | 24 | Translation.m: $(MFILES) |
22 | @if test x$(NLSTEST) = "x-DNLS"; then \ | 25 | @if test x$(NLSTEST) = "x-DNLS"; then \ |
23 | awk -f ../convert.awk output=Translation.m $(MFILES); \ | 26 | rm -f Translation.m; \ |
27 | awk -f ../convert.awk codeset=$(CODESET) output=Translation.m $(MFILES); \ | ||
24 | fi | 28 | fi |
25 | 29 | ||
26 | blackbox.cat: Translation.m | 30 | fluxbox.cat: Translation.m |
27 | @if test x$(NLSTEST) = "x-DNLS"; then \ | 31 | @if test x$(NLSTEST) = "x-DNLS"; then \ |
28 | $(gencat_cmd) blackbox.cat Translation.m; \ | 32 | LANG=$(THE_LANG) $(gencat_cmd) fluxbox.cat Translation.m; \ |
29 | fi | 33 | fi |
diff --git a/nls/pt_BR/Windowmenu.m b/nls/pt_BR/Windowmenu.m index fe81d4f..3817ba0 100644 --- a/nls/pt_BR/Windowmenu.m +++ b/nls/pt_BR/Windowmenu.m | |||
@@ -2,6 +2,8 @@ $set 10 #Windowmenu | |||
2 | 2 | ||
3 | $ #SendTo | 3 | $ #SendTo |
4 | # Enviar Para ... | 4 | # Enviar Para ... |
5 | $ #SendGroupTo | ||
6 | # Enviar Grupo Para ... | ||
5 | $ #Shade | 7 | $ #Shade |
6 | # Encolher | 8 | # Encolher |
7 | $ #Iconify | 9 | $ #Iconify |
@@ -15,6 +17,8 @@ $ #Lower | |||
15 | $ #Stick | 17 | $ #Stick |
16 | # Sempre Visivel | 18 | # Sempre Visivel |
17 | $ #KillClient | 19 | $ #KillClient |
18 | # Kill Cliente | 20 | # Matar Cliente |
19 | $ #Close | 21 | $ #Close |
20 | # Fechar | 22 | # Fechar |
23 | $ #Tab | ||
24 | # Tab | ||
diff --git a/nls/pt_BR/fluxbox.m b/nls/pt_BR/fluxbox.m new file mode 100644 index 0000000..136cb0e --- /dev/null +++ b/nls/pt_BR/fluxbox.m | |||
@@ -0,0 +1,6 @@ | |||
1 | $set 13 #blackbox | ||
2 | |||
3 | $ #NoManagableScreens | ||
4 | # Blackbox::Blackbox: não foram encontradas telas administraveis, abortando..\n | ||
5 | $ #MapRequest | ||
6 | # Blackbox::process_event: MapRequest para 0x%lx\n | ||
diff --git a/nls/pt_BR/main.m b/nls/pt_BR/main.m index b04cc77..1301230 100644 --- a/nls/pt_BR/main.m +++ b/nls/pt_BR/main.m | |||
@@ -7,10 +7,12 @@ $ #DISPLAYRequiresArg | |||
7 | $ #WarnDisplaySet | 7 | $ #WarnDisplaySet |
8 | # aviso: não foi possivel setar a variavel de ambiente 'DISPLAY'\n | 8 | # aviso: não foi possivel setar a variavel de ambiente '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 <string>\t\tusar conexão com o display.\n\ | 11 | -display <string>\t\tusar conexão com o display.\n\ |
12 | -rc <string>\t\t\tusar arquivo alternativo de recursos.\n\ | 12 | -rc <string>\t\t\tusar arquivo alternativo de recursos.\n\ |
13 | -version\t\t\tmostrar versao e sair.\n\ | 13 | -version\t\t\tmostrar versao e sair.\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\tmostrar esta ajuda e sair.\n\n | 16 | -help\t\t\t\tmostrar esta ajuda e sair.\n\n |
15 | $ #CompileOptions | 17 | $ #CompileOptions |
16 | # Opções em tempo de compilação:\n\ | 18 | # Opções em tempo de compilação:\n\ |