mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 09:25:43 +01:00
tip message changes
This commit is contained in:
@@ -115,16 +115,16 @@ Sonia.config.ScmConfigPanel = Ext.extend(Sonia.config.ConfigPanel,{
|
|||||||
errorMsgText: 'Could not load config.',
|
errorMsgText: 'Could not load config.',
|
||||||
|
|
||||||
// help
|
// help
|
||||||
servernameHelpText: 'The name of this server. This name would be part of the repository url.',
|
servernameHelpText: 'The name of this server. This name will be part of the repository url.',
|
||||||
pluginRepositoryHelpText: 'The url of the plugin repository.<br />Explanation of the {placeholders}:\n\
|
pluginRepositoryHelpText: 'The url of the plugin repository.<br />Explanation of the {placeholders}:\n\
|
||||||
<br /><b>version</b> = SCM-Manager Version<br /><b>os</b> = Operation System<br /><b>arch</b> = Architecture',
|
<br /><b>version</b> = SCM-Manager Version<br /><b>os</b> = Operation System<br /><b>arch</b> = Architecture',
|
||||||
enableForwardingHelpText: 'Enbale mod_proxy port forwarding.',
|
enableForwardingHelpText: 'Enbale mod_proxy port forwarding.',
|
||||||
forwardPortHelpText: 'The forwarding port.',
|
forwardPortHelpText: 'The forwarding port.',
|
||||||
allowAnonymousAccessHelpText: 'Anonymous users can see public repositories.',
|
allowAnonymousAccessHelpText: 'Anonymous users have read access on public repositories.',
|
||||||
enableSSLHelpText: 'Enable SSL.',
|
enableSSLHelpText: 'Enable secure connections via HTTPS.',
|
||||||
sslPortHelpText: 'The ssl port.',
|
sslPortHelpText: 'The ssl port.',
|
||||||
adminGroupsHelpText: 'Comma seperated list of groups with admin rights.',
|
adminGroupsHelpText: 'Comma seperated list of groups with admin permissions.',
|
||||||
adminUsersHelpText: 'Comma seperated list of users with admin rights.',
|
adminUsersHelpText: 'Comma seperated list of users with admin permissions.',
|
||||||
|
|
||||||
|
|
||||||
initComponent: function(){
|
initComponent: function(){
|
||||||
|
|||||||
@@ -155,9 +155,9 @@ Sonia.group.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
|
|||||||
createErrorMsgText: 'Group creation failed',
|
createErrorMsgText: 'Group creation failed',
|
||||||
|
|
||||||
// help
|
// help
|
||||||
nameHelpText: 'The unique name of the group.',
|
nameHelpText: 'Unique name of the group.',
|
||||||
descriptionHelpText: 'A short description of the group.',
|
descriptionHelpText: 'A short description of the group.',
|
||||||
membersHelpText: 'The usernames of the group members.',
|
membersHelpText: 'Usernames of the group members.',
|
||||||
|
|
||||||
memberStore: null,
|
memberStore: null,
|
||||||
|
|
||||||
|
|||||||
@@ -178,9 +178,9 @@ Ext.reg('repositoryGrid', Sonia.repository.Grid);
|
|||||||
// RepositoryFormPanel
|
// RepositoryFormPanel
|
||||||
Sonia.repository.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
|
Sonia.repository.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
|
||||||
|
|
||||||
colGroupPermissionText: 'Group Permission',
|
colGroupPermissionText: 'Is Group',
|
||||||
colNameText: 'Name',
|
colNameText: 'Name',
|
||||||
colTypeText: 'Type',
|
colTypeText: 'Permissions',
|
||||||
formTitleText: 'Settings',
|
formTitleText: 'Settings',
|
||||||
nameText: 'Name',
|
nameText: 'Name',
|
||||||
typeText: 'Type',
|
typeText: 'Type',
|
||||||
@@ -193,14 +193,14 @@ Sonia.repository.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
|
|||||||
createErrorMsgText: 'Repository creation failed',
|
createErrorMsgText: 'Repository creation failed',
|
||||||
|
|
||||||
// help
|
// help
|
||||||
nameHelpText: 'The name of the repository. This name would be part of the repository url.',
|
nameHelpText: 'The name of the repository. This name will be part of the repository url.',
|
||||||
typeHelpText: 'The type of the repository (e.g. Mercurial, Git or Subversion).',
|
typeHelpText: 'The type of the repository (e.g. Mercurial, Git or Subversion).',
|
||||||
contactHelpText: 'An email address of the person who is in charge for this repository.',
|
contactHelpText: 'Email address of the person who is responsible for this repository.',
|
||||||
descriptionHelpText: 'A short description of the repository.',
|
descriptionHelpText: 'A short description of the repository.',
|
||||||
publicHelpText: 'A public repository which is readable by every person.',
|
publicHelpText: 'Public repository, readable by everyone.',
|
||||||
permissionHelpText: 'If the "Group Permission" box is checked, then the name represents the groupname otherwise the username.<br />\n\
|
permissionHelpText: 'Manage permissions for a specific user or group.<br />\n\
|
||||||
Type explenation:<br /><b>READ</b> = read permission<br /><b>WRITE</b> = read and write permission<br />\n\
|
Permissions explenation:<br /><b>READ</b> = read<br /><b>WRITE</b> = read and write<br />\n\
|
||||||
<b>OWNER</b> = read, write permissions and also the ability to manage the properties and permissions',
|
<b>OWNER</b> = read, write and also the ability to manage the properties and permissions',
|
||||||
|
|
||||||
permissionStore: null,
|
permissionStore: null,
|
||||||
|
|
||||||
@@ -226,12 +226,6 @@ Sonia.repository.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
|
|||||||
sortable: true
|
sortable: true
|
||||||
},
|
},
|
||||||
columns: [{
|
columns: [{
|
||||||
id: 'groupPermission',
|
|
||||||
xtype: 'checkcolumn',
|
|
||||||
header: this.colGroupPermissionText,
|
|
||||||
dataIndex: 'groupPermission',
|
|
||||||
width: 40
|
|
||||||
},{
|
|
||||||
id: 'name',
|
id: 'name',
|
||||||
header: this.colNameText,
|
header: this.colNameText,
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
@@ -257,6 +251,13 @@ Sonia.repository.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
|
|||||||
]
|
]
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'groupPermission',
|
||||||
|
xtype: 'checkcolumn',
|
||||||
|
header: this.colGroupPermissionText,
|
||||||
|
dataIndex: 'groupPermission',
|
||||||
|
width: 40
|
||||||
}],
|
}],
|
||||||
|
|
||||||
getCellEditor: function(colIndex, rowIndex) {
|
getCellEditor: function(colIndex, rowIndex) {
|
||||||
|
|||||||
@@ -165,10 +165,10 @@ Sonia.user.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
|
|||||||
passwordMinLengthText: 'Password must be at least 6 characters long',
|
passwordMinLengthText: 'Password must be at least 6 characters long',
|
||||||
|
|
||||||
// help
|
// help
|
||||||
usernameHelpText: 'The unique name of the user.',
|
usernameHelpText: 'Unique name of the user.',
|
||||||
displayNameHelpText: 'The display name of the user.',
|
displayNameHelpText: 'Display name of the user.',
|
||||||
mailHelpText: 'The email address of the user.',
|
mailHelpText: 'Email address of the user.',
|
||||||
passwordHelpText: 'The plain text password of the user.',
|
passwordHelpText: 'Plain text password of the user.',
|
||||||
passwordConfirmHelpText: 'Repeat the password for validation.',
|
passwordConfirmHelpText: 'Repeat the password for validation.',
|
||||||
adminHelpText: 'An administrator is able to create, modify and delete repositories, groups and users.',
|
adminHelpText: 'An administrator is able to create, modify and delete repositories, groups and users.',
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user