Skip to content

Commit e22e609

Browse files
committed
Add Dutch catkeys
Re-order numbers, add spacing
1 parent cbb5da9 commit e22e609

3 files changed

Lines changed: 37 additions & 6 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ OPTIMIZE :=
8585
# will recreate only the "locales/en.catkeys" file. Use it as a template
8686
# for creating catkeys for other languages. All localization files must be
8787
# placed in the "locales" subdirectory.
88-
LOCALES = de en
88+
LOCALES = de en nl
8989

9090
# Specify all the preprocessor symbols to be defined. The symbols will not
9191
# have their values set automatically; you must supply the value (if any) to

Source/ClockView.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ enum clockwords {
4242
words_TO,
4343
words_PAST,
4444
words_ONE,
45-
words_THREE,
4645
words_TWO,
46+
words_THREE,
4747
words_FOUR,
4848
words_FIVE,
4949
words_SIX,
@@ -89,8 +89,8 @@ ClockView::_Init()
8989
fWords[7] = new LabelView("w8", B_TRANSLATE("TO"));
9090
fWords[8] = new LabelView("w9", B_TRANSLATE("PAST"));
9191
fWords[9] = new LabelView("w10", B_TRANSLATE("ONE"));
92-
fWords[10] = new LabelView("w11", B_TRANSLATE("THREE"));
93-
fWords[11] = new LabelView("w12", B_TRANSLATE("TWO"));
92+
fWords[10] = new LabelView("w11", B_TRANSLATE("TWO"));
93+
fWords[11] = new LabelView("w12", B_TRANSLATE("THREE"));
9494
fWords[12] = new LabelView("w13", B_TRANSLATE("FOUR"));
9595
fWords[13] = new LabelView("w14", B_TRANSLATE("FIVE"));
9696
fWords[14] = new LabelView("w15", B_TRANSLATE("SIX"));
@@ -124,9 +124,9 @@ ClockView::_Init()
124124
.End()
125125
.AddGroup(B_HORIZONTAL, 0)
126126
.Add(fWords[5])
127-
.AddGlue()
127+
.AddStrut(B_USE_SMALL_SPACING)//.AddGlue()
128128
.Add(fWords[6])
129-
.AddGlue()
129+
.AddStrut(B_USE_SMALL_SPACING)//.AddGlue()
130130
.Add(fWords[7])
131131
.End()
132132
.AddGroup(B_HORIZONTAL, 0)

locales/nl.catkeys

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
1 Dutch x-vnd.janus.WordClock 224949292
2+
About WordClock ClockView Over WoordKlok
3+
Background ClockView Achtergrond
4+
Default ClockView Standaard
5+
EIGHT ClockView ACHT
6+
ELEVEN ClockView ELF
7+
FIVE ClockView VIJF
8+
FOUR ClockView VIER
9+
HALF ClockView HALF
10+
IT IS ClockView HET IS
11+
MINUTES ClockView MINUTEN
12+
NINE ClockView NEGEN
13+
O'CLOCK ClockView UUR
14+
OK ClockView OK
15+
ONE ClockView EEN
16+
PAST ClockView NA
17+
QUARTER ClockView KWART
18+
SEVEN ClockView ZEVEN
19+
SIX ClockView ZES
20+
TEN ClockView TIEN
21+
Text ClockView Tekst
22+
THREE ClockView DRIE
23+
TO ClockView VOOR
24+
Transparent ClockView Transparent
25+
TWELVE ClockView TWAALF
26+
TWENTY ClockView TWINTIG
27+
TWO ClockView TWEE
28+
WordClock (The Replicant version) ClockView WoordKlok (De Replicant versie)
29+
Font MainWindow Font
30+
Size MainWindow Grootte
31+
WordClock System name WoordKlok

0 commit comments

Comments
 (0)