Author: rmottola
Date: Thu Jan 14 14:34:49 2016
New Revision: 39272
URL: http://svn.gna.org/viewcvs/gnustep?rev=39272&view=rev
Log:
Improve translation of Desktop Preference, move items, add strings
Modified:
apps/gworkspace/trunk/ChangeLog
apps/gworkspace/trunk/GWorkspace/Preferences/DesktopPref.h
apps/gworkspace/trunk/GWorkspace/Preferences/DesktopPref.m
apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/DesktopPref.gorm/data.classes
apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/DesktopPref.gorm/data.info
apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/DesktopPref.gorm/objects.gorm
apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/Localizable.strings
apps/gworkspace/trunk/GWorkspace/Resources/French.lproj/Localizable.strings
apps/gworkspace/trunk/GWorkspace/Resources/German.lproj/Localizable.strings
apps/gworkspace/trunk/GWorkspace/Resources/Italian.lproj/Localizable.strings
Modified: apps/gworkspace/trunk/ChangeLog
URL:
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/ChangeLog?rev=39272&r1=39271&r2=39272&view=diff
==============================================================================
--- apps/gworkspace/trunk/ChangeLog (original)
+++ apps/gworkspace/trunk/ChangeLog Thu Jan 14 14:34:49 2016
@@ -1,3 +1,14 @@
+2016-01-14 Riccardo Mottola <[email protected]>
+
+ * GWorkspace/Preferences/DesktopPref.h
+ * GWorkspace/Preferences/DesktopPref.m
+ * GWorkspace/Resources/English.lproj/DesktopPref.gorm
+ * GWorkspace/Resources/English.lproj/Localizable.strings
+ * GWorkspace/Resources/French.lproj/Localizable.strings
+ * GWorkspace/Resources/German.lproj/Localizable.strings
+ * GWorkspace/Resources/Italian.lproj/Localizable.strings
+ Improve translation of Desktop Preference, move items, add strings.
+
2016-01-11 Riccardo Mottola <[email protected]>
* GWorkspace/Thumbnailer/GWThumbnailer.m (makeThumbnailForPath)
Modified: apps/gworkspace/trunk/GWorkspace/Preferences/DesktopPref.h
URL:
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/GWorkspace/Preferences/DesktopPref.h?rev=39272&r1=39271&r2=39272&view=diff
==============================================================================
--- apps/gworkspace/trunk/GWorkspace/Preferences/DesktopPref.h (original)
+++ apps/gworkspace/trunk/GWorkspace/Preferences/DesktopPref.h Thu Jan 14
14:34:49 2016
@@ -1,8 +1,9 @@
/* DesktopPref.h
*
- * Copyright (C) 2005-2012 Free Software Foundation, Inc.
+ * Copyright (C) 2005-2016 Free Software Foundation, Inc.
*
* Author: Enrico Sersale <[email protected]>
+ * Riccardo Mottola <[email protected]>
* Date: January 2005
*
* This file is part of the GNUstep GWorkspace application
@@ -48,6 +49,7 @@
// Color
NSColorPanel *panel;
+ IBOutlet NSTextField *colorLabel;
IBOutlet NSColorWell *colorWell;
ColorView *colorView;
@@ -55,18 +57,21 @@
NSString *imagePath;
NSString *imagesDir;
IBOutlet NSImageView *imageView;
- IBOutlet id imagePosMatrix;
- IBOutlet id chooseImageButt;
- IBOutlet id useImageSwitch;
+ IBOutlet NSMatrix *imagePosMatrix;
+ IBOutlet NSButton *chooseImageButt;
+ IBOutlet NSButton *useImageSwitch;
// General
- IBOutlet id omnipresentCheck;
- IBOutlet id useDockCheck;
- IBOutlet id dockPosLabel;
- IBOutlet id dockPosMatrix;
- IBOutlet id dockStyleLabel;
- IBOutlet id dockStyleMatrix;
- IBOutlet id hideTShelfCheck;
+ IBOutlet NSButton *omnipresentCheck;
+ IBOutlet NSButton *hideTShelfCheck;
+
+ // Dock
+ IBOutlet NSBox *dockBox;
+ IBOutlet NSButton *useDockCheck;
+ IBOutlet NSTextField *dockPosLabel;
+ IBOutlet NSMatrix *dockPosMatrix;
+ IBOutlet NSTextField *dockStyleLabel;
+ IBOutlet NSMatrix *dockStyleMatrix;
GWDesktopManager *manager;
id gworkspace;
Modified: apps/gworkspace/trunk/GWorkspace/Preferences/DesktopPref.m
URL:
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/GWorkspace/Preferences/DesktopPref.m?rev=39272&r1=39271&r2=39272&view=diff
==============================================================================
--- apps/gworkspace/trunk/GWorkspace/Preferences/DesktopPref.m (original)
+++ apps/gworkspace/trunk/GWorkspace/Preferences/DesktopPref.m Thu Jan 14
14:34:49 2016
@@ -1,8 +1,9 @@
/* DesktopPref.m
*
- * Copyright (C) 2005-2012 Free Software Foundation, Inc.
+ * Copyright (C) 2005-2016 Free Software Foundation, Inc.
*
* Author: Enrico Sersale <[email protected]>
+ * Riccardo Mottola <[email protected]>
* Date: January 2005
*
* This file is part of the GNUstep GWorkspace application
@@ -119,6 +120,7 @@
[[tabView tabViewItemAtIndex: 0] setLabel:
NSLocalizedString(@"Background", @"")];
[[tabView tabViewItemAtIndex: 1] setLabel: NSLocalizedString(@"General",
@"")];
+ [colorLabel setStringValue:_(@"Color:")];
cell = [imagePosMatrix cellAtRow: BackImageCenterStyle column: 0];
[cell setTitle: NSLocalizedString(@"center", @"")];
cell = [imagePosMatrix cellAtRow: BackImageFitStyle column: 0];
@@ -130,17 +132,20 @@
[useImageSwitch setTitle: NSLocalizedString(@"Use image", @"")];
[chooseImageButt setTitle: NSLocalizedString(@"Choose", @"")];
+ [dockBox setTitle: _(@"Dock")];
[useDockCheck setTitle: NSLocalizedString(@"Show Dock", @"")];
- [dockPosLabel setStringValue: NSLocalizedString(@"Dock position:", @"")];
+ [dockPosLabel setStringValue: NSLocalizedString(@"Position:", @"")];
cell = [dockPosMatrix cellAtRow: 0 column: 0];
[cell setTitle: NSLocalizedString(@"Left", @"")];
cell = [dockPosMatrix cellAtRow: 0 column: 1];
[cell setTitle: NSLocalizedString(@"Right", @"")];
- [dockStyleLabel setStringValue: NSLocalizedString(@"Dock style:", @"")];
+ [dockStyleLabel setStringValue: NSLocalizedString(@"Style:", @"")];
cell = [dockStyleMatrix cellAtRow: 0 column: 0];
[cell setTitle: NSLocalizedString(@"Classic", @"")];
cell = [dockStyleMatrix cellAtRow: 0 column: 1];
[cell setTitle: NSLocalizedString(@"Modern", @"")];
+
+ [omnipresentCheck setTitle: _(@"Omnipresent")];
[hideTShelfCheck setTitle: NSLocalizedString(@"Autohide Tabbed Shelf",
@"")];
}
}
Modified:
apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/DesktopPref.gorm/data.classes
URL:
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/DesktopPref.gorm/data.classes?rev=39272&r1=39271&r2=39272&view=diff
==============================================================================
---
apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/DesktopPref.gorm/data.classes
(original)
+++
apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/DesktopPref.gorm/data.classes
Thu Jan 14 14:34:49 2016
@@ -32,18 +32,20 @@
win,
prefbox,
tabView,
+ colorLabel,
colorWell,
imageView,
imagePosMatrix,
chooseImageButt,
useImageSwitch,
omnipresentCheck,
+ hideTShelfCheck,
+ dockBox,
useDockCheck,
dockPosLabel,
dockPosMatrix,
dockStyleLabel,
dockStyleMatrix,
- hideTShelfCheck,
gworkspace
);
Super = NSObject;
Modified:
apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/DesktopPref.gorm/data.info
URL:
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/DesktopPref.gorm/data.info?rev=39272&r1=39271&r2=39272&view=diff
==============================================================================
Binary files - no diff available.
Modified:
apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/DesktopPref.gorm/objects.gorm
URL:
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/DesktopPref.gorm/objects.gorm?rev=39272&r1=39271&r2=39272&view=diff
==============================================================================
Binary files - no diff available.
Modified:
apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/Localizable.strings
URL:
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/Localizable.strings?rev=39272&r1=39271&r2=39272&view=diff
==============================================================================
---
apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/Localizable.strings
(original)
+++
apps/gworkspace/trunk/GWorkspace/Resources/English.lproj/Localizable.strings
Thu Jan 14 14:34:49 2016
@@ -383,6 +383,7 @@
"Background"="Background";
"General"="General";
+"Color:" = "Color:";
"center" = "Center";
"fit" = "Fit";
"tile" = "Tile";
@@ -391,15 +392,16 @@
"Use image"="Use image";
"Choose"="Choose";
+"Dock" = "Dock";
"Show Dock"="Show Dock";
-"Dock position:"="Dock position:";
-
+"Position:"="Position:";
+
+"Style:"="Style:";
"Left"="Left";
"Right"="Right";
-"Dock style:"="Dock style:";
-
"Classic"="Classic";
"Modern"="Modern";
+"Omnipresent"="Omnipresent";
"Autohide Tabbed Shelf"="Autohide Tabbed Shelf";
Modified:
apps/gworkspace/trunk/GWorkspace/Resources/French.lproj/Localizable.strings
URL:
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/GWorkspace/Resources/French.lproj/Localizable.strings?rev=39272&r1=39271&r2=39272&view=diff
==============================================================================
--- apps/gworkspace/trunk/GWorkspace/Resources/French.lproj/Localizable.strings
(original)
+++ apps/gworkspace/trunk/GWorkspace/Resources/French.lproj/Localizable.strings
Thu Jan 14 14:34:49 2016
@@ -44,8 +44,8 @@
"Up" = "Haut";
"Left" = "Gauche";
"Label Size" = "Taille du texte";
- "Make thumbnail(s)" = "Make thumbnail(s)";
- "Remove thumbnail(s)" = "Remove thumbnail(s)";
+ "Make thumbnail(s)" = "Créer les vignettes";
+ "Remove thumbnail(s)" = "Retirer les vignettes";
"Viewer" = "Visualisateur";
"Tools" = "Outils";
@@ -467,6 +467,7 @@
"Background"="Fond d'écran";
"General"="Général";
+"Color:" = "Couleur:";
"center" = "Centrer";
"fit" = "Fit";
"tile" = "Répéter";
@@ -475,15 +476,16 @@
"Use image"="Image";
"Choose"="Choisir";
+"Dock" = "Dock";
"Show Dock"="Montrer le Dock";
-"Dock position:"="Position du Dock:";
-
+"Position:"="Position:";
+
+"Style:"="Style:";
"Left"="Gauche";
"Right"="Droite";
-"Dock style:"="Style du Dock:";
-
"Classic"="Classique";
"Modern"="Moderne";
+"Omnipresent"="Omnipresent";
"Autohide Tabbed Shelf"="Cacher automatiquement les étagères";
Modified:
apps/gworkspace/trunk/GWorkspace/Resources/German.lproj/Localizable.strings
URL:
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/GWorkspace/Resources/German.lproj/Localizable.strings?rev=39272&r1=39271&r2=39272&view=diff
==============================================================================
--- apps/gworkspace/trunk/GWorkspace/Resources/German.lproj/Localizable.strings
(original)
+++ apps/gworkspace/trunk/GWorkspace/Resources/German.lproj/Localizable.strings
Thu Jan 14 14:34:49 2016
@@ -411,20 +411,29 @@
/* Desktop */
-"Back Color" = "Hintergrundfarbe";
- "Current color" = "Aktuelle Farbe";
+"Desktop" = "Schreibtisch";
+"Background"="Hintergrund";
+"General"="Generell";
+
+"Color:" = "Farbe:";
"Back Image" = "Hintergrundbild";
"center" = "zentriert";
"fit" = "skaliert";
"tile" = "gekachelt";
"Use image" = "Bild verwenden";
+
+"Dock" = "Dock";
+
"General" = "Allgemein";
- "Omnipresent" = "Omnipräsent";
+
"Show Dock" = "Dock anzeigen";
- "Dock position" = "Dockposition";
+"Position" = "Position";
+"Style:"="Stil:";
"Left" = "Links";
"Right" = "Rechts";
- "Autohide Tabbed Shelf" = "Tabbed Schelf einfahren";
+
+"Omnipresent" = "Omnipräsent";
+"Autohide Tabbed Shelf" = "Tabbed Schelf einfahren";
/* Browser */
"Aspect" = "Aspekt";
Modified:
apps/gworkspace/trunk/GWorkspace/Resources/Italian.lproj/Localizable.strings
URL:
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/GWorkspace/Resources/Italian.lproj/Localizable.strings?rev=39272&r1=39271&r2=39272&view=diff
==============================================================================
---
apps/gworkspace/trunk/GWorkspace/Resources/Italian.lproj/Localizable.strings
(original)
+++
apps/gworkspace/trunk/GWorkspace/Resources/Italian.lproj/Localizable.strings
Thu Jan 14 14:34:49 2016
@@ -355,24 +355,26 @@
"Background"="Sfondo";
"General"="Generale";
+"Color:" = "Colore:";
"center" = "Centra";
"fit" = "Adatta";
"tile" = "Piastrella";
"scale" = "Scala";
-"Use image"="Immagine";
+"Use image"="Usa Immagine";
"Choose"="Scegli";
+"Dock" = "Molo";
"Show Dock"="Mostra Molo";
-"Dock position:"="Posizione Molo:";
-
+"Position:"="Posizione:";
+
+"Style:"="Stile:";
"Left"="Left";
"Right"="Right";
-"Dock style:"="Stile Molo:";
-
"Classic"="Classic";
"Modern"="Moderno";
+"Omnipresent"="Onnipresente";
"Autohide Tabbed Shelf"="Nascondi Scaffale Automaticamente";
_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs