Changeset 2:4359ef253936
- Timestamp:
- 02/09/10 01:08:44 (6 months ago)
- Branch:
- default
- Location:
- app/src/processing/app
- Files:
-
- 3 modified
-
Resources_ja.po (modified) (2 diffs)
-
Serial.java (modified) (3 diffs)
-
Sketch.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
app/src/processing/app/Resources_ja.po
r1 r2 1281 1281 #: Serial.java:147 1282 1282 msgid "" 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 " 1284 1284 "it." 1285 1285 msgstr "" 1286 1286 1287 1287 #: Serial.java:154 1288 msgid "Error opening serial port ' {0}'."1288 msgid "Error opening serial port ''{0}''." 1289 1289 msgstr "" 1290 1290 1291 1291 #: Serial.java:167 1292 1292 msgid "" 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 > " 1294 1294 "Serial Port menu?" 1295 1295 msgstr "" … … 1358 1358 1359 1359 #: Sketch.java:1001 1360 msgid "Could not delete the existing ' {0}' file."1360 msgid "Could not delete the existing ''{0}'' file." 1361 1361 msgstr "" 1362 1362 1363 1363 #: Sketch.java:1031 1364 msgid "Could not add ' {0}' to the sketch."1364 msgid "Could not add ''{0}'' to the sketch." 1365 1365 msgstr "" 1366 1366 -
app/src/processing/app/Serial.java
r1 r2 145 145 throw new SerialException( 146 146 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."), 148 148 iname 149 149 ) … … 152 152 throw new SerialException( 153 153 I18n.format( 154 _("Error opening serial port ' {0}'."),154 _("Error opening serial port ''{0}''."), 155 155 iname 156 156 ), … … 165 165 throw new SerialException( 166 166 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?"), 168 168 iname 169 169 ) -
app/src/processing/app/Sketch.java
r1 r2 1012 1012 if (!muchSuccess) { 1013 1013 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), 1015 1015 null); 1016 1016 return false; … … 1035 1035 } catch (IOException e) { 1036 1036 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), 1038 1038 e); 1039 1039 return false;