summaryrefslogtreecommitdiff
path: root/media/openttd.desktop.translation.awk
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2012-04-08 14:29:31 +0000
committerrubidium <rubidium@openttd.org>2012-04-08 14:29:31 +0000
commit1e817ae2412bc0f00129688c271c7d4f23d33b74 (patch)
tree1f93a49beb8049f7110165124997c713b484f11a /media/openttd.desktop.translation.awk
parentb57bef91a12eb78dcd1fb3f106463b9081f09ef0 (diff)
downloadopenttd-1e817ae2412bc0f00129688c271c7d4f23d33b74.tar.xz
(svn r24100) -Fix: also provide translated comments in the desktop file without language name postfix
Diffstat (limited to 'media/openttd.desktop.translation.awk')
-rw-r--r--media/openttd.desktop.translation.awk6
1 files changed, 3 insertions, 3 deletions
diff --git a/media/openttd.desktop.translation.awk b/media/openttd.desktop.translation.awk
index 943cb498f..ee8fdd970 100644
--- a/media/openttd.desktop.translation.awk
+++ b/media/openttd.desktop.translation.awk
@@ -6,10 +6,10 @@
# See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
#
-# Awk script to automatically generate a single comment line
-# for a translated desktop shortcut. If it does not exist there
+# Awk script to automatically generate a comment lines for
+# a translated desktop shortcut. If it does not exist there
# is no output.
#
/##isocode/ { lang = $2; next }
-/STR_DESKTOP_SHORTCUT_COMMENT/ { sub("^[^:]*:", "", $0); print "Comment[" lang "]=" $0; next}
+/STR_DESKTOP_SHORTCUT_COMMENT/ { sub("^[^:]*:", "", $0); print "Comment[" lang "]=" $0; sub("_.*", "", lang); print "Comment[" lang "]=" $0; next}