Changeset 2:4359ef253936

Show
Ignore:
Timestamp:
02/09/10 01:08:44 (6 months ago)
Author:
sgk
Branch:
default
Message:

A single quote has a special meaning in the MessageFormat? pattern.

Location:
app/src/processing/app
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • app/src/processing/app/Resources_ja.po

    r1 r2  
    12811281#: Serial.java:147 
    12821282msgid "" 
    1283 "Serial port '{0}' already in use. Try quiting any programs that may be using " 
     1283"Serial port ''{0}'' already in use. Try quiting any programs that may be using " 
    12841284"it." 
    12851285msgstr "" 
    12861286 
    12871287#: Serial.java:154 
    1288 msgid "Error opening serial port '{0}'." 
     1288msgid "Error opening serial port ''{0}''." 
    12891289msgstr "" 
    12901290 
    12911291#: Serial.java:167 
    12921292msgid "" 
    1293 "Serial port '{0}' not found. Did you select the right one from the Tools > " 
     1293"Serial port ''{0}'' not found. Did you select the right one from the Tools > " 
    12941294"Serial Port menu?" 
    12951295msgstr "" 
     
    13581358 
    13591359#: Sketch.java:1001 
    1360 msgid "Could not delete the existing '{0}' file." 
     1360msgid "Could not delete the existing ''{0}'' file." 
    13611361msgstr "" 
    13621362 
    13631363#: Sketch.java:1031 
    1364 msgid "Could not add '{0}' to the sketch." 
     1364msgid "Could not add ''{0}'' to the sketch." 
    13651365msgstr "" 
    13661366 
  • app/src/processing/app/Serial.java

    r1 r2  
    145145      throw new SerialException( 
    146146        I18n.format( 
    147           _("Serial port '{0}' already in use. Try quiting any programs that may be using it."), 
     147          _("Serial port ''{0}'' already in use. Try quiting any programs that may be using it."), 
    148148          iname 
    149149        ) 
     
    152152      throw new SerialException( 
    153153        I18n.format( 
    154           _("Error opening serial port '{0}'."), 
     154          _("Error opening serial port ''{0}''."), 
    155155          iname 
    156156        ), 
     
    165165      throw new SerialException( 
    166166        I18n.format( 
    167           _("Serial port '{0}' not found. Did you select the right one from the Tools > Serial Port menu?"), 
     167          _("Serial port ''{0}'' not found. Did you select the right one from the Tools > Serial Port menu?"), 
    168168          iname 
    169169        ) 
  • app/src/processing/app/Sketch.java

    r1 r2  
    10121012      if (!muchSuccess) { 
    10131013        Base.showWarning(_("Error adding file"), 
    1014                          I18n.format(_("Could not delete the existing '{0}' file."), filename), 
     1014                         I18n.format(_("Could not delete the existing ''{0}'' file."), filename), 
    10151015                         null); 
    10161016        return false; 
     
    10351035      } catch (IOException e) { 
    10361036        Base.showWarning(_("Error adding file"), 
    1037                          I18n.format(_("Could not add '{0}' to the sketch."), filename), 
     1037                         I18n.format(_("Could not add ''{0}'' to the sketch."), filename), 
    10381038                         e); 
    10391039        return false;