Changeset 23091 in osm


Ignore:
Timestamp:
2010-09-10T09:59:47+02:00 (14 years ago)
Author:
stoecker
Message:

fix order of comments for better translators support

Location:
applications/editors/josm/i18n
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/i18n/convpreset.pl

    r17973 r23091  
    2727    if($line =~ /name_context=(".*?")/)
    2828    {
    29       print "trc($1, $val); /* item $item */\n";
     29      print "/* item $item */ trc($1, $val);\n";
    3030    }
    3131    else
    3232    {
    33       print "tr($val); /* item $item */\n";
     33      print "/* item $item */ tr($val);\n";
    3434    }
    3535  }
     
    4141    if($line =~ /name_context=(".*?")/)
    4242    {
    43       print "trc($1,$gr); /* group $group */\n";
     43      print "/* group $group */ trc($1,$gr);\n";
    4444    }
    4545    else
    4646    {
    47       print "tr($gr); /* group $group */\n";
     47      print "/* group $group */ tr($gr);\n";
    4848    }
    4949  }
     
    5757    if($line =~ /text_context=(".*?")/)
    5858    {
    59       print "trc($1,$text); /* item $item label $text */\n";
     59      print "/* item $item label $text */ trc($1,$text);\n";
    6060    }
    6161    else
    6262    {
    63       print "tr($text); /* item $item label $text */\n";
     63      print "/* item $item label $text */ tr($text);\n";
    6464    }
    6565  }
     
    6969    if($line =~ /text_context=(".*?")/)
    7070    {
    71       print "trc($1,$n); /* item $item text $n */\n";
     71      print "/* item $item text $n */ trc($1,$n);\n";
    7272    }
    7373    else
    7474    {
    75       print "tr($n); /* item $item text $n */\n";
     75      print "/* item $item text $n */ tr($n);\n";
    7676    }
    7777  }
     
    8181    if($line =~ /text_context=(".*?")/)
    8282    {
    83       print "trc($1,$n); /* item $item check $n */\n";
     83      print "/* item $item check $n */ trc($1,$n);\n";
    8484    }
    8585    else
    8686    {
    87       print "tr($n); /* item $item check $n */\n";
     87      print "/* item $item check $n */ tr($n);\n";
    8888    }
    8989  }
     
    9393    if($line =~ /text_context=(".*?")/)
    9494    {
    95       print "trc($1,$n); /* item $item role $n */\n";
     95      print "/* item $item role $n */ trc($1,$n);\n";
    9696    }
    9797    else
    9898    {
    99       print "tr($n); /* item $item role $n */\n";
     99      print "/* item $item role $n */ tr($n);\n";
    100100    }
    101101  }
     
    107107    if($line =~ /text_context=(".*?")/)
    108108    {
    109       print "trc($1,$n); /* item $item combo $n */";
     109      print "/* item $item combo $n */ trc($1,$n);";
    110110    }
    111111    else
    112112    {
    113       print "tr($n); /* item $item combo $n */";
     113      print "/* item $item combo $n */ tr($n);";
    114114    }
    115115    foreach my $val (split ",",$vals)
     
    126126    if($line =~ /text_context=(".*?")/)
    127127    {
    128       print "trc($1,$n); /* item $item combo $n */";
     128      print "/* item $item combo $n */ trc($1,$n);";
    129129    }
    130130    else
    131131    {
    132       print "tr($n); /* item $item combo $n */";
     132      print "/* item $item combo $n */ tr($n);";
    133133    }
    134134    foreach my $val (split ",",$vals)
  • applications/editors/josm/i18n/convstyle.pl

    r13392 r23091  
    1818  if($line =~ /<rules\s+name=(".*?")/)
    1919  {
    20     print "tr($1); /* mappaint style named $1 */\n";
     20    print "/* mappaint style named $1 */ tr($1);\n";
    2121  }
    2222  elsif($line =~ /colour="([^"]+)#/)
    2323  {
    24     print "tr(\"$1\"); /* color $1 */\n";
     24    print "/* color $1 */ tr(\"$1\");\n";
    2525  }
    2626  else
  • applications/editors/josm/i18n/convsurveyor.pl

    r13392 r23091  
    2121  if($line =~ /^#(.*)$/)
    2222  {
    23     print "//$1\n";
     23    print "/* $1 */\n";
    2424  }
    2525  elsif($line =~ /^$/)
     
    2929  elsif($line =~ /<button label=\"(.*?)\"/)
    3030  {
    31     print "tr(\"$1\"); // $line\n";
     31    print "/* $line*/ tr(\"$1\");\n";
    3232  }
    3333  else
  • applications/editors/josm/i18n/convvalidator.pl

    r13392 r23091  
    2121  if($line =~ /^#(.*)$/)
    2222  {
    23     print "//$1\n";
     23    print "/* $1 */\n";
    2424  }
    2525  elsif($line =~ /^$/)
     
    2929  elsif($line =~ /(.*) *# *(.*) *$/)
    3030  {
    31     print "tr(\"$2\"); // $1\n";
     31    print "/* $1 */ tr(\"$2\");\n";
    3232  }
    3333  else
  • applications/editors/josm/i18n/convwms.pl

    r13392 r23091  
    2121  if($line =~ /^#(.*)$/)
    2222  {
    23     print "//$1\n";
     23    print "/* $1 */\n";
    2424  }
    2525  elsif($line =~ /^$/)
     
    2929  elsif($line =~ /^(.*?);(.*?);(.*)$/)
    3030  {
    31     print "tr(\"$2\"); // $3\n";
     31    print "/* $3 */ tr(\"$2\");\n";
    3232  }
    3333  else
Note: See TracChangeset for help on using the changeset viewer.