[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Question about internationalization
From: |
Yen-Ju Chen |
Subject: |
Re: Question about internationalization |
Date: |
Mon, 2 Feb 2009 14:18:58 +0800 |
You can localize the interface with either Localizable.strings or
localized gorm or both.
In any case, create directory Spanish.lproj and English.lproj (and others).
Put the Spanish'd gorm and its Localizable.strings into Spanish.lproj
and English'd into English.lproj.
In your GNUmakefile, add these:
$(APP_NAME)_LANGUAGES = English Spanish
$(APP_NAME)_LOCALIZED_RESOURCE_FILES = \
Localizable.strings \
MainMenu.gorm
Depending on user setting, it will pick up the right localized string
and gorm interface for users. You can check Gomoku.app as an example.
It is localized in many languages.
Yen-Ju
On Mon, Feb 2, 2009 at 1:58 PM, Germán Arias <german@xelalug.org> wrote:
> Hi, I have my app in Spanish. and I can make an strings file with GORM,
> and translate this. And load this in GORM, is this enough to translate
> the app? Or I need do something more?
>
>
>
> _______________________________________________
> Discuss-gnustep mailing list
> Discuss-gnustep@gnu.org
> http://lists.gnu.org/mailman/listinfo/discuss-gnustep
>