tip message changes

This commit is contained in:
Thorsten Ludewig
2011-03-25 10:19:12 +01:00
parent bef7a031df
commit 9c099ce02d
4 changed files with 26 additions and 25 deletions

View File

@@ -115,16 +115,16 @@ Sonia.config.ScmConfigPanel = Ext.extend(Sonia.config.ConfigPanel,{
errorMsgText: 'Could not load config.',
// 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\
<br /><b>version</b> = SCM-Manager Version<br /><b>os</b> = Operation System<br /><b>arch</b> = Architecture',
enableForwardingHelpText: 'Enbale mod_proxy port forwarding.',
forwardPortHelpText: 'The forwarding port.',
allowAnonymousAccessHelpText: 'Anonymous users can see public repositories.',
enableSSLHelpText: 'Enable SSL.',
allowAnonymousAccessHelpText: 'Anonymous users have read access on public repositories.',
enableSSLHelpText: 'Enable secure connections via HTTPS.',
sslPortHelpText: 'The ssl port.',
adminGroupsHelpText: 'Comma seperated list of groups with admin rights.',
adminUsersHelpText: 'Comma seperated list of users with admin rights.',
adminGroupsHelpText: 'Comma seperated list of groups with admin permissions.',
adminUsersHelpText: 'Comma seperated list of users with admin permissions.',
initComponent: function(){

View File

@@ -155,9 +155,9 @@ Sonia.group.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
createErrorMsgText: 'Group creation failed',
// help
nameHelpText: 'The unique name of the group.',
nameHelpText: 'Unique name 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,

View File

@@ -178,9 +178,9 @@ Ext.reg('repositoryGrid', Sonia.repository.Grid);
// RepositoryFormPanel
Sonia.repository.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
colGroupPermissionText: 'Group Permission',
colGroupPermissionText: 'Is Group',
colNameText: 'Name',
colTypeText: 'Type',
colTypeText: 'Permissions',
formTitleText: 'Settings',
nameText: 'Name',
typeText: 'Type',
@@ -193,14 +193,14 @@ Sonia.repository.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
createErrorMsgText: 'Repository creation failed',
// 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).',
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.',
publicHelpText: 'A public repository which is readable by every person.',
permissionHelpText: 'If the "Group Permission" box is checked, then the name represents the groupname otherwise the username.<br />\n\
Type explenation:<br /><b>READ</b> = read permission<br /><b>WRITE</b> = read and write permission<br />\n\
<b>OWNER</b> = read, write permissions and also the ability to manage the properties and permissions',
publicHelpText: 'Public repository, readable by everyone.',
permissionHelpText: 'Manage permissions for a specific user or group.<br />\n\
Permissions explenation:<br /><b>READ</b> = read<br /><b>WRITE</b> = read and write<br />\n\
<b>OWNER</b> = read, write and also the ability to manage the properties and permissions',
permissionStore: null,
@@ -226,12 +226,6 @@ Sonia.repository.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
sortable: true
},
columns: [{
id: 'groupPermission',
xtype: 'checkcolumn',
header: this.colGroupPermissionText,
dataIndex: 'groupPermission',
width: 40
},{
id: 'name',
header: this.colNameText,
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) {

View File

@@ -165,10 +165,10 @@ Sonia.user.FormPanel = Ext.extend(Sonia.rest.FormPanel,{
passwordMinLengthText: 'Password must be at least 6 characters long',
// help
usernameHelpText: 'The unique name of the user.',
displayNameHelpText: 'The display name of the user.',
mailHelpText: 'The email address of the user.',
passwordHelpText: 'The plain text password of the user.',
usernameHelpText: 'Unique name of the user.',
displayNameHelpText: 'Display name of the user.',
mailHelpText: 'Email address of the user.',
passwordHelpText: 'Plain text password of the user.',
passwordConfirmHelpText: 'Repeat the password for validation.',
adminHelpText: 'An administrator is able to create, modify and delete repositories, groups and users.',