generated from xwiki-contrib/github-template-repository
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CRISTAL-83: Basic Move/Rename is possible
* Introduce PageRenameManager * Implement PageRenameManager for FileSystem * Add move() operation to storage * Add move and rename page actions * Small improvements to the navigation trees
- Loading branch information
Showing
54 changed files
with
1,407 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 17 additions & 1 deletion
18
core/page-actions/page-actions-ui/langs/translation-en.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
{ | ||
"page.action.category.page.management.title": "Manage", | ||
"page.action.action.delete.page.title": "Delete", | ||
"page.action.action.delete.page.cancel": "Cancel", | ||
"page.action.action.delete.page.dialog.title": "Delete Page", | ||
"page.action.action.delete.page.success": "The page \"{page}\" has been deleted.", | ||
"page.action.action.delete.page.error": "Failed to delete the page \"{page}\". Reason: [{reason}]", | ||
"page.action.action.delete.page.confirm": "This operation will delete the page \"{page}\". Are you sure?" | ||
"page.action.action.delete.page.confirm": "This operation will delete the page \"{page}\". Are you sure?", | ||
"page.action.action.move.page.title": "Move", | ||
"page.action.action.move.page.cancel": "Cancel", | ||
"page.action.action.move.page.dialog.title": "Move Page", | ||
"page.action.action.move.page.alert.content": "The page {pageName} already exists.", | ||
"page.action.action.move.page.preserve.children.label": "Preserve Children", | ||
"page.action.action.move.page.preserve.children.help": "Preserve the child pages by updating their paths and moving them to the new location.", | ||
"page.action.action.move.page.success": "The page \"{page}\" has been moved to \"{newPage}\".", | ||
"page.action.action.move.page.error": "Failed to move the page \"{page}\". Reason: [{reason}]", | ||
"page.action.action.rename.page.title": "Rename", | ||
"page.action.action.rename.page.cancel": "Cancel", | ||
"page.action.action.rename.page.dialog.title": "Rename Page", | ||
"page.action.action.rename.page.alert.content": "The page {pageName} already exists.", | ||
"page.action.action.rename.page.name.label": "Name", | ||
"page.action.action.rename.page.success": "The page \"{page}\" has been renamed to \"{newPage}\".", | ||
"page.action.action.rename.page.error": "Failed to rename the page \"{page}\". Reason: [{reason}]" | ||
} |
18 changes: 17 additions & 1 deletion
18
core/page-actions/page-actions-ui/langs/translation-fr.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
{ | ||
"page.action.category.page.management.title": "Gérer", | ||
"page.action.action.delete.page.title": "Supprimer", | ||
"page.action.action.delete.page.cancel": "Annuler", | ||
"page.action.action.delete.page.dialog.title": "Supprimer la page", | ||
"page.action.action.delete.page.success": "La page \"{page}\" a été supprimée.", | ||
"page.action.action.delete.page.error": "La suppression de la page \"{page}\" a échoué. Raison : [{reason}]", | ||
"page.action.action.delete.page.confirm": "Cette opération supprimera la page \"{page}\". Voulez-vous continuer ?" | ||
"page.action.action.delete.page.confirm": "Cette opération supprimera la page \"{page}\". Voulez-vous continuer ?", | ||
"page.action.action.move.page.title": "Déplacer", | ||
"page.action.action.move.page.cancel": "Annuler", | ||
"page.action.action.move.page.dialog.title": "Déplacer la page", | ||
"page.action.action.move.page.alert.content": "La page {pageName} existe déjà.", | ||
"page.action.action.move.page.preserve.children.label": "Préserver les enfants", | ||
"page.action.action.move.page.preserve.children.help": "Préserver les pages enfants en mettant à jour leurs chemins et en les déplaçant vers le nouvel emplacement.", | ||
"page.action.action.move.page.success": "La page \"{page}\" a été déplacée vers \"{newPage}\".", | ||
"page.action.action.move.page.error": "Le déplacement de la page \"{page}\" a échoué. Raison : [{reason}]", | ||
"page.action.action.rename.page.title": "Renommer", | ||
"page.action.action.rename.page.cancel": "Annuler", | ||
"page.action.action.rename.page.dialog.title": "Renommer la page", | ||
"page.action.action.rename.page.alert.content": "La page {pageName} existe déjà.", | ||
"page.action.action.rename.page.name.label": "Nom", | ||
"page.action.action.rename.page.success": "La page \"{page}\" a été renommée en \"{newPage}\".", | ||
"page.action.action.rename.page.error": "Le renommage de la page \"{page}\" a échoué. Raison : [{reason}]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.