]> git.sesse.net Git - vlc/commitdiff
Win32 installer: add Danish translation
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 16 Jun 2010 19:13:08 +0000 (21:13 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 16 Jun 2010 19:18:30 +0000 (21:18 +0200)
PLEASE check it

Makefile.am
extras/package/win32/languages/danish.nsh [new file with mode: 0644]
extras/package/win32/vlc.win32.nsi.in

index 9069b441b7ebd3a836d3aa3de56159c90e057238..a536e1de399cd699277bda9b1ea2897713823af4 100644 (file)
@@ -55,6 +55,7 @@ EXTRA_DIST = \
        extras/package/win32/languages/brazilian_portuguese.nsh \
        extras/package/win32/languages/bulgarian.nsh \
        extras/package/win32/languages/catalan.nsh \
+       extras/package/win32/languages/danish.nsh \
        extras/package/win32/languages/dutch.nsh \
        extras/package/win32/languages/english.nsh \
        extras/package/win32/languages/estonian.nsh \
diff --git a/extras/package/win32/languages/danish.nsh b/extras/package/win32/languages/danish.nsh
new file mode 100644 (file)
index 0000000..3eb7eb4
--- /dev/null
@@ -0,0 +1,61 @@
+StrCpy $Name_Section01 "Media Player (Nødvendig)"
+StrCpy $Name_Section02a "Start Menu Genvej"
+StrCpy $Name_Section02b "Skrivebord Genvej"
+StrCpy $Name_Section03 "Mozilla plugin"
+StrCpy $Name_Section04 "ActiveX plugin"
+StrCpy $Name_Section05 "Discs afspilning"
+StrCpy $Name_Section06 "Filtype foreninger"
+StrCpy $Name_SectionGroupAudio "Lyd Filer"
+StrCpy $Name_SectionGroupVideo "Video Filer"
+StrCpy $Name_SectionGroupOther "Andre"
+StrCpy $Name_Section07 "Kontekst menu"
+StrCpy $Name_Section08 "Slet præferencer og cache"
+
+StrCpy $Desc_Section01 \
+    "Media Player selv"
+StrCpy $Desc_Section02a \
+    "Tilføjer genveje til din start menu for nem adgang"
+StrCpy $Desc_Section02b \
+    "Tilføjer ikon til skrivebordet for let adgang"
+StrCpy $Desc_Section03 \
+    "VLC Mozilla og Mozilla Firefox plugin"
+StrCpy $Desc_Section04 \
+    "VLC ActiveX plugin"
+StrCpy $Desc_Section05 \
+    "DVD og CD-afspilning registrering"
+StrCpy $Desc_Section06 \
+    "Sætter VLC Media Player som standard program for de angivne filtype"
+StrCpy $Desc_Section07 \
+    "Tilføj kontekst menu artikler ('Afspil med VLC Media Player' og 'Tilføj til VLC's Afspilningsliste')"
+StrCpy $Desc_Section08 \
+    "Sletter VLC Media Player præferencer og cache filer, levn fra tidligere installationer"
+
+StrCpy $Message_AlreadyInstalled  \
+"VLC Media Player er allerede blevet installeret. $\nVil du fjerne \
+den tidligere version, før du installerer $(^Name) ?"
+
+StrCpy $Name_Section91 "Afinstaller"
+StrCpy $Name_Section92 "Slet præferencer og cache"
+
+StrCpy $Desc_Section91 \
+"Afinstaller VLC Media Player og alle dens komponenter"
+StrCpy $Desc_Section92 \
+"Sletter VLC Media Player præferencer og cache filer"
+
+StrCpy $ShellAssociation_Play "Afspil"
+StrCpy $ContextMenuEntry_PlayWith "Afspil med VLC Media Player"
+StrCpy $ContextMenuEntry_AddToPlaylist "Tilføj til VLC's Afspilningsliste"
+
+StrCpy $Link_VisitWebsite "Besøg VideoLAN VLC Media Player Webside"
+
+StrCpy $Name_InstTypeRecommended "Anbefalet"
+StrCpy $Name_InstTypeMinimum "Minimum"
+StrCpy $Name_InstTypeFull "Fuld"
+
+StrCpy $Action_OnArrivalDVD "Afspil DVD film"
+StrCpy $Action_OnArrivalAudioCD "Afspil lyd CD"
+StrCpy $Action_OnArrivalVCDMovie "Afspil VCD film"
+StrCpy $Action_OnArrivalSVCDMovie "Afspil SVCD film"
+StrCpy $Action_OnArrivalVideoFiles "Afspil video filer"
+StrCpy $Action_OnArrivalMusicFiles "Afspil lyd filer"
+StrCpy $Action_OnArrivalDVDAudio "Afspil lyd DVD"
index ed255c1e77e45814164d2bde5fb5a038d7db0c90..3527214ae395f5c9f513caafd39a93e388d27e50 100644 (file)
@@ -797,6 +797,7 @@ UAC_Success:
   StrCmp $LANGUAGE ${LANG_SLOVAK} Slovak 0
   StrCmp $LANGUAGE ${LANG_POLISH} Polish 0
   StrCmp $LANGUAGE ${LANG_DUTCH} Dutch 0
+  StrCmp $LANGUAGE ${LANG_DANISH} Danish 0
   StrCmp $LANGUAGE ${LANG_SIMPCHINESE} SChinese 0
   StrCmp $LANGUAGE ${LANG_FINNISH} Finnish 0
   StrCmp $LANGUAGE ${LANG_JAPANESE} Japanese 0
@@ -1131,6 +1132,7 @@ UAC_Success:
   StrCmp $LANGUAGE ${LANG_SLOVAK} Slovak 0
   StrCmp $LANGUAGE ${LANG_POLISH} Polish 0
   StrCmp $LANGUAGE ${LANG_DUTCH} Dutch 0
+  StrCmp $LANGUAGE ${LANG_DANISH} Danish 0
   StrCmp $LANGUAGE ${LANG_SIMPCHINESE} SChinese 0
   StrCmp $LANGUAGE ${LANG_FINNISH} Finnish 0
   StrCmp $LANGUAGE ${LANG_JAPANESE} Japanese 0
@@ -1170,6 +1172,9 @@ UAC_Success:
   Dutch:
   !include "languages\dutch.nsh"
   Goto EndLanguageCmp
+  Danish:
+  !include "languages\danish.nsh"
+  Goto EndLanguageCmp
   Schinese:
   !include "languages\schinese.nsh"
   Goto EndLanguageCmp