Bug 1218586 - use \u0020 instead of backspace protected whitespace in watchExpressionsSeparatorLabel to suppress warning from compare-locales. r=jryans

This commit is contained in:
Sebastian Hengst 2015-10-26 23:17:38 +01:00
parent a87db7f6f0
commit ff4d7b5597
2 changed files with 3 additions and 3 deletions

View File

@ -309,9 +309,9 @@ WebIDLTooltip=WebIDL
# in the variables list as a separator between the name and value.
variablesSeparatorLabel=:
# LOCALIZATION NOTE (watchExpressionsSeparatorLabel): The text that is displayed
# LOCALIZATION NOTE (watchExpressionsSeparatorLabel2): The text that is displayed
# in the watch expressions list as a separator between the code and evaluation.
watchExpressionsSeparatorLabel=\
watchExpressionsSeparatorLabel2=\u0020
# LOCALIZATION NOTE (functionSearchSeparatorLabel): The text that is displayed
# in the functions search panel as a separator between function's inferred name

View File

@ -876,7 +876,7 @@ StackFrames.prototype = {
// Customize the scope for holding watch expressions evaluations.
scope.descriptorTooltip = false;
scope.contextMenuId = "debuggerWatchExpressionsContextMenu";
scope.separatorStr = L10N.getStr("watchExpressionsSeparatorLabel");
scope.separatorStr = L10N.getStr("watchExpressionsSeparatorLabel2");
scope.switch = DebuggerView.WatchExpressions.switchExpression;
scope.delete = DebuggerView.WatchExpressions.deleteExpression;