mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 18:11:06 +00:00
New file
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@11878 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
224485caa7
commit
02de1b149f
3 changed files with 105 additions and 0 deletions
22
Resources/English.lproj/Localizable.strings
Normal file
22
Resources/English.lproj/Localizable.strings
Normal file
|
@ -0,0 +1,22 @@
|
|||
/* NSApplication.m */
|
||||
|
||||
"Critical Error in %@" = "Critical Error in %@";
|
||||
"Abort" = "Abort";
|
||||
"Ignore" = "Ignore";
|
||||
"Debug" = "Debug";
|
||||
"Unable to load backend, aborting" = "Unable to load backend, aborting";
|
||||
"Can't init backend bundle" = "Can't init backend bundle";
|
||||
"Can't load backend bundle" = "Can't load backend bundle";
|
||||
"Can't find backend context" = "Can't find backend context";
|
||||
"Cannot allocate the application instance!\n"="Cannot allocate the application instance!\n";
|
||||
"Cannot load the main model file '%@'" = "Cannot load the main model file '%@'";
|
||||
"Problem during launch app notification: %@" = "Problem during launch app notification: %@";
|
||||
"Quit" = "Quit";
|
||||
|
||||
/* Title of the Info Panel */
|
||||
"Info" = "Info";
|
||||
|
||||
/* Title of Windows menu */
|
||||
"Windows" = "Windows";
|
||||
|
||||
"reported exception - %@" = "reported exception - %@";
|
61
Resources/GNUmakefile
Normal file
61
Resources/GNUmakefile
Normal file
|
@ -0,0 +1,61 @@
|
|||
#
|
||||
# Resources makefile for gnustep-gui
|
||||
# Copyright (C) 2001 Free Software Foundation, Inc.
|
||||
#
|
||||
# Written by: Nicola Pero <n.pero@mi.flashnet.it>
|
||||
# Date: December 2001
|
||||
#
|
||||
# This file is part of the GNUstep GUI Library.
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Library General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# Library General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Library General Public
|
||||
# License along with this library; if not, write to the Free
|
||||
# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
|
||||
GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
|
||||
|
||||
GNUSTEP_LOCAL_ADDITIONAL_MAKEFILES=../gui.make
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
gnustep_gui_resources = $(GNUSTEP_RESOURCES)/gnustep-gui/Resources
|
||||
|
||||
LANGUAGES = English Italian
|
||||
|
||||
LOCALIZED_RESOURCE_FILES = Localizable.strings
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/rules.make
|
||||
|
||||
$(gnustep_gui_resources):
|
||||
$(MKDIRS) $@
|
||||
|
||||
before-install:: $(gnustep_gui_resources)
|
||||
|
||||
after-uninstall::
|
||||
rm -rf $(gnustep_gui_resources)
|
||||
|
||||
after-install::
|
||||
@(echo "Installing localized resources..."; \
|
||||
for l in $(LANGUAGES); do \
|
||||
if [ -d $$l.lproj ]; then \
|
||||
$(MKDIRS) $(gnustep_gui_resources)/$$l.lproj; \
|
||||
for f in $(LOCALIZED_RESOURCE_FILES); do \
|
||||
if [ -f $$l.lproj/$$f ]; then \
|
||||
$(INSTALL_DATA) $$l.lproj/$$f \
|
||||
$(gnustep_gui_resources)/$$l.lproj; \
|
||||
fi; \
|
||||
done; \
|
||||
else \
|
||||
echo "Warning: $$l.proj not found!"; \
|
||||
fi; \
|
||||
done)
|
||||
|
||||
|
22
Resources/Italian.lproj/Localizable.strings
Normal file
22
Resources/Italian.lproj/Localizable.strings
Normal file
|
@ -0,0 +1,22 @@
|
|||
/* NSApplication.m */
|
||||
|
||||
"Critical Error in %@" = "Errore critico in %@";
|
||||
"Abort" = "Abortisci";
|
||||
"Ignore" = "Ignora";
|
||||
"Debug" = "Debugga";
|
||||
"Unable to load backend, aborting" = "Non è possibile caricare il backend, abortisco";
|
||||
"Can't init backend bundle" = "Non è possibile initializare il backend bundle";
|
||||
"Can't load backend bundle" = "Non è possibile caricare il backend bundle";
|
||||
"Can't find backend context" = "Non è possibile trovare il backend context";
|
||||
"Cannot allocate the application instance!\n"="Non è possibile allocare l'istanza dell'applicazione!\n";
|
||||
"Cannot load the main model file '%@'" = "Non è possibile caricare il model file principale '%@'";
|
||||
"Problem during launch app notification: %@" = "Problema durante il lancio dell'applicazione: %@";
|
||||
"Quit" = "Esci";
|
||||
|
||||
/* Title of the Info Panel */
|
||||
"Info" = "Info";
|
||||
|
||||
/* Title of Windows menu */
|
||||
"Windows" = "Finestre";
|
||||
|
||||
"reported exception - %@" = "riportata una exception - %@";
|
Loading…
Reference in a new issue