diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2018-10-09 15:43:17 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-10-10 13:10:51 +0200 |
commit | 1c042dd1f4d5efecdf509e412af10d07453a4329 (patch) | |
tree | dcc3cacef4ffb8792bafaeb599b5294f3a76ac0e /sonar-core | |
parent | e6bb0c9a13e5c477c5402ca476d1a8b8eb159cf3 (diff) | |
download | sonarqube-1c042dd1f4d5efecdf509e412af10d07453a4329.tar.gz sonarqube-1c042dd1f4d5efecdf509e412af10d07453a4329.zip |
SONAR-11302 Decrease ORGANIZATIONS#KEE from 300 to 255
As personal organizations are created from login, it was decided to increase the org key size to a round number (300) higher than the login size (255).
Unfortunately, MySQL doesn't support to use more than 255 characters in a unique index.
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/l10n/core.properties | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/l10n/core.properties b/sonar-core/src/main/resources/org/sonar/l10n/core.properties index 644d6701f58..6e18b2aea7e 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -2607,9 +2607,9 @@ organization.description=Description organization.description.description=Description of the organization. organization.edit=Edit Organization organization.key=Key -organization.key.description=Key of the organization (up to 300 characters). All chars must be lower-case letters (a to z), digits or dash (but dash can neither be trailing nor heading). When not specified, the key is computed from the name. +organization.key.description=Key of the organization (up to 255 characters). All chars must be lower-case letters (a to z), digits or dash (but dash can neither be trailing nor heading). When not specified, the key is computed from the name. organization.name=Name -organization.name.description=Name of the organization (up to 300 characters). +organization.name.description=Name of the organization (up to 255 characters). organization.updated=Organization details have been updated. organization.url=Url organization.url.description=Url of the homepage of the organization. @@ -2706,13 +2706,13 @@ onboarding.create_project.select_repositories=Select repositories onboarding.create_organization.page.header=Create Organization onboarding.create_organization.page.description=An organization is a space where a team or a whole company can collaborate accross many projects.{break}To analyze a private project you must subscribe your organization to a paid plan. From {price} a month. {more} onboarding.create_organization.organization_name=Organization Name -onboarding.create_organization.organization_name.description=Up to 300 characters. All chars must be lower-case letters (a to z), digits or dash (but dash can neither be trailing nor heading). The display name can be specified in the additional info. +onboarding.create_organization.organization_name.description=Up to 255 characters. All chars must be lower-case letters (a to z), digits or dash (but dash can neither be trailing nor heading). The display name can be specified in the additional info. onboarding.create_organization.organization_name.error=The provided value doesn't match the expected format. onboarding.create_organization.organization_name.taken=This name is already taken. onboarding.create_organization.add_additional_info=Add additional info onboarding.create_organization.hide_additional_info=Hide additional info onboarding.create_organization.display_name=Display Name -onboarding.create_organization.display_name.description=Up to 300 characters +onboarding.create_organization.display_name.description=Up to 255 characters onboarding.create_organization.display_name.error=The provided value doesn't match the expected format. onboarding.create_organization.avatar=Avatar onboarding.create_organization.avatar.description=Url of a small image that represents the organization (preferably 30px height). |