From 6d1339c78f321aa8dd38663c484fa04333b1d4c4 Mon Sep 17 00:00:00 2001 From: Boubaker Khanfir Date: Tue, 28 Nov 2023 14:14:09 +0100 Subject: [PATCH] feat: Centralize Administration Site definition - MEED-3007 - Meeds-io/meeds#1327 (#436) (#438) Prior to this change, the administration site layout was loaded from different addons. This change will centralize the site definition, as other sites, in Meeds to ease the reorder of navigations when needed and to ease its maintenance. --- .../portal/administration_ar.properties | 19 ------- .../portal/administration_aro.properties | 19 ------- .../portal/administration_az.properties | 19 ------- .../portal/administration_ca.properties | 19 ------- .../portal/administration_ceb.properties | 19 ------- .../portal/administration_co.properties | 19 ------- .../portal/administration_cs.properties | 19 ------- .../portal/administration_de.properties | 19 ------- .../portal/administration_el.properties | 19 ------- .../portal/administration_en.properties | 19 ------- .../portal/administration_es_ES.properties | 19 ------- .../portal/administration_eu.properties | 19 ------- .../portal/administration_fa.properties | 19 ------- .../portal/administration_fi.properties | 19 ------- .../portal/administration_fil.properties | 19 ------- .../portal/administration_fr.properties | 19 ------- .../portal/administration_hi.properties | 19 ------- .../portal/administration_hu.properties | 19 ------- .../portal/administration_id.properties | 19 ------- .../portal/administration_it.properties | 19 ------- .../portal/administration_ja.properties | 19 ------- .../portal/administration_ko.properties | 19 ------- .../portal/administration_lt.properties | 19 ------- .../portal/administration_ms.properties | 19 ------- .../portal/administration_nl.properties | 19 ------- .../portal/administration_no.properties | 19 ------- .../portal/administration_pcm.properties | 19 ------- .../portal/administration_pl.properties | 19 ------- .../portal/administration_pt_BR.properties | 19 ------- .../portal/administration_pt_PT.properties | 19 ------- .../portal/administration_ro.properties | 19 ------- .../portal/administration_ru.properties | 19 ------- .../portal/administration_sk.properties | 19 ------- .../portal/administration_sl.properties | 19 ------- .../portal/administration_sq.properties | 19 ------- .../portal/administration_sv_SE.properties | 19 ------- .../portal/administration_th.properties | 19 ------- .../portal/administration_tl.properties | 19 ------- .../portal/administration_tr.properties | 19 ------- .../portal/administration_uk.properties | 19 ------- .../portal/administration_ur_IN.properties | 19 ------- .../portal/administration_vi.properties | 19 ------- .../portal/administration_zh_CN.properties | 19 ------- .../portal/administration_zh_TW.properties | 19 ------- .../webapp/WEB-INF/conf/configuration.xml | 4 +- .../navigation-categories-configuration.xml | 51 ------------------- .../conf/kudos/portal-configuration.xml | 39 -------------- .../portal/administration/navigation.xml | 45 ---------------- .../portal/portal/administration/pages.xml | 42 --------------- translations.properties | 2 - 50 files changed, 1 insertion(+), 1018 deletions(-) delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_ar.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_aro.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_az.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_ca.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_ceb.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_co.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_cs.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_de.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_el.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_en.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_es_ES.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_eu.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_fa.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_fi.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_fil.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_fr.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_hi.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_hu.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_id.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_it.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_ja.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_ko.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_lt.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_ms.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_nl.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_no.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_pcm.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_pl.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_pt_BR.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_pt_PT.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_ro.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_ru.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_sk.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_sl.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_sq.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_sv_SE.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_th.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_tl.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_tr.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_uk.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_ur_IN.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_vi.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_zh_CN.properties delete mode 100644 kudos-webapps/src/main/resources/locale/navigation/portal/administration_zh_TW.properties delete mode 100644 kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/navigation-categories-configuration.xml delete mode 100644 kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/portal-configuration.xml delete mode 100644 kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/portal/portal/administration/navigation.xml delete mode 100644 kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/portal/portal/administration/pages.xml diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ar.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ar.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ar.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_aro.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_aro.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_aro.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_az.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_az.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_az.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ca.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ca.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ca.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ceb.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ceb.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ceb.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_co.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_co.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_co.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_cs.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_cs.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_cs.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_de.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_de.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_de.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_el.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_el.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_el.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_en.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_en.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_en.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_es_ES.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_es_ES.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_es_ES.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_eu.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_eu.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_eu.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_fa.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_fa.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_fa.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_fi.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_fi.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_fi.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_fil.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_fil.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_fil.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_fr.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_fr.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_fr.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_hi.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_hi.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_hi.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_hu.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_hu.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_hu.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_id.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_id.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_id.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_it.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_it.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_it.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ja.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ja.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ja.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ko.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ko.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ko.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_lt.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_lt.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_lt.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ms.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ms.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ms.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_nl.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_nl.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_nl.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_no.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_no.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_no.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_pcm.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_pcm.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_pcm.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_pl.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_pl.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_pl.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_pt_BR.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_pt_BR.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_pt_BR.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_pt_PT.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_pt_PT.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_pt_PT.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ro.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ro.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ro.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ru.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ru.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ru.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_sk.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_sk.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_sk.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_sl.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_sl.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_sl.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_sq.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_sq.properties deleted file mode 100644 index 6ccf6a496..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_sq.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=crwdns7099418:0crwdne7099418:0 -portal.administration.recognition=crwdns7099420:0crwdne7099420:0 -portal.administration.kudos=crwdns7099422:0crwdne7099422:0 diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_sv_SE.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_sv_SE.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_sv_SE.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_th.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_th.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_th.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_tl.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_tl.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_tl.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_tr.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_tr.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_tr.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_uk.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_uk.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_uk.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ur_IN.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ur_IN.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_ur_IN.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_vi.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_vi.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_vi.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_zh_CN.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_zh_CN.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_zh_CN.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_zh_TW.properties b/kudos-webapps/src/main/resources/locale/navigation/portal/administration_zh_TW.properties deleted file mode 100644 index 87b070c47..000000000 --- a/kudos-webapps/src/main/resources/locale/navigation/portal/administration_zh_TW.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# This file is part of the Meeds project (https://meeds.io/). -# Copyright (C) 2023 Meeds Association -# contact@meeds.io -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -portal.administration.home=Platform settings -portal.administration.recognition=Recognition -portal.administration.kudos=Kudos diff --git a/kudos-webapps/src/main/webapp/WEB-INF/conf/configuration.xml b/kudos-webapps/src/main/webapp/WEB-INF/conf/configuration.xml index ed6d2b3ca..46edf39aa 100644 --- a/kudos-webapps/src/main/webapp/WEB-INF/conf/configuration.xml +++ b/kudos-webapps/src/main/webapp/WEB-INF/conf/configuration.xml @@ -2,14 +2,12 @@ - war:/conf/kudos/portal-configuration.xml war:/conf/kudos/bundle-configuration.xml war:/conf/kudos/organization-configuration.xml war:/conf/kudos/dynamic-container-configuration.xml war:/conf/kudos/notification-configuration.xml war:/conf/kudos/gamification-configuration.xml war:/conf/kudos/activity-configuration.xml - war:/conf/kudos/navigation-categories-configuration.xml war:/conf/kudos/upgrade-configuration.xml - + \ No newline at end of file diff --git a/kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/navigation-categories-configuration.xml b/kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/navigation-categories-configuration.xml deleted file mode 100644 index 24fa044bf..000000000 --- a/kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/navigation-categories-configuration.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - org.exoplatform.portal.config.NavigationCategoryService - - NavigationCategoryPlugin - addPlugin - org.exoplatform.portal.config.NavigationCategoryPlugin - - - category.order - 100 - - - uri.order - 20 - - - category - recognition - - - uri - rewardAdministration/kudosAdministration - - - - - - diff --git a/kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/portal-configuration.xml b/kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/portal-configuration.xml deleted file mode 100644 index bb82fdde4..000000000 --- a/kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/portal-configuration.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - org.exoplatform.portal.config.UserPortalConfigService - - new.portal.config.user.listener - initListener - org.exoplatform.portal.config.NewPortalConfigListener - this listener init the portal configuration - 770 - - - portal.configuration - - - - - administration - - - - - portal - - - war:/conf/kudos/portal - - - ${exo.kudos.portalConfig.administration.override:true} - - - ${exo.kudos.portalConfig.administration.importmode:insert} - - - - - - - \ No newline at end of file diff --git a/kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/portal/portal/administration/navigation.xml b/kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/portal/portal/administration/navigation.xml deleted file mode 100644 index b2ecfe932..000000000 --- a/kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/portal/portal/administration/navigation.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - 3 - - - - home - - fas fa-cog - - recognition - - fas fa-trophy - - kudos - - fas fa-award - portal::administration::kudosAdministration - - - - - diff --git a/kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/portal/portal/administration/pages.xml b/kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/portal/portal/administration/pages.xml deleted file mode 100644 index 2c7b27e0f..000000000 --- a/kudos-webapps/src/main/webapp/WEB-INF/conf/kudos/portal/portal/administration/pages.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - kudosAdministration - Kudo administration - *:/platform/rewarding - manager:/platform/rewarding - - Everyone - - - kudos - KudosAdmin - - Kudos administration - Everyone - false - - - - \ No newline at end of file diff --git a/translations.properties b/translations.properties index 3f6da5773..40f31d51e 100644 --- a/translations.properties +++ b/translations.properties @@ -30,5 +30,3 @@ NotificationAdministration.properties=kudos-webapps/src/main/resources/locale/po # Gamification Gamification.properties=kudos-webapps/src/main/resources/locale/addon/Gamification_en.properties - -administration.properties=kudos-webapps/src/main/resources/locale/navigation/portal/administration_en.properties