Bug 863653 - Add hints to profiler [start|stop|show] commands; r=jwalker

This commit is contained in:
Anton Kovalyov 2013-06-20 10:48:25 -07:00
Родитель 4be3b2b473
Коммит 32a969579c
2 изменённых файлов: 20 добавлений и 3 удалений

Просмотреть файл

@ -68,7 +68,8 @@ gcli.addCommand({
params: [
{
name: "name",
type: "string"
type: "string",
manual: gcli.lookup("profilerStartManual")
}
],
@ -114,7 +115,8 @@ gcli.addCommand({
params: [
{
name: "name",
type: "string"
type: "string",
manual: gcli.lookup("profilerStopManual")
}
],
@ -196,7 +198,8 @@ gcli.addCommand({
params: [
{
name: "name",
type: "string"
type: "string",
manual: gcli.lookup("profilerShowManual")
}
],

Просмотреть файл

@ -1209,10 +1209,19 @@ profilerCloseDesc=Close the profiler
# of the profiler start command.
profilerStartDesc=Start profiling
# LOCALIZATION NOTE (profilerStartManual) A fuller description of the 'profile name'
# parameter. This parameter is used to name a newly created profile or to lookup
# an existing profile by its name.
profilerStartManual=Name of a profile you wish to start.
# LOCALIZATION NOTE (profilerStop) A very short string used to describe the function
# of the profiler stop command.
profilerStopDesc=Stop profiling
# LOCALIZATION NOTE (profilerStopManual) A fuller description of the 'profile name'
# parameter. This parameter is used to lookup an existing profile by its name.
profilerStopManual=Name of a profile you wish to stop.
# LOCALIZATION NOTE (profilerList) A very short string used to describe the function
# of the profiler list command.
profilerListDesc=List all profiles
@ -1221,6 +1230,11 @@ profilerListDesc=List all profiles
# of the profiler show command.
profilerShowDesc=Show individual profile
# LOCALIZATION NOTE (profilerShowManual) A fuller description of the 'profile name'
# parameter. This parameter is used to name a newly created profile or to lookup
# an existing profile by its name.
profilerShowManual=Name of a profile.
# LOCALIZATION NOTE (profilerAlreadyStarted) A message that is displayed whenever
# an operation cannot be completed because the profile in question has already
# been started.