@@ -208,7 +208,7 @@ define(function (require, exports, module) {
208208 "usage"
209209 ) ;
210210 selStr = StringUtils . format ( Strings . STATUSBAR_SELECTION_MULTIPLE , sels . length ) ;
211- shortSelStr = StringUtils . format ( Strings . STATUSBAR_SELECTION_MULTIPLE_SHORT , sels . length ) ;
211+ shortSelStr = StringUtils . format ( Strings . STATUSBAR_SELECTION_MULTIPLE_SHORT_DO_NOT_TRANSLATE , sels . length ) ;
212212 } else if ( editor . hasSelection ( ) ) {
213213 const sel = sels [ 0 ] ;
214214 if ( sel . start . line !== sel . end . line ) {
@@ -218,13 +218,13 @@ define(function (require, exports, module) {
218218 }
219219 selStr = _formatCountable ( lines , Strings . STATUSBAR_SELECTION_LINE_SINGULAR ,
220220 Strings . STATUSBAR_SELECTION_LINE_PLURAL ) ;
221- shortSelStr = StringUtils . format ( Strings . STATUSBAR_SELECTION_SHORT , lines ) ;
221+ shortSelStr = StringUtils . format ( Strings . STATUSBAR_SELECTION_SHORT_DO_NOT_TRANSLATE , lines ) ;
222222 } else {
223223 // end ch is exclusive always
224224 const cols = editor . getColOffset ( sel . end ) - editor . getColOffset ( sel . start ) ;
225225 selStr = _formatCountable ( cols , Strings . STATUSBAR_SELECTION_CH_SINGULAR ,
226226 Strings . STATUSBAR_SELECTION_CH_PLURAL ) ;
227- shortSelStr = StringUtils . format ( Strings . STATUSBAR_SELECTION_SHORT , cols ) ;
227+ shortSelStr = StringUtils . format ( Strings . STATUSBAR_SELECTION_SHORT_DO_NOT_TRANSLATE , cols ) ;
228228 }
229229 }
230230 $cursorInfo . text ( cursorStrShort + shortSelStr ) ;
0 commit comments