Make translations of menu entries explicit

It appears that at least for Norwegian the translations of the stock menu
entries was missing. This patch adds those as explicit strings and merges
those new strings into the .po files.

The translations need to be updated in separate commits.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2012-10-11 23:08:45 +09:00
parent 2a6db9c7ae
commit 45e84618f5
4 changed files with 209 additions and 149 deletions

View file

@ -901,12 +901,12 @@ static GtkActionEntry menu_items[] = {
{ "ViewMenuAction", NULL, N_("View"), NULL, NULL, NULL}, { "ViewMenuAction", NULL, N_("View"), NULL, NULL, NULL},
{ "FilterMenuAction", NULL, N_("Filter"), NULL, NULL, NULL}, { "FilterMenuAction", NULL, N_("Filter"), NULL, NULL, NULL},
{ "HelpMenuAction", NULL, N_("Help"), NULL, NULL, NULL}, { "HelpMenuAction", NULL, N_("Help"), NULL, NULL, NULL},
{ "NewFile", GTK_STOCK_NEW, NULL, CTRLCHAR "N", NULL, G_CALLBACK(file_close) }, { "NewFile", GTK_STOCK_NEW, N_("New"), CTRLCHAR "N", NULL, G_CALLBACK(file_close) },
{ "OpenFile", GTK_STOCK_OPEN, NULL, CTRLCHAR "O", NULL, G_CALLBACK(file_open) }, { "OpenFile", GTK_STOCK_OPEN, N_("Open"), CTRLCHAR "O", NULL, G_CALLBACK(file_open) },
{ "SaveFile", GTK_STOCK_SAVE, NULL, CTRLCHAR "S", NULL, G_CALLBACK(file_save) }, { "SaveFile", GTK_STOCK_SAVE, N_("Save"), CTRLCHAR "S", NULL, G_CALLBACK(file_save) },
{ "SaveAsFile", GTK_STOCK_SAVE_AS, NULL, SHIFTCHAR CTRLCHAR "S", NULL, G_CALLBACK(file_save_as) }, { "SaveAsFile", GTK_STOCK_SAVE_AS, N_("Save As"), SHIFTCHAR CTRLCHAR "S", NULL, G_CALLBACK(file_save_as) },
{ "CloseFile", GTK_STOCK_CLOSE, NULL, NULL, NULL, G_CALLBACK(file_close) }, { "CloseFile", GTK_STOCK_CLOSE, N_("Close"), NULL, NULL, G_CALLBACK(file_close) },
{ "Print", GTK_STOCK_PRINT, NULL, CTRLCHAR "P", NULL, G_CALLBACK(do_print) }, { "Print", GTK_STOCK_PRINT, N_("Print"), CTRLCHAR "P", NULL, G_CALLBACK(do_print) },
{ "ImportFile", GTK_STOCK_GO_BACK, N_("Import XML File(s)"), CTRLCHAR "I", NULL, G_CALLBACK(import_files) }, { "ImportFile", GTK_STOCK_GO_BACK, N_("Import XML File(s)"), CTRLCHAR "I", NULL, G_CALLBACK(import_files) },
{ "DownloadLog", GTK_STOCK_GO_DOWN, N_("Download From Dive Computer"), CTRLCHAR "D", NULL, G_CALLBACK(download_dialog) }, { "DownloadLog", GTK_STOCK_GO_DOWN, N_("Download From Dive Computer"), CTRLCHAR "D", NULL, G_CALLBACK(download_dialog) },
{ "AddDive", GTK_STOCK_ADD, N_("Add Dive"), NULL, NULL, G_CALLBACK(add_dive_cb) }, { "AddDive", GTK_STOCK_ADD, N_("Add Dive"), NULL, NULL, G_CALLBACK(add_dive_cb) },
@ -914,8 +914,8 @@ static GtkActionEntry menu_items[] = {
{ "Renumber", NULL, N_("Renumber"), NULL, NULL, G_CALLBACK(renumber_dialog) }, { "Renumber", NULL, N_("Renumber"), NULL, NULL, G_CALLBACK(renumber_dialog) },
{ "YearlyStats", NULL, N_("Yearly Statistics"), NULL, NULL, G_CALLBACK(show_yearly_stats) }, { "YearlyStats", NULL, N_("Yearly Statistics"), NULL, NULL, G_CALLBACK(show_yearly_stats) },
{ "SelectEvents", NULL, N_("SelectEvents"), NULL, NULL, G_CALLBACK(selectevents_dialog) }, { "SelectEvents", NULL, N_("SelectEvents"), NULL, NULL, G_CALLBACK(selectevents_dialog) },
{ "Quit", GTK_STOCK_QUIT, NULL, CTRLCHAR "Q", NULL, G_CALLBACK(quit) }, { "Quit", GTK_STOCK_QUIT, N_("Quit"), CTRLCHAR "Q", NULL, G_CALLBACK(quit) },
{ "About", GTK_STOCK_ABOUT, NULL, NULL, NULL, G_CALLBACK(about_dialog) }, { "About", GTK_STOCK_ABOUT, N_("About"), NULL, NULL, G_CALLBACK(about_dialog) },
{ "ViewList", NULL, N_("List"), CTRLCHAR "1", NULL, G_CALLBACK(view_list) }, { "ViewList", NULL, N_("List"), CTRLCHAR "1", NULL, G_CALLBACK(view_list) },
{ "ViewProfile", NULL, N_("Profile"), CTRLCHAR "2", NULL, G_CALLBACK(view_profile) }, { "ViewProfile", NULL, N_("Profile"), CTRLCHAR "2", NULL, G_CALLBACK(view_profile) },
{ "ViewInfo", NULL, N_("Info"), CTRLCHAR "3", NULL, G_CALLBACK(view_info) }, { "ViewInfo", NULL, N_("Info"), CTRLCHAR "3", NULL, G_CALLBACK(view_info) },

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.0.1\n" "Project-Id-Version: 2.0.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-10-11 07:42+0900\n" "POT-Creation-Date: 2012-10-11 23:06+0900\n"
"PO-Revision-Date: 2012-10-10 16:27+0900\n" "PO-Revision-Date: 2012-10-10 16:27+0900\n"
"Last-Translator: Dirk Hohndel <dirk@hohndel.org>\n" "Last-Translator: Dirk Hohndel <dirk@hohndel.org>\n"
"Language-Team: German\n" "Language-Team: German\n"
@ -87,6 +87,10 @@ msgstr "%dst %dmin"
msgid "(%s) or (%s)" msgid "(%s) or (%s)"
msgstr "(%s) oder (%s)" msgstr "(%s) oder (%s)"
#: gtk-gui.c:918
msgid "About"
msgstr ""
#: gtk-gui.c:912 #: gtk-gui.c:912
msgid "Add Dive" msgid "Add Dive"
msgstr "Tauchgang hinzufügen" msgstr "Tauchgang hinzufügen"
@ -99,11 +103,11 @@ msgstr "Tauchgang hinzufügen"
msgid "Add to trip above" msgid "Add to trip above"
msgstr "Zum obigen Trip hinzufügen" msgstr "Zum obigen Trip hinzufügen"
#: main.c:47 #: main.c:46
msgid "Apr" msgid "Apr"
msgstr "Apr" msgstr "Apr"
#: main.c:48 #: main.c:47
msgid "Aug" msgid "Aug"
msgstr "Aug" msgstr "Aug"
@ -153,6 +157,10 @@ msgstr ""
"Bitte XML Dateien auswählen, die in die aktuelle Datei eingefügt werden " "Bitte XML Dateien auswählen, die in die aktuelle Datei eingefügt werden "
"sollen" "sollen"
#: gtk-gui.c:908
msgid "Close"
msgstr ""
#: divelist.c:2115 #: divelist.c:2115
msgid "Collapse all" msgid "Collapse all"
msgstr "Alle einfalten" msgstr "Alle einfalten"
@ -189,7 +197,7 @@ msgstr "Datum und Zeit"
msgid "Date:" msgid "Date:"
msgstr "Datum:" msgstr "Datum:"
#: main.c:48 #: main.c:47
msgid "Dec" msgid "Dec"
msgstr "Dez" msgstr "Dez"
@ -394,7 +402,7 @@ msgstr "Fehler beim Lesen von '%s'"
msgid "Failed to read '%s'.\n" msgid "Failed to read '%s'.\n"
msgstr "Fehler beim Lesen von '%s'.\n" msgstr "Fehler beim Lesen von '%s'.\n"
#: main.c:47 #: main.c:46
msgid "Feb" msgid "Feb"
msgstr "Feb" msgstr "Feb"
@ -410,7 +418,7 @@ msgstr "Datei"
msgid "Filter" msgid "Filter"
msgstr "Filter" msgstr "Filter"
#: main.c:38 #: main.c:37
msgid "Fri" msgid "Fri"
msgstr "Fr" msgstr "Fr"
@ -434,16 +442,16 @@ msgstr "XML Datei(en) einlesen"
msgid "Info" msgid "Info"
msgstr "Informatinen" msgstr "Informatinen"
#. ++GETTEXT: these are three character months #. ++GETTEXT: these are three letter months - we allow up to six code bytes
#: main.c:47 #: main.c:46
msgid "Jan" msgid "Jan"
msgstr "Jan" msgstr "Jan"
#: main.c:48 #: main.c:47
msgid "Jul" msgid "Jul"
msgstr "Jul" msgstr "Jul"
#: main.c:47 #: main.c:46
msgid "Jun" msgid "Jun"
msgstr "Jun" msgstr "Jun"
@ -479,7 +487,7 @@ msgstr "Alarm: Batterie schwach"
msgid "Low Battery Warning" msgid "Low Battery Warning"
msgstr "Warnung: Batterie schwach" msgstr "Warnung: Batterie schwach"
#: main.c:47 #: main.c:46
msgid "Mar" msgid "Mar"
msgstr "Mär" msgstr "Mär"
@ -522,7 +530,7 @@ msgstr ""
msgid "MaxPress" msgid "MaxPress"
msgstr "Max.Druck" msgstr "Max.Druck"
#: main.c:47 #: main.c:46
msgid "May" msgid "May"
msgstr "Mai" msgstr "Mai"
@ -554,7 +562,7 @@ msgstr "Min. Temp."
msgid "Misc. Options" msgid "Misc. Options"
msgstr "Verschiedene Optionen" msgstr "Verschiedene Optionen"
#: main.c:38 #: main.c:37
msgid "Mon" msgid "Mon"
msgstr "Mo" msgstr "Mo"
@ -562,6 +570,10 @@ msgstr "Mo"
msgid "Multi-platform divelog software in C" msgid "Multi-platform divelog software in C"
msgstr "Multi-Platform Tauchprogram in C" msgstr "Multi-Platform Tauchprogram in C"
#: gtk-gui.c:904
msgid "New"
msgstr ""
#: gtk-gui.c:811 #: gtk-gui.c:811
msgid "New starting number" msgid "New starting number"
msgstr "Neue erste Nummer" msgstr "Neue erste Nummer"
@ -574,7 +586,7 @@ msgstr "Keine Tank Informationen"
msgid "Notes" msgid "Notes"
msgstr "Notizen" msgstr "Notizen"
#: main.c:48 #: main.c:47
msgid "Nov" msgid "Nov"
msgstr "Nov" msgstr "Nov"
@ -582,10 +594,15 @@ msgstr "Nov"
msgid "OTU" msgid "OTU"
msgstr "OTU" msgstr "OTU"
#: main.c:48 #: main.c:47
msgid "Oct" msgid "Oct"
msgstr "Okt" msgstr "Okt"
#: gtk-gui.c:905
#, fuzzy
msgid "Open"
msgstr "Datei öffnen"
#: gtk-gui.c:313 #: gtk-gui.c:313
msgid "Open File" msgid "Open File"
msgstr "Datei öffnen" msgstr "Datei öffnen"
@ -622,6 +639,11 @@ msgstr "Druck:"
msgid "Pretty print" msgid "Pretty print"
msgstr "Schön drucken" msgstr "Schön drucken"
#: gtk-gui.c:909
#, fuzzy
msgid "Print"
msgstr "Art des Ausdrucks"
#: print.c:505 #: print.c:505
msgid "Print only selected dives" msgid "Print only selected dives"
msgstr "Nur ausgewählte Tauchgänge drucken" msgstr "Nur ausgewählte Tauchgänge drucken"
@ -638,6 +660,10 @@ msgstr "Art des Ausdrucks"
msgid "Profile" msgid "Profile"
msgstr "Profil" msgstr "Profil"
#: gtk-gui.c:917
msgid "Quit"
msgstr ""
#: uemis.c:152 #: uemis.c:152
msgid "RGT Alert" msgid "RGT Alert"
msgstr "Alarm: verbleibende Gas-Zeit" msgstr "Alarm: verbleibende Gas-Zeit"
@ -695,10 +721,19 @@ msgstr "SDE Datei"
msgid "Safety Stop Violation" msgid "Safety Stop Violation"
msgstr "Verletzung des Sicherheitsstops" msgstr "Verletzung des Sicherheitsstops"
#: main.c:38 #: main.c:37
msgid "Sat" msgid "Sat"
msgstr "Sa" msgstr "Sa"
#: gtk-gui.c:906
msgid "Save"
msgstr ""
#: gtk-gui.c:907
#, fuzzy
msgid "Save As"
msgstr "Datei speichern unter"
#: gtk-gui.c:228 #: gtk-gui.c:228
msgid "Save Changes?" msgid "Save Changes?"
msgstr "Änderungen speichern?" msgstr "Änderungen speichern?"
@ -711,7 +746,7 @@ msgstr "Datei speichern unter"
msgid "SelectEvents" msgid "SelectEvents"
msgstr "Ereignisse auswählen" msgstr "Ereignisse auswählen"
#: main.c:48 #: main.c:47
msgid "Sep" msgid "Sep"
msgstr "Sep" msgstr "Sep"
@ -759,8 +794,8 @@ msgstr "Statistiken"
msgid "Suit" msgid "Suit"
msgstr "Taucheranzug" msgstr "Taucheranzug"
#. ++GETTEXT: these are three character days #. ++GETTEXT: these are three letter days - we allow up to six code bytes
#: main.c:38 #: main.c:37
msgid "Sun" msgid "Sun"
msgstr "So" msgstr "So"
@ -800,7 +835,7 @@ msgstr "Temperatur:"
msgid "Three" msgid "Three"
msgstr "Drei" msgstr "Drei"
#: main.c:38 #: main.c:37
msgid "Thu" msgid "Thu"
msgstr "Do" msgstr "Do"
@ -816,7 +851,7 @@ msgstr "Zoom ein-/ausschalten"
msgid "Total Time" msgid "Total Time"
msgstr "Gesamtzeit" msgstr "Gesamtzeit"
#: main.c:38 #: main.c:37
msgid "Tue" msgid "Tue"
msgstr "Di" msgstr "Di"
@ -864,7 +899,7 @@ msgstr "Volumen:"
msgid "Water Temp" msgid "Water Temp"
msgstr "Wassertemperatur" msgstr "Wassertemperatur"
#: main.c:38 #: main.c:37
msgid "Wed" msgid "Wed"
msgstr "Mi" msgstr "Mi"

184
po/nl.po
View file

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.0.1\n" "Project-Id-Version: 2.0.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-10-11 07:42+0900\n" "POT-Creation-Date: 2012-10-11 23:06+0900\n"
"PO-Revision-Date: 2012-10-11 13:08+0100\n" "PO-Revision-Date: 2012-10-11 13:08+0100\n"
"Last-Translator: Jacco van Koll <jacco.van.koll@gmail.com>\n" "Last-Translator: Jacco van Koll <jacco.van.koll@gmail.com>\n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
@ -35,8 +35,7 @@ msgstr ""
"\n" "\n"
"Langste" "Langste"
#: statistics.c:162 #: statistics.c:162 statistics.c:163
#: statistics.c:163
msgid "" msgid ""
"\n" "\n"
"Maximum" "Maximum"
@ -44,9 +43,7 @@ msgstr ""
"\n" "\n"
"Grootste" "Grootste"
#: statistics.c:161 #: statistics.c:161 statistics.c:162 statistics.c:163
#: statistics.c:162
#: statistics.c:163
msgid "" msgid ""
"\n" "\n"
"Minimum" "Minimum"
@ -66,15 +63,12 @@ msgstr ""
msgid " Please select dive computer and device. " msgid " Please select dive computer and device. "
msgstr " Selecteer duikcomputer en aansluiting. " msgstr " Selecteer duikcomputer en aansluiting. "
#: statistics.c:601 #: statistics.c:601 statistics.c:603 statistics.c:605
#: statistics.c:603
#: statistics.c:605
#, c-format #, c-format
msgid "%.*f %s/min" msgid "%.*f %s/min"
msgstr "%.*f %s/min" msgstr "%.*f %s/min"
#: print.c:252 #: print.c:252 statistics.c:512
#: statistics.c:512
#, c-format #, c-format
msgid "%d min" msgid "%d min"
msgstr "%d min" msgstr "%d min"
@ -94,6 +88,10 @@ msgstr "%dst %dmin"
msgid "(%s) or (%s)" msgid "(%s) or (%s)"
msgstr "(%s) of (%s)" msgstr "(%s) of (%s)"
#: gtk-gui.c:918
msgid "About"
msgstr ""
#: gtk-gui.c:912 #: gtk-gui.c:912
msgid "Add Dive" msgid "Add Dive"
msgstr "Duik toevoegen" msgstr "Duik toevoegen"
@ -106,11 +104,11 @@ msgstr "Duik Toevoegen"
msgid "Add to trip above" msgid "Add to trip above"
msgstr "Trip hierboven toevoegen" msgstr "Trip hierboven toevoegen"
#: main.c:47 #: main.c:46
msgid "Apr" msgid "Apr"
msgstr "Apr" msgstr "Apr"
#: main.c:48 #: main.c:47
msgid "Aug" msgid "Aug"
msgstr "Aug" msgstr "Aug"
@ -122,8 +120,7 @@ msgstr "Automatisch groeperen"
msgid "Automatically group dives in trips" msgid "Automatically group dives in trips"
msgstr "Automatisch de duiken in trips groeperen" msgstr "Automatisch de duiken in trips groeperen"
#: statistics.c:668 #: statistics.c:668 statistics.c:705
#: statistics.c:705
msgid "Avg Depth" msgid "Avg Depth"
msgstr "Gem. diepte" msgstr "Gem. diepte"
@ -143,9 +140,7 @@ msgstr "Gemiddelde tijd"
msgid "Bar" msgid "Bar"
msgstr "bar" msgstr "bar"
#: info.c:484 #: info.c:484 info.c:911 print.c:155
#: info.c:911
#: print.c:155
msgid "Buddy" msgid "Buddy"
msgstr "Buddy" msgstr "Buddy"
@ -161,6 +156,10 @@ msgstr "Kies standaard XML bestand"
msgid "Choose XML Files To Import Into Current Data File" msgid "Choose XML Files To Import Into Current Data File"
msgstr "Kies de XML bestanden om te importeren in huidig data bestand" msgstr "Kies de XML bestanden om te importeren in huidig data bestand"
#: gtk-gui.c:908
msgid "Close"
msgstr ""
#: divelist.c:2115 #: divelist.c:2115
msgid "Collapse all" msgid "Collapse all"
msgstr "Alle uitklappen" msgstr "Alle uitklappen"
@ -173,13 +172,11 @@ msgstr "Nieuwe trip hierboven invoegen"
msgid "CuFt" msgid "CuFt"
msgstr "cuft" msgstr "cuft"
#: divelist.c:1265 #: divelist.c:1265 gtk-gui.c:620
#: gtk-gui.c:620
msgid "Cyl" msgid "Cyl"
msgstr "Fles" msgstr "Fles"
#: equipment.c:926 #: equipment.c:926 equipment.c:1062
#: equipment.c:1062
msgid "Cylinder" msgid "Cylinder"
msgstr "Fles" msgstr "Fles"
@ -187,9 +184,7 @@ msgstr "Fles"
msgid "Cylinders" msgid "Cylinders"
msgstr "Flessen" msgstr "Flessen"
#: divelist.c:1258 #: divelist.c:1258 print.c:154 statistics.c:696
#: print.c:154
#: statistics.c:696
msgid "Date" msgid "Date"
msgstr "Datum" msgstr "Datum"
@ -201,7 +196,7 @@ msgstr "Datum en tijd"
msgid "Date:" msgid "Date:"
msgstr "Datum:" msgstr "Datum:"
#: main.c:48 #: main.c:47
msgid "Dec" msgid "Dec"
msgstr "Dec" msgstr "Dec"
@ -269,9 +264,7 @@ msgstr "Duik #%d - %s"
msgid "Dive #%d - %s %02d/%02d/%04d at %d:%02d" msgid "Dive #%d - %s %02d/%02d/%04d at %d:%02d"
msgstr "Duik #%d - %s %02d/%02d/%04d om %d:%02d" msgstr "Duik #%d - %s %02d/%02d/%04d om %d:%02d"
#: gtk-gui.c:1120 #: gtk-gui.c:1120 info.c:669 statistics.c:687
#: info.c:669
#: statistics.c:687
msgid "Dive Info" msgid "Dive Info"
msgstr "Duik informatie" msgstr "Duik informatie"
@ -319,8 +312,7 @@ msgstr "Duik-instructeur"
msgid "Dives" msgid "Dives"
msgstr "Duiken" msgstr "Duiken"
#: gtk-gui.c:911 #: gtk-gui.c:911 gtk-gui.c:1494
#: gtk-gui.c:1494
msgid "Download From Dive Computer" msgid "Download From Dive Computer"
msgstr "Download uit duikcomputer" msgstr "Download uit duikcomputer"
@ -368,13 +360,11 @@ msgstr "Trip overzicht bewerken"
msgid "Enable / Disable Events" msgid "Enable / Disable Events"
msgstr "Inschakelen / uitschakelen Evenementen" msgstr "Inschakelen / uitschakelen Evenementen"
#: equipment.c:965 #: equipment.c:965 equipment.c:1489
#: equipment.c:1489
msgid "End" msgid "End"
msgstr "Einde" msgstr "Einde"
#: gtk-gui.c:1116 #: gtk-gui.c:1116 info.c:504
#: info.c:504
msgid "Equipment" msgid "Equipment"
msgstr "Uitrusting" msgstr "Uitrusting"
@ -411,7 +401,7 @@ msgstr "Fout bij lezen van '%s'"
msgid "Failed to read '%s'.\n" msgid "Failed to read '%s'.\n"
msgstr "Fout bij lezen van '%s'.\n" msgstr "Fout bij lezen van '%s'.\n"
#: main.c:47 #: main.c:46
msgid "Feb" msgid "Feb"
msgstr "Feb" msgstr "Feb"
@ -427,7 +417,7 @@ msgstr "Bestand"
msgid "Filter" msgid "Filter"
msgstr "Filter" msgstr "Filter"
#: main.c:38 #: main.c:37
msgid "Fri" msgid "Fri"
msgstr "Vr" msgstr "Vr"
@ -451,16 +441,16 @@ msgstr "Import XML bestand(en)"
msgid "Info" msgid "Info"
msgstr "Informatie" msgstr "Informatie"
#. ++GETTEXT: these are three character months #. ++GETTEXT: these are three letter months - we allow up to six code bytes
#: main.c:47 #: main.c:46
msgid "Jan" msgid "Jan"
msgstr "Jan" msgstr "Jan"
#: main.c:48 #: main.c:47
msgid "Jul" msgid "Jul"
msgstr "Jul" msgstr "Jul"
#: main.c:47 #: main.c:46
msgid "Jun" msgid "Jun"
msgstr "Jun" msgstr "Jun"
@ -476,11 +466,7 @@ msgstr "Lijst"
msgid "Liter" msgid "Liter"
msgstr "Liter" msgstr "Liter"
#: divelist.c:1269 #: divelist.c:1269 info.c:458 info.c:478 info.c:905 print.c:155
#: info.c:458
#: info.c:478
#: info.c:905
#: print.c:155
msgid "Location" msgid "Location"
msgstr "Locatie" msgstr "Locatie"
@ -500,7 +486,7 @@ msgstr "Alarm: Lege batterij"
msgid "Low Battery Warning" msgid "Low Battery Warning"
msgstr "Warnung:Lege batterij" msgstr "Warnung:Lege batterij"
#: main.c:47 #: main.c:46
msgid "Mar" msgid "Mar"
msgstr "Mar" msgstr "Mar"
@ -516,8 +502,7 @@ msgstr "Master"
msgid "Max Deco Time Warning" msgid "Max Deco Time Warning"
msgstr "Warnung: Maximale Deco tijd" msgstr "Warnung: Maximale Deco tijd"
#: statistics.c:666 #: statistics.c:666 statistics.c:704
#: statistics.c:704
msgid "Max Depth" msgid "Max Depth"
msgstr "Max. Diepte" msgstr "Max. Diepte"
@ -544,7 +529,7 @@ msgstr ""
msgid "MaxPress" msgid "MaxPress"
msgstr "Max.Druk" msgstr "Max.Druk"
#: main.c:47 #: main.c:46
msgid "May" msgid "May"
msgstr "Mei" msgstr "Mei"
@ -576,7 +561,7 @@ msgstr "Min. Temp."
msgid "Misc. Options" msgid "Misc. Options"
msgstr "Diverse opties" msgstr "Diverse opties"
#: main.c:38 #: main.c:37
msgid "Mon" msgid "Mon"
msgstr "Ma" msgstr "Ma"
@ -584,6 +569,10 @@ msgstr "Ma"
msgid "Multi-platform divelog software in C" msgid "Multi-platform divelog software in C"
msgstr "Multi-Platform Duikprogramma in C" msgstr "Multi-Platform Duikprogramma in C"
#: gtk-gui.c:904
msgid "New"
msgstr ""
#: gtk-gui.c:811 #: gtk-gui.c:811
msgid "New starting number" msgid "New starting number"
msgstr "Nieuw begin nummer" msgstr "Nieuw begin nummer"
@ -592,26 +581,27 @@ msgstr "Nieuw begin nummer"
msgid "No Tank Data" msgid "No Tank Data"
msgstr "Geen fles informatie" msgstr "Geen fles informatie"
#: info.c:463 #: info.c:463 info.c:496 info.c:919
#: info.c:496
#: info.c:919
msgid "Notes" msgid "Notes"
msgstr "Notities" msgstr "Notities"
#: main.c:48 #: main.c:47
msgid "Nov" msgid "Nov"
msgstr "Nov" msgstr "Nov"
#: divelist.c:1268 #: divelist.c:1268 gtk-gui.c:635 statistics.c:713
#: gtk-gui.c:635
#: statistics.c:713
msgid "OTU" msgid "OTU"
msgstr "OTU" msgstr "OTU"
#: main.c:48 #: main.c:47
msgid "Oct" msgid "Oct"
msgstr "Okt" msgstr "Okt"
#: gtk-gui.c:905
#, fuzzy
msgid "Open"
msgstr "Bestand openen"
#: gtk-gui.c:313 #: gtk-gui.c:313
msgid "Open File" msgid "Open File"
msgstr "Bestand openen" msgstr "Bestand openen"
@ -632,8 +622,7 @@ msgstr "Waarschuwing: PO2 Groen"
msgid "PSI" msgid "PSI"
msgstr "psi" msgstr "psi"
#: gtk-gui.c:570 #: gtk-gui.c:570 gtk-gui.c:913
#: gtk-gui.c:913
msgid "Preferences" msgid "Preferences"
msgstr "Instellingen" msgstr "Instellingen"
@ -649,6 +638,11 @@ msgstr "Druk:"
msgid "Pretty print" msgid "Pretty print"
msgstr "Mooi afdrukken" msgstr "Mooi afdrukken"
#: gtk-gui.c:909
#, fuzzy
msgid "Print"
msgstr "Print type"
#: print.c:505 #: print.c:505
msgid "Print only selected dives" msgid "Print only selected dives"
msgstr "Alleen de geselecteerde duiken printen" msgstr "Alleen de geselecteerde duiken printen"
@ -665,6 +659,10 @@ msgstr "Print type"
msgid "Profile" msgid "Profile"
msgstr "Profiel" msgstr "Profiel"
#: gtk-gui.c:917
msgid "Quit"
msgstr ""
#: uemis.c:152 #: uemis.c:152
msgid "RGT Alert" msgid "RGT Alert"
msgstr "Alarm: resterende Gas-tijd" msgstr "Alarm: resterende Gas-tijd"
@ -673,8 +671,7 @@ msgstr "Alarm: resterende Gas-tijd"
msgid "RGT Warning" msgid "RGT Warning"
msgstr "Warnung: resterende Gas-tijd" msgstr "Warnung: resterende Gas-tijd"
#: info.c:489 #: info.c:489 info.c:916
#: info.c:916
msgid "Rating" msgid "Rating"
msgstr "Waardering" msgstr "Waardering"
@ -695,8 +692,7 @@ msgstr "Duik uit trip verwijderen"
msgid "Remove selected dives from trip" msgid "Remove selected dives from trip"
msgstr "Geselecteerde duiken uit trip verwijderen" msgstr "Geselecteerde duiken uit trip verwijderen"
#: gtk-gui.c:802 #: gtk-gui.c:802 gtk-gui.c:914
#: gtk-gui.c:914
msgid "Renumber" msgid "Renumber"
msgstr "Hernummeren" msgstr "Hernummeren"
@ -704,9 +700,7 @@ msgstr "Hernummeren"
msgid "Retry" msgid "Retry"
msgstr "Opnieuw" msgstr "Opnieuw"
#: divelist.c:1267 #: divelist.c:1267 gtk-gui.c:630 statistics.c:712
#: gtk-gui.c:630
#: statistics.c:712
msgid "SAC" msgid "SAC"
msgstr "Gas verbruiksratio" msgstr "Gas verbruiksratio"
@ -726,10 +720,19 @@ msgstr "SDE bestand"
msgid "Safety Stop Violation" msgid "Safety Stop Violation"
msgstr "veiligheidsstop overtreding" msgstr "veiligheidsstop overtreding"
#: main.c:38 #: main.c:37
msgid "Sat" msgid "Sat"
msgstr "Za" msgstr "Za"
#: gtk-gui.c:906
msgid "Save"
msgstr ""
#: gtk-gui.c:907
#, fuzzy
msgid "Save As"
msgstr "Bestand opslaan als"
#: gtk-gui.c:228 #: gtk-gui.c:228
msgid "Save Changes?" msgid "Save Changes?"
msgstr "Aanpassingen opslaan?" msgstr "Aanpassingen opslaan?"
@ -738,12 +741,11 @@ msgstr "Aanpassingen opslaan?"
msgid "Save File As" msgid "Save File As"
msgstr "Bestand opslaan als" msgstr "Bestand opslaan als"
#: gtk-gui.c:762 #: gtk-gui.c:762 gtk-gui.c:916
#: gtk-gui.c:916
msgid "SelectEvents" msgid "SelectEvents"
msgstr "gebeurtenissen selecteren" msgstr "gebeurtenissen selecteren"
#: main.c:48 #: main.c:47
msgid "Sep" msgid "Sep"
msgstr "Sept" msgstr "Sept"
@ -775,8 +777,7 @@ msgstr "Alarm: snelheid"
msgid "Speed Warning" msgid "Speed Warning"
msgstr "Warnung: snelheid" msgstr "Warnung: snelheid"
#: equipment.c:962 #: equipment.c:962 equipment.c:1488
#: equipment.c:1488
msgid "Start" msgid "Start"
msgstr "Start" msgstr "Start"
@ -788,15 +789,12 @@ msgstr "Statistieken"
msgid "Stats" msgid "Stats"
msgstr "Statistieken" msgstr "Statistieken"
#: divelist.c:1264 #: divelist.c:1264 gtk-gui.c:645 info.c:490 info.c:917
#: gtk-gui.c:645
#: info.c:490
#: info.c:917
msgid "Suit" msgid "Suit"
msgstr "Pak" msgstr "Pak"
#. ++GETTEXT: these are three character days #. ++GETTEXT: these are three letter days - we allow up to six code bytes
#: main.c:38 #: main.c:37
msgid "Sun" msgid "Sun"
msgstr "Zo" msgstr "Zo"
@ -836,12 +834,11 @@ msgstr "Temperatuur:"
msgid "Three" msgid "Three"
msgstr "Drie" msgstr "Drie"
#: main.c:38 #: main.c:37
msgid "Thu" msgid "Thu"
msgstr "Do" msgstr "Do"
#: info.c:791 #: info.c:791 print.c:154
#: print.c:154
msgid "Time" msgid "Time"
msgstr "Tijd" msgstr "Tijd"
@ -853,12 +850,11 @@ msgstr "Zoom in-/uitschakelen"
msgid "Total Time" msgid "Total Time"
msgstr "Totale tijd" msgstr "Totale tijd"
#: main.c:38 #: main.c:37
msgid "Tue" msgid "Tue"
msgstr "Di" msgstr "Di"
#: equipment.c:1485 #: equipment.c:1485 equipment.c:1513
#: equipment.c:1513
msgid "Type" msgid "Type"
msgstr "Type" msgstr "Type"
@ -902,13 +898,11 @@ msgstr "Volume:"
msgid "Water Temp" msgid "Water Temp"
msgstr "Watertemperatuur" msgstr "Watertemperatuur"
#: main.c:38 #: main.c:37
msgid "Wed" msgid "Wed"
msgstr "Wo" msgstr "Wo"
#: equipment.c:1012 #: equipment.c:1012 equipment.c:1609 gtk-gui.c:640
#: equipment.c:1609
#: gtk-gui.c:640
msgid "Weight" msgid "Weight"
msgstr "Gewicht" msgstr "Gewicht"
@ -932,8 +926,7 @@ msgstr ""
"Jaar\n" "Jaar\n"
" > Maand" " > Maand"
#: gtk-gui.c:915 #: gtk-gui.c:915 statistics.c:345
#: statistics.c:345
msgid "Yearly Statistics" msgid "Yearly Statistics"
msgstr "Jaarlijkse statistieken" msgstr "Jaarlijkse statistieken"
@ -982,8 +975,7 @@ msgstr "Geintergreerd"
msgid "kg" msgid "kg"
msgstr "kg" msgstr "kg"
#: divelist.c:1263 #: divelist.c:1263 gtk-gui.c:606
#: gtk-gui.c:606
msgid "lbs" msgid "lbs"
msgstr "US Pond" msgstr "US Pond"
@ -996,8 +988,7 @@ msgstr "min"
msgid "more than %d days" msgid "more than %d days"
msgstr "Meer dan %d dagen" msgstr "Meer dan %d dagen"
#: equipment.c:1378 #: equipment.c:1378 equipment.c:1398
#: equipment.c:1398
msgid "unkn" msgid "unkn"
msgstr "Onbek" msgstr "Onbek"
@ -1012,4 +1003,3 @@ msgstr "Niet gespecificeert"
#: equipment.c:1514 #: equipment.c:1514
msgid "weight" msgid "weight"
msgstr "Gewicht" msgstr "Gewicht"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.0.1\n" "Project-Id-Version: 2.0.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-10-11 07:42+0900\n" "POT-Creation-Date: 2012-10-11 23:06+0900\n"
"PO-Revision-Date: 2012-10-11 11:16+0100\n" "PO-Revision-Date: 2012-10-11 11:16+0100\n"
"Last-Translator: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>\n" "Last-Translator: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>\n"
"Language-Team: Norwegian Bokmål\n" "Language-Team: Norwegian Bokmål\n"
@ -88,6 +88,10 @@ msgstr "%dt %dmin"
msgid "(%s) or (%s)" msgid "(%s) or (%s)"
msgstr "(%s) eller (%s)" msgstr "(%s) eller (%s)"
#: gtk-gui.c:918
msgid "About"
msgstr ""
#: gtk-gui.c:912 #: gtk-gui.c:912
msgid "Add Dive" msgid "Add Dive"
msgstr "Nytt dykk" msgstr "Nytt dykk"
@ -100,11 +104,11 @@ msgstr "Nytt dykk"
msgid "Add to trip above" msgid "Add to trip above"
msgstr "Slå sammen med turen over" msgstr "Slå sammen med turen over"
#: main.c:47 #: main.c:46
msgid "Apr" msgid "Apr"
msgstr "apr" msgstr "apr"
#: main.c:48 #: main.c:47
msgid "Aug" msgid "Aug"
msgstr "aug" msgstr "aug"
@ -152,6 +156,10 @@ msgstr "Velg standard XML-fil"
msgid "Choose XML Files To Import Into Current Data File" msgid "Choose XML Files To Import Into Current Data File"
msgstr "Velg hvilke XML-filer du vil importere" msgstr "Velg hvilke XML-filer du vil importere"
#: gtk-gui.c:908
msgid "Close"
msgstr ""
#: divelist.c:2115 #: divelist.c:2115
msgid "Collapse all" msgid "Collapse all"
msgstr "Slå sammen alle" msgstr "Slå sammen alle"
@ -188,7 +196,7 @@ msgstr "Dato og tid"
msgid "Date:" msgid "Date:"
msgstr "Dato:" msgstr "Dato:"
#: main.c:48 #: main.c:47
msgid "Dec" msgid "Dec"
msgstr "des" msgstr "des"
@ -393,7 +401,7 @@ msgstr "Kunne ikke åpne '%s'"
msgid "Failed to read '%s'.\n" msgid "Failed to read '%s'.\n"
msgstr "Kunne ikke åpne '%s'.\n" msgstr "Kunne ikke åpne '%s'.\n"
#: main.c:47 #: main.c:46
msgid "Feb" msgid "Feb"
msgstr "feb" msgstr "feb"
@ -409,7 +417,7 @@ msgstr "Fil"
msgid "Filter" msgid "Filter"
msgstr "Filter" msgstr "Filter"
#: main.c:38 #: main.c:37
msgid "Fri" msgid "Fri"
msgstr "fre" msgstr "fre"
@ -433,16 +441,16 @@ msgstr "Importer XML-fil(er)"
msgid "Info" msgid "Info"
msgstr "Info" msgstr "Info"
#. ++GETTEXT: these are three character months #. ++GETTEXT: these are three letter months - we allow up to six code bytes
#: main.c:47 #: main.c:46
msgid "Jan" msgid "Jan"
msgstr "jan" msgstr "jan"
#: main.c:48 #: main.c:47
msgid "Jul" msgid "Jul"
msgstr "jul" msgstr "jul"
#: main.c:47 #: main.c:46
msgid "Jun" msgid "Jun"
msgstr "jun" msgstr "jun"
@ -478,7 +486,7 @@ msgstr "Alarm: dårlig batteri"
msgid "Low Battery Warning" msgid "Low Battery Warning"
msgstr "Advarsel: dårlig batteri" msgstr "Advarsel: dårlig batteri"
#: main.c:47 #: main.c:46
msgid "Mar" msgid "Mar"
msgstr "mar" msgstr "mar"
@ -521,7 +529,7 @@ msgstr ""
msgid "MaxPress" msgid "MaxPress"
msgstr "Maks. trykk" msgstr "Maks. trykk"
#: main.c:47 #: main.c:46
msgid "May" msgid "May"
msgstr "mai" msgstr "mai"
@ -553,7 +561,7 @@ msgstr "Min. temp"
msgid "Misc. Options" msgid "Misc. Options"
msgstr "Ymse valg" msgstr "Ymse valg"
#: main.c:38 #: main.c:37
msgid "Mon" msgid "Mon"
msgstr "man" msgstr "man"
@ -561,6 +569,10 @@ msgstr "man"
msgid "Multi-platform divelog software in C" msgid "Multi-platform divelog software in C"
msgstr "Dykkelogg i C for flere plattformer" msgstr "Dykkelogg i C for flere plattformer"
#: gtk-gui.c:904
msgid "New"
msgstr ""
#: gtk-gui.c:811 #: gtk-gui.c:811
msgid "New starting number" msgid "New starting number"
msgstr "Nytt startnummer" msgstr "Nytt startnummer"
@ -573,7 +585,7 @@ msgstr "Ingen tankinformasjon"
msgid "Notes" msgid "Notes"
msgstr "Notater" msgstr "Notater"
#: main.c:48 #: main.c:47
msgid "Nov" msgid "Nov"
msgstr "nov" msgstr "nov"
@ -581,10 +593,15 @@ msgstr "nov"
msgid "OTU" msgid "OTU"
msgstr "OTU" msgstr "OTU"
#: main.c:48 #: main.c:47
msgid "Oct" msgid "Oct"
msgstr "okt" msgstr "okt"
#: gtk-gui.c:905
#, fuzzy
msgid "Open"
msgstr "Åpne fil"
#: gtk-gui.c:313 #: gtk-gui.c:313
msgid "Open File" msgid "Open File"
msgstr "Åpne fil" msgstr "Åpne fil"
@ -621,6 +638,11 @@ msgstr "Trykk:"
msgid "Pretty print" msgid "Pretty print"
msgstr "Pen utskrift" msgstr "Pen utskrift"
#: gtk-gui.c:909
#, fuzzy
msgid "Print"
msgstr "Utskriftstype"
#: print.c:505 #: print.c:505
msgid "Print only selected dives" msgid "Print only selected dives"
msgstr "Skriv ut valgte dykk" msgstr "Skriv ut valgte dykk"
@ -637,6 +659,10 @@ msgstr "Utskriftstype"
msgid "Profile" msgid "Profile"
msgstr "Profil" msgstr "Profil"
#: gtk-gui.c:917
msgid "Quit"
msgstr ""
#: uemis.c:152 #: uemis.c:152
msgid "RGT Alert" msgid "RGT Alert"
msgstr "Alarm: gjenværende gasstid" msgstr "Alarm: gjenværende gasstid"
@ -694,10 +720,19 @@ msgstr "SDE-fil"
msgid "Safety Stop Violation" msgid "Safety Stop Violation"
msgstr "Brudd på sikkerhetsstopp" msgstr "Brudd på sikkerhetsstopp"
#: main.c:38 #: main.c:37
msgid "Sat" msgid "Sat"
msgstr "lør" msgstr "lør"
#: gtk-gui.c:906
msgid "Save"
msgstr ""
#: gtk-gui.c:907
#, fuzzy
msgid "Save As"
msgstr "Lagre fil som"
#: gtk-gui.c:228 #: gtk-gui.c:228
msgid "Save Changes?" msgid "Save Changes?"
msgstr "Lagre endringer?" msgstr "Lagre endringer?"
@ -710,7 +745,7 @@ msgstr "Lagre fil som"
msgid "SelectEvents" msgid "SelectEvents"
msgstr "Velg hendelser" msgstr "Velg hendelser"
#: main.c:48 #: main.c:47
msgid "Sep" msgid "Sep"
msgstr "sep" msgstr "sep"
@ -758,8 +793,8 @@ msgstr "Statistikk"
msgid "Suit" msgid "Suit"
msgstr "Drakt" msgstr "Drakt"
#. ++GETTEXT: these are three character days #. ++GETTEXT: these are three letter days - we allow up to six code bytes
#: main.c:38 #: main.c:37
msgid "Sun" msgid "Sun"
msgstr "søn" msgstr "søn"
@ -799,7 +834,7 @@ msgstr "Temperatur:"
msgid "Three" msgid "Three"
msgstr "Alle" msgstr "Alle"
#: main.c:38 #: main.c:37
msgid "Thu" msgid "Thu"
msgstr "tor" msgstr "tor"
@ -815,7 +850,7 @@ msgstr "Zoom av/på"
msgid "Total Time" msgid "Total Time"
msgstr "Total tid" msgstr "Total tid"
#: main.c:38 #: main.c:37
msgid "Tue" msgid "Tue"
msgstr "tir" msgstr "tir"
@ -863,7 +898,7 @@ msgstr "Volum:"
msgid "Water Temp" msgid "Water Temp"
msgstr "Vanntemperatur" msgstr "Vanntemperatur"
#: main.c:38 #: main.c:37
msgid "Wed" msgid "Wed"
msgstr "ons" msgstr "ons"