Browse Source

SONAR-8248 Replace " by ' in History page messages

tags/6.2-RC1
Julien Lancelot 7 years ago
parent
commit
2c558002bc

+ 2
- 2
it/it-tests/src/test/resources/projectAdministration/ProjectAdministrationTest/project-administration/multimodule-project-delete-version.html View File

@@ -56,13 +56,13 @@
</tr>
<tr>
<td>assertConfirmation</td>
<td>Are you sure you want to remove &quot;RELEASE&quot; from this snapshot?</td>
<td>Are you sure you want to remove 'RELEASE' from this snapshot?</td>
<td></td>
</tr>
<tr>
<td>waitForText</td>
<td>infomsg</td>
<td>glob:*Version &quot;RELEASE&quot; was removed from current project*</td>
<td>glob:*Version 'RELEASE' was removed from current project*</td>
</tr>
<tr>
<td>assertNotText</td>

+ 1
- 1
it/it-tests/src/test/resources/projectAdministration/ProjectAdministrationTest/project-administration/multimodule-project-modify-version.html View File

@@ -76,7 +76,7 @@
<tr>
<td>waitForText</td>
<td>infomsg</td>
<td>Version &quot;RELEASE&quot; was created for current project.</td>
<td>Version 'RELEASE' was created for current project.</td>
</tr>
<tr>
<td>waitForText</td>

+ 3
- 3
it/it-tests/src/test/resources/projectEvent/EventTest/create_delete_standard_event.html View File

@@ -76,7 +76,7 @@
<tr>
<td>waitForText</td>
<td>infomsg</td>
<td>Event &quot;EventToBeDeleted&quot; was created.</td>
<td>Event 'EventToBeDeleted' was created.</td>
</tr>
<tr>
<td>assertElementPresent</td>
@@ -90,7 +90,7 @@
</tr>
<tr>
<td>assertConfirmation</td>
<td>Are you sure you want to remove &quot;EventToBeDeleted&quot; from this snapshot?</td>
<td>Are you sure you want to remove 'EventToBeDeleted' from this snapshot?</td>
<td></td>
</tr>
<tr>
@@ -101,7 +101,7 @@
<tr>
<td>waitForText</td>
<td>infomsg</td>
<td>Event &quot;EventToBeDeleted&quot; was deleted.</td>
<td>Event 'EventToBeDeleted' was deleted.</td>
</tr>
<tr>
<td>assertElementNotPresent</td>

+ 9
- 9
sonar-core/src/main/resources/org/sonar/l10n/core.properties View File

@@ -1160,22 +1160,22 @@ project_history.delete=Delete
project_history.last_snapshot=Last Analysis
project_history.delete_snapshot=Delete
project_history.snapshot_deleted=The snapshot is deleted.
project_history.are_you_sure_delete_snapshot_x=Are you sure you want to delete the snapshot created on "{0}"?
project_history.are_you_sure_delete_snapshot_x=Are you sure you want to delete the snapshot created on '{0}'?
project_history.rename_version=Rename
project_history.create_version=Create
project_history.remove_version=Remove
project_history.do_you_want_to_remove_version=Are you sure you want to remove "{0}" from this snapshot?
project_history.version_updated=Version was updated to "{0}" for current project.
project_history.version_created=Version "{0}" was created for current project.
project_history.version_removed=Version "{0}" was removed from current project.
project_history.version_already_exists=Version "{0}" already exists.
project_history.do_you_want_to_remove_version=Are you sure you want to remove '{0}' from this snapshot?
project_history.version_updated=Version was updated to '{0}' for current project.
project_history.version_created=Version '{0}' was created for current project.
project_history.version_removed=Version '{0}' was removed from current project.
project_history.version_already_exists=Version '{0}' already exists.
project_history.rename_event=Rename
project_history.create_event=Create
project_history.remove_event=Remove
project_history.event_updated=Event was successfully updated.
project_history.event_deleted=Event "{0}" was deleted.
project_history.event_created=Event "{0}" was created.
project_history.event_already_exists=Event "{0}" already exists.
project_history.event_deleted=Event '{0}' was deleted.
project_history.event_created=Event '{0}' was created.
project_history.event_already_exists=Event '{0}' already exists.


#------------------------------------------------------------------------------

Loading…
Cancel
Save