Changeset 25124 in vbox
- Timestamp:
- Dec 1, 2009 9:30:17 AM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxGlobal.h
r25123 r25124 363 363 static inline QString hoursToString (uint32_t cVal) 364 364 { 365 return tr("%n hour s(s)", "", cVal);365 return tr("%n hour(s)", "", cVal); 366 366 } 367 367 … … 373 373 static inline QString secondsToString (uint32_t cVal) 374 374 { 375 return tr("%n second s(s)", "", cVal);375 return tr("%n second(s)", "", cVal); 376 376 } 377 377 -
trunk/src/VBox/Frontends/VirtualBox/nls/VirtualBox_en.ts
r25123 r25124 30 30 <message numerus="yes"> 31 31 <location filename="../include/VBoxGlobal.h" line="365"/> 32 <source>%n hour s(s)</source>32 <source>%n hour(s)</source> 33 33 <translation> 34 34 <numerusform>%n hour</numerusform> 35 35 <numerusform>%n hours</numerusform> 36 </translation> 37 </message> 38 <message numerus="yes"> 39 <location filename="../include/VBoxGlobal.h" line="375"/> 40 <source>%n second(s)</source> 41 <translation> 42 <numerusform>%n second</numerusform> 43 <numerusform>%n seconds</numerusform> 36 44 </translation> 37 45 </message> … … 42 50 <numerusform>%n minute</numerusform> 43 51 <numerusform>%n minutes</numerusform> 44 </translation>45 </message>46 <message numerus="yes">47 <location filename="../include/VBoxGlobal.h" line="375"/>48 <source>%n seconds(s)</source>49 <translation>50 <numerusform>%n second</numerusform>51 <numerusform>%n seconds</numerusform>52 52 </translation> 53 53 </message>
Note:
See TracChangeset
for help on using the changeset viewer.