From fb831a49cd502981151aa100afde4294ef677f00 Mon Sep 17 00:00:00 2001 From: Ken Sharp Date: Thu, 8 Jul 2010 15:18:08 +0100 Subject: clock: Add Gaelic resource --- programs/clock/Ga.rc | 51 ++++++++++++++++++++++++++++++++++++++++++++ programs/clock/Makefile.in | 1 + 2 files changed, 52 insertions(+), 0 deletions(-) create mode 100644 programs/clock/Ga.rc diff --git a/programs/clock/Ga.rc b/programs/clock/Ga.rc new file mode 100644 index 0000000..b5a8936 --- /dev/null +++ b/programs/clock/Ga.rc @@ -0,0 +1,51 @@ +/* + * Clock (Gaelic resources) + * Clog (acmhainní Gaelic) + * + * Copyright 2010 Ken Sharp + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "clock_res.h" + +#pragma code_page(65001) + +LANGUAGE LANG_GAELIC, SUBLANG_GAELIC + +MAIN_MENU MENU +{ + POPUP "A&iríonna" { + MENUITEM "&Analógach", IDM_ANALOG + MENUITEM "&Digiteach", IDM_DIGITAL + MENUITEM SEPARATOR + MENUITEM "&Clótéacs...", IDM_FONT + MENUITEM SEPARATOR + MENUITEM "&Gan Barra Teidil", IDM_NOTITLE + MENUITEM SEPARATOR + MENUITEM "&Soicind", IDM_SECONDS + MENUITEM "Dá&ta", IDM_DATE + MENUITEM SEPARATOR + MENUITEM "I gcónaí ar an &Barr", IDM_ONTOP + } + POPUP "&Eolas" { + MENUITEM "&Maidir Clog...", IDM_ABOUT + } +} + +STRINGTABLE DISCARDABLE +{ +IDS_CLOCK, "Clog" +} diff --git a/programs/clock/Makefile.in b/programs/clock/Makefile.in index 0b76717..f1145de 100644 --- a/programs/clock/Makefile.in +++ b/programs/clock/Makefile.in @@ -20,6 +20,7 @@ RC_SRCS = \ Es.rc \ Fi.rc \ Fr.rc \ + Ga.rc \ Hu.rc \ It.rc \ Ja.rc \ -- 1.7.0.2.msysgit.0