fix typos in strings

Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
This commit is contained in:
Maximiliano Sandoval 2024-08-07 14:10:44 +02:00 committed by Thomas Lamprecht
parent 72478171cf
commit 19dfc86198
3 changed files with 6 additions and 6 deletions

View File

@ -108,7 +108,7 @@ Ext.define('PageCalibration', {
xtype: 'numberfield', xtype: 'numberfield',
value: 'a4', value: 'a4',
name: 's_x', name: 's_x',
fieldLabel: 'Meassured Start Offset Sx (mm)', fieldLabel: 'Measured Start Offset Sx (mm)',
allowBlank: false, allowBlank: false,
labelWidth: 200, labelWidth: 200,
}, },
@ -116,7 +116,7 @@ Ext.define('PageCalibration', {
xtype: 'numberfield', xtype: 'numberfield',
value: 'a4', value: 'a4',
name: 'd_x', name: 'd_x',
fieldLabel: 'Meassured Length Dx (mm)', fieldLabel: 'Measured Length Dx (mm)',
allowBlank: false, allowBlank: false,
labelWidth: 200, labelWidth: 200,
}, },
@ -124,7 +124,7 @@ Ext.define('PageCalibration', {
xtype: 'numberfield', xtype: 'numberfield',
value: 'a4', value: 'a4',
name: 's_y', name: 's_y',
fieldLabel: 'Meassured Start Offset Sy (mm)', fieldLabel: 'Measured Start Offset Sy (mm)',
allowBlank: false, allowBlank: false,
labelWidth: 200, labelWidth: 200,
}, },
@ -132,7 +132,7 @@ Ext.define('PageCalibration', {
xtype: 'numberfield', xtype: 'numberfield',
value: 'a4', value: 'a4',
name: 'd_y', name: 'd_y',
fieldLabel: 'Meassured Length Dy (mm)', fieldLabel: 'Measured Length Dy (mm)',
allowBlank: false, allowBlank: false,
labelWidth: 200, labelWidth: 200,
}, },

View File

@ -149,7 +149,7 @@ pub const SYNC_DEFAULTS_STRING_SCHEMA: Schema = StringSchema::new("sync defaults
.schema(); .schema();
const REMOVE_VANISHED_DESCRIPTION: &str = const REMOVE_VANISHED_DESCRIPTION: &str =
"A semicolon-seperated list of things to remove when they or the user \ "A semicolon-separated list of things to remove when they or the user \
vanishes during user synchronization. The following values are possible: ``entry`` removes the \ vanishes during user synchronization. The following values are possible: ``entry`` removes the \
user when not returned from the sync; ``properties`` removes any \ user when not returned from the sync; ``properties`` removes any \
properties on existing user that do not appear in the source. \ properties on existing user that do not appear in the source. \

View File

@ -252,7 +252,7 @@ fn into_task_list_item(info: proxmox_rest_server::TaskListInfo) -> pbs_api_types
exitstatus: { exitstatus: {
type: String, type: String,
optional: true, optional: true,
description: "'OK', 'Error: <msg>', or 'unkwown'.", description: "'OK', 'Error: <msg>', or 'unknown'.",
}, },
}, },
}, },