gimp/po-windows-installer/da.po

412 lines
15 KiB
Plaintext
Raw Normal View History

# Danish translation for gimp-windows-installer.
# Copyright (C) 2018 the gimp authors.
# This file is distributed under the same license as the gimp package.
#
# Alan Mortensen <alanmortensen.am@gmail.com>, 2018 (oversat og gennemgået i sin helhed).
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-windows-installer\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\n"
2023-01-03 23:10:39 +08:00
"POT-Creation-Date: 2022-11-22 14:38+0000\n"
"PO-Revision-Date: \n"
"Last-Translator: Alan Mortensen <alanmortensen.am@gmail.com>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
2023-01-03 23:10:39 +08:00
"X-Generator: Poedit 3.0.1\n"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:7
msgid "License Agreement"
msgstr "Licensaftale"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:10
msgid "Setup built by Jernej Simonèiè, jernej-gimp@ena.si"
msgstr "Installationsprogrammet skrevet af Jernej Simonèiè, jernej-gimp@ena.si"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:13
#: build/windows/installer/lang/setup.isl.xml.in:16
msgid "This version of GIMP requires Windows 7, or a newer version of Windows."
msgstr ""
"Denne version af GIMP kræver Windows 7 eller en nyere version af Windows."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:23
msgid "Development version"
msgstr "Udviklingsversion"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:28
msgid ""
"This is a development version of GIMP where some features may not be "
"finished, or it may be unstable.%nThis version of GIMP is not intended for "
"day-to-day work as it may be unstable, and you could lose your work.%nIf you "
"encounter any problems, first verify that they haven't already been fixed in "
"GIT before you contact the developers or report it in GIMP gitlab:%n_https://"
"gitlab.gnome.org/GNOME/gimp/issues%n%nDo you wish to continue with "
"installation anyway?"
msgstr ""
"Dette er en udviklingsversion af GIMP, hvor nogle funktioner ikke er "
"færdiggjorte, eller programmet kan være ustabilt.%nDenne version af GIMP er "
"ikke beregnet til daglig brug, da den kan være ustabil, og du kan risikere "
"at miste dit arbejde.%nStøder du på problemer så undersøg, at de ikke er "
"allerede er løst i GIT, før du kontakter udviklerne eller rapporterer det i "
"GIMP-gitlab:%n_https://gitlab.gnome.org/GNOME/gimp/issues%n%nØnsker du "
"alligevel at fortsætte installationen?"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:31
#: build/windows/installer/lang/setup.isl.xml.in:54
msgid "&Continue"
msgstr "&Fortsæt"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:34
msgid "Exit"
msgstr "Afslut"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:44
msgid ""
"This version of GIMP requires a processor that supports SSE instructions."
msgstr ""
"Denne version af GIMP kræver en processor der understøtter SSE-instruktioner."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:48
msgid "Display settings problem"
msgstr "Problemer med skærmindstillinger"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:51
msgid ""
"Setup has detected that your Windows is not running in 32 bits-per-pixel "
"display mode. This has been known to cause stability problems with GIMP, so "
"it's recommended to change the display colour depth to 32BPP before "
"continuing."
msgstr ""
"Installationen har registreret at Windows skærmindstillinger ikke anvender "
"32-bits-per-pixel. Det er kendt for at skabe stabilitetsproblemer for GIMP, "
"så det anbefales at ændre skærmens farvedybde til ægte farver (32 bit) før "
"du fortsætter."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:57
msgid "E&xit"
msgstr "&Afslut"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:61
msgid ""
"GIMP is now ready to be installed. Click the Install now button to install "
"using the default settings, or click the Customize button if you'd like to "
"have more control over what gets installed."
msgstr ""
"GIMP er nu klar til at blive installeret. Klik på knappen Installer nu for "
"at installere med standardindstillingerne, eller klik på knappen "
"Brugerdefineret, hvis du ønsker at vælge, hvad der skal installeres."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:64
msgid "&Install"
msgstr "&Installer"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:67
msgid "&Customize"
msgstr "&Brugerdefineret"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:72
msgid "Compact installation"
msgstr "Kompakt installation"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:76
msgid "Custom installation"
msgstr "Brugerdefineret installation"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:80
msgid "Full installation"
msgstr "Fuld installation"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:85
msgid "Description"
msgstr "Beskrivelse"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:89
msgid "GIMP"
msgstr "GIMP"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:93
msgid "GIMP and all default plug-ins"
msgstr "GIMP og alle standardudvidelsesmoduler"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:97
msgid "Run-time libraries"
msgstr "Afviklingsbiblioteker"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:101
msgid "Run-time libraries used by GIMP, including GTK Run-time Environment"
2023-01-03 23:10:39 +08:00
msgstr "Afviklingsbiblioteker som GIMP anvender, inklusive GTK-afviklingsmiljø"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:105
msgid "Debug symbols"
msgstr "Fejlsøgningssymboler"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:109
msgid "Include information to help with debugging GIMP"
msgstr "Medtag information for at hjælpe med fejlsøgning af GIMP"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:113
msgid "MS-Windows engine for GTK"
2023-01-03 23:10:39 +08:00
msgstr "MS-Windows-motor til GTK"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:117
msgid "Native Windows look for GIMP"
msgstr "Standard Windows udseende til GIMP"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:121
msgid "Support for old plug-ins"
msgstr "Understøttelse af gamle udvidelsesmoduler"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:125
msgid "Install libraries needed by old third-party plug-ins"
msgstr ""
"Installer biblioteker der kræves til gamle udvidelsesmoduler fra tredjepart"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:129
#: build/windows/installer/lang/setup.isl.xml.in:133
msgid "Translations"
msgstr "Oversættelser"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:137
msgid "Python scripting"
msgstr "Python-scripting"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:141
msgid "Allows you to use GIMP plugins written in Python scripting language."
msgstr ""
"Giver mulighed for at bruge GIMP-udvidelsesmoduler, som er skrevet i "
"scriptingsproget Python."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:145
msgid "Lua scripting"
msgstr "Lua-scripting"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:149
msgid "Allows you to use GIMP plugins written in Lua scripting language."
msgstr ""
"Giver mulighed for at bruge GIMP-udvidelsesmoduler, som er skrevet i "
"scriptingsproget Lua."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:153
msgid "MyPaint brushes"
msgstr "MyPaint-pensler"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:157
msgid "Install the default set of MyPaint brushes"
msgstr "Installer standardsættet af MyPaint-pensler"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:161
msgid "PostScript support"
msgstr "Understøttelse af PostScript"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:165
msgid "Allow GIMP to load PostScript files"
msgstr "Giver GIMP mulighed for at indlæse PostScript-filer"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:169
msgid "Support for 32-bit plug-ins"
msgstr "Understøttelse af 32-bit-udvidelsesmoduler"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:173
msgid ""
"Include files necessary for using 32-bit plug-ins.%nRequired for Python "
"support."
msgstr ""
"Inkluder filer der er nødvendige for at anvende 32-bit-udvidelsesmoduler."
"%nPåkrævet for understøttelse af Python."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:178
msgid "Additional icons:"
msgstr "Yderligere ikoner:"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:182
msgid "Create a &desktop icon"
msgstr "Opret ikon på &skrivebordet"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:186
msgid "Create a &Quick Launch icon"
msgstr "Opret ikon i &Hurtig start"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:190
msgid "Remove previous GIMP version"
msgstr "Fjern forrige GIMP-version"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:195
msgid ""
"There was a problem updating GIMP's environment in %1. If you get any errors "
"loading the plug-ins, try uninstalling and re-installing GIMP."
msgstr ""
"Der opstod et problem ved opdatering af GIMPs miljø i %1. Hvis du får fejl "
"ved indlæsning af udvidelsesmoduler, så prøv at afinstallere og "
"geninstallere GIMP."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:199
msgid "Error extracting temporary data."
msgstr "Fejl ved udtrækning af midlertidige data."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:203
msgid "Error updating Python interpreter info."
msgstr "Fejl ved opdatering af Python-fortolkerinformation."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:207
msgid "Error updating MyPaint brushes info."
msgstr "Fejl ved opdatering af MyPaint-penselinformation."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:211
msgid "There was an error updating %1."
msgstr "Der opstod en fejl ved opdatering af %1."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:215
msgid "There was an error updating GIMP's configuration file %1."
msgstr "Der opstod en fejl ved opdatering af GIMP's konfigurationsfil %1."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:220
msgid "Edit with GIMP"
msgstr "Rediger i GIMP"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:225
msgid "Select file associations"
msgstr "Vælg filtilknytninger"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:229
msgid "Extensions:"
msgstr "Filtyper:"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:233
msgid "Select the file types you wish to associate with GIMP"
msgstr "Vælg de filtyper som du vil have knyttet til GIMP"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:237
msgid ""
"This will make selected files open in GIMP when you double-click them in "
"Explorer."
msgstr ""
"Markerede filer åbnes i GIMP, når du dobbeltklikker på dem i Stifinder."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:241
msgid "Select &All"
msgstr "Vælg &alle"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:245
msgid "Unselect &All"
msgstr "Fravælg &alle"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:249
msgid "Select &Unused"
msgstr "Vælg &ubrugte"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:254
msgid "File types to associate with GIMP:"
msgstr "Filtyper der skal tilknyttes GIMP:"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:258
msgid "Removing previous version of GIMP:"
msgstr "Fjerner forrige version af GIMP:"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:262
msgid ""
"GIMP %1 cannot be installed over your currently installed GIMP version, and "
"the automatic uninstall of old version has failed.%n%nPlease remove the "
"previous version of GIMP yourself before installing this version in %2, or "
"choose a Custom install, and select a different installation folder.%n%nThe "
"Setup will now exit."
msgstr ""
"GIMP %1 kan ikke installeres oven på den GIMP-version der er installeret i "
2023-01-03 23:10:39 +08:00
"øjeblikket, og automatisk afinstallation af den gamle version mislykkedes."
"%n%nFjern venligst selv den forrige version af GIMP, før denne version "
"installeres i %2, eller vælg Brugerdefineret installation, og vælg en anden "
"installationsmappe.%n%nInstallationen vil nu blive afsluttet."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:266
msgid ""
"GIMP %1 cannot be installed over your currently installed GIMP version, and "
2023-01-03 23:10:39 +08:00
"Setup couldn't determine how to remove the old version automatically."
"%n%nPlease remove the previous version of GIMP and any add-ons yourself "
"before installing this version in %2, or choose a Custom install, and select "
"a different installation folder.%n%nThe Setup will now exit."
msgstr ""
"GIMP %1 kan ikke installeres oven på den GIMP-version der er installeret i "
"øjeblikket, og installationen var ikke i stand til at fastslå, hvordan den "
"gamle version kunne fjernes.%n%nFjern venligst selv den forrige version af "
"GIMP og alle tilføjelser, før denne version installeres i %2, eller vælg "
2023-01-03 23:10:39 +08:00
"Brugerdefineret installation, og vælg en anden installationsmappe."
"%n%nInstallationen vil nu blive afsluttet."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:270
msgid ""
"Previous GIMP version was removed successfully, but Windows has to be "
"restarted before the Setup can continue.%n%nAfter restarting your computer, "
"Setup will continue next time an administrator logs in."
msgstr ""
"Forrige GIMP-version blev fjernet, men Windows skal genstartes før "
"installationen kan fortsætte.%n%nEfter computeren er blevet genstartet vil "
"installationen fortsætte, næste gang en administrator logger på."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:275
msgid "There was an error restarting the Setup. (%1)"
msgstr "Der opstod en fejl ved genstart af installationen. (%1)"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:279
msgid "Cleaning up old files..."
msgstr "Rydder op i gamle filer …"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:284
msgid "Remember: GIMP is Free Software.%n%nPlease visit"
msgstr "Husk: GIMP er fri software.%n%nBesøg venligst"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:288
msgid "for free updates."
msgstr "for gratis opdateringer."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:292
msgid "Setting up file associations..."
msgstr "Opsætter filtilknytninger …"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:295
msgid "Setting up environment for GIMP Python extension..."
msgstr "Opsætter miljø til GIMP Python-udvidelse …"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:298
msgid "Setting up MyPaint brushes..."
msgstr "Opsætter MyPaint-pensler …"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:301
msgid "Setting up GIMP environment..."
msgstr "Opsætter GIMP-miljøet …"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:304
msgid "Setting up GIMP configuration for 32-bit plug-in support..."
msgstr ""
"Opsætter GIMP-konfiguration til understøttelse af 32-bit-udvidelsesmoduler …"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:309
msgid "Launch GIMP"
msgstr "Start GIMP"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:314
msgid "Removing add-on"
msgstr "Fjerner tilføjelse"
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:318
msgid "Internal error (%1)."
msgstr "Intern fejl (%1)."
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:323
msgid ""
"GIMP does not appear to be installed in the selected directory. Continue "
"anyway?"
msgstr ""
"GIMP ser ikke ud til at være installeret i den angivne mappe. Fortsæt "
"alligevel?"
#~ msgid ""
#~ "Setup built by Jernej Simonèiè, jernej-gimp@ena.si%n%nImage on opening "
#~ "page of Setup by Alexia_Death%nImage on closing page of Setup by Jakub "
#~ "Steiner"
#~ msgstr ""
2023-01-03 23:10:39 +08:00
#~ "Installationen er lavet af Jernej Simonèiè, jernej-gimp@ena."
#~ "si%n%nBilledet på åbningssiden er lavet af Alexia_Death%nBilledet på "
#~ "afslutningssiden er lavet af Jakub Steiner"