mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 18:11:06 +00:00
Add missing internationalization and more localizable strings in spanish
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@29193 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2d18e9cce8
commit
a3ea6e9598
5 changed files with 44 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2010-01-02 German Arias <german@xelalug.org>
|
||||
|
||||
* Source/NSOpenPanel.m: Reverted some previous changes, added GSGuiPrivate.h.
|
||||
* Source/NSColorPanel.m: Added GSGuiPrivate.h.
|
||||
* Source/NSDocument.m: Added missing internationalisation.
|
||||
* Resources/Spanish.lproj/Localizable.strings: More strings on spanish.
|
||||
|
||||
2010-01-02 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSColorPanel.m,
|
||||
|
|
|
@ -59,6 +59,34 @@ add comments above this one
|
|||
|
||||
/*** Unmatched/untranslated keys ***/
|
||||
|
||||
/*** Strings from ../Source/NSOpenPanel.m ***/
|
||||
/* File: ../Source/NSOpenPanel.m:92 */
|
||||
"Open" = "Abrir";
|
||||
|
||||
|
||||
/*** Strings from ../Source/NSColorPanel.m ***/
|
||||
/* File: ../Source/NSColorPanel.m:227 */
|
||||
"Colors" = "Colores";
|
||||
|
||||
|
||||
/*** Strings from ../Source/NSFontPanel.m ***/
|
||||
/* File: ../Source/NSFontPanel.m:542 */
|
||||
"Font Panel" = "Fuentes";
|
||||
/* File: ../Source/NSFontPanel.m:566 */
|
||||
"Font preview" = "Vista Previa";
|
||||
/* File: ../Source/NSFontPanel.m:627 */
|
||||
"Size" = "Tama\U00F1o";
|
||||
/* File: ../Source/NSFontPanel.m:685 */
|
||||
"Revert" = "Revertir";
|
||||
/* File: ../Source/NSFontPanel.m:695 */
|
||||
"Preview" = "Previa";
|
||||
/* File: ../Source/NSFontPanel.m:708 */
|
||||
"Set" = "Aplicar";
|
||||
/* File: ../Source/NSFontPanel.m:1105 */
|
||||
"Family" = "Fuente";
|
||||
/* File: ../Source/NSFontPanel.m:1109 */
|
||||
"Typeface" = "Estilo";
|
||||
|
||||
|
||||
/*** Strings from ../Source/GSHelpManagerPanel.m ***/
|
||||
/* File: ../Source/GSHelpManagerPanel.m:70 */
|
||||
|
@ -210,6 +238,8 @@ add comments above this one
|
|||
"Save To" = "Guardar Para";
|
||||
/* File: ../Source/NSDocument.m:551 */
|
||||
"Untitled-%d" = "Sin nombre-%d";
|
||||
/* File: ../Source/NSDocument.m:1064 */
|
||||
"File Type" = "Tipo de Archivo";
|
||||
|
||||
|
||||
/*** Strings from ../Source/NSDocumentController.m ***/
|
||||
|
@ -252,6 +282,8 @@ add comments above this one
|
|||
"The path '%@' is not a directory." = "La ruta '%@' no es un directorio.";
|
||||
/* File: ../Source/NSSavePanel.m:1228 */
|
||||
"Yes" = "Si";
|
||||
/* File: ../Source/NSSavePanel.m:236 */
|
||||
"Name:" = "Nombre:";
|
||||
|
||||
|
||||
/*** Strings from ../Source/NSToolbarItem.m ***/
|
||||
|
|
|
@ -46,6 +46,8 @@
|
|||
#include "AppKit/NSWindow.h"
|
||||
#include "GNUstepGUI/IMLoading.h"
|
||||
|
||||
#include "GSGuiPrivate.h"
|
||||
|
||||
#define MAX_ALPHA_VALUE 100.0
|
||||
static NSLock *_gs_gui_color_panel_lock = nil;
|
||||
static NSColorPanel *_gs_gui_color_panel = nil;
|
||||
|
|
|
@ -1061,7 +1061,7 @@ originalContentsURL: (NSURL *)orig
|
|||
NSRect spaFrame = NSMakeRect(115,14,150,22);
|
||||
|
||||
_save_panel_accessory = [[NSBox alloc] initWithFrame: accessoryFrame];
|
||||
[(NSBox *)_save_panel_accessory setTitle: @"File Type"];
|
||||
[(NSBox *)_save_panel_accessory setTitle: _(@"File Type")];
|
||||
[_save_panel_accessory setAutoresizingMask:
|
||||
NSViewWidthSizable | NSViewHeightSizable];
|
||||
_spa_button = [[NSPopUpButton alloc] initWithFrame: spaFrame];
|
||||
|
|
|
@ -39,7 +39,6 @@
|
|||
*/
|
||||
|
||||
#import <Foundation/NSArray.h>
|
||||
#import <Foundation/NSBundle.h>
|
||||
#import <Foundation/NSException.h>
|
||||
#import <Foundation/NSFileManager.h>
|
||||
#import <Foundation/NSNotification.h>
|
||||
|
@ -53,6 +52,8 @@
|
|||
#import "AppKit/NSMatrix.h"
|
||||
#import "AppKit/NSOpenPanel.h"
|
||||
|
||||
#include "GSGuiPrivate.h"
|
||||
|
||||
static NSString *
|
||||
pathToColumn(NSBrowser *browser, int column)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue