Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…awa-admin into newsfeed
  • Loading branch information
aashimawadhwa committed Oct 3, 2023
2 parents e6433f0 + 7b846e7 commit d1923d5
Show file tree
Hide file tree
Showing 85 changed files with 4,634 additions and 2,472 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Talawa Admin
💬 Join the community on Slack. The link can be found in the `Talawa` [README.md](https://github.com/PalisadoesFoundation/talawa) file.

![talawa-logo-lite-200x200](https://github.com/PalisadoesFoundation/talawa-admin/assets/16875803/26291ec5-d3c1-4135-8bc7-80885dff613d)

[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
[![GitHub stars](https://img.shields.io/github/stars/PalisadoesFoundation/talawa-admin.svg?style=social&label=Star&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-admin)
[![GitHub forks](https://img.shields.io/github/forks/PalisadoesFoundation/talawa-admin.svg?style=social&label=Fork&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-admin)
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

73 changes: 56 additions & 17 deletions public/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@
"cancel": "Cancel",
"noOrgErrorTitle": "Organizations Not Found",
"noOrgErrorDescription": "Please create an organization through dashboard",

"manageFeatures": "Manage Features",
"manageFeaturesInfo": "Creation Successful ! Please select features that you want to enale for this organization from the plugin store.",
"goToStore": "Go to Plugin Store",
"enableEverything": "Enable Everything",
"noResultsFoundFor": "No results found for "
},
"orgListCard": {
Expand Down Expand Up @@ -147,11 +152,7 @@
"posts": "Posts",
"events": "Events",
"blockedUsers": "Blocked Users",
"membershipRequests": "Membership Requests",
"deleteOrganization": "Delete Organization",
"deleteMsg": "Do you want to delete this organization?",
"no": "No",
"yes": "Yes",
"requests": "Requests",
"talawaApiUnavailable": "Talawa-API service is unavailable. Is it running? Check your network connectivity too."
},
"organizationPeople": {
Expand Down Expand Up @@ -310,6 +311,7 @@
},
"blockUnblockUser": {
"title": "Talawa Block/Unblock User",
"pageName": "Block/Unblock",
"searchByName": "Search By Name",
"listOfUsers": "List of Users who spammed",
"name": "Name",
Expand All @@ -323,8 +325,10 @@
"talawaApiUnavailable": "Talawa-API service is unavailable. Is it running? Check your network connectivity too.",
"allMembers": "All Members",
"blockedUsers": "Blocked Users",
"searchFirstName": "Enter First Name",
"searchLastName": "Enter Last Name"
"searchByFirstName": "Search By First Name",
"searchByLastName": "Search By Last Name",
"noResultsFoundFor": "No results found for",
"noSpammerFound": "No spammer found"
},
"forgotPassword": {
"title": "Talawa Forgot Password",
Expand Down Expand Up @@ -373,13 +377,20 @@
},
"orgSettings": {
"title": "Talawa Setting",
"updateYourDetails": "Update Your Details",
"updateYourPassword": "Update Your Password",
"pageName": "Settings",
"updateOrganization": "Update Organization",
"deleteOrganization": "Delete Organization",
"seeRequest": "See Request",
"settings": "Settings",
"noData": "No data"
"noData": "No data",
"otherSettings": "Other Settings",
"changeLanguage": "Change Language"
},
"deleteOrg": {
"deleteOrganization": "Delete Organization",
"deleteMsg": "Do you want to delete this organization?",
"no": "No",
"yes": "Yes",
"longDelOrgMsg": "By clicking on Delete organization button you will the organization will be permanently deleted along with its events, tags and all related data."
},
"userUpdate": {
"firstName": "First Name",
Expand All @@ -394,15 +405,13 @@
"saveChanges": "Save Changes",
"cancel": "Cancel"
},

"userPasswordUpdate": {
"previousPassword": "Previous Password",
"newPassword": "New Password",
"confirmNewPassword": "Confirm New Password",
"saveChanges": "Save Changes",
"cancel": "Cancel"
},

"orgDelete": {
"deleteOrg": "Delete Org"
},
Expand All @@ -418,10 +427,9 @@
"description": "Description",
"location": "Location",
"displayImage": "Display Image",
"isPublic": "Is Public",
"isRegistrable": "Is Registrable",
"isPublic": "Public",
"isVisibleInSearch": "Visible in Search",
"saveChanges": "Save Changes",
"cancel": "Cancel",
"enterNameOrganization": "Enter Organization Name",
"successfulUpdated": "Organization updated successfully",
"talawaApiUnavailable": "Talawa-API service is unavailable. Is it running? Check your network connectivity too."
Expand Down Expand Up @@ -453,7 +461,9 @@
"addOnEntry": {
"enable": "Enabled",
"install": "Install",
"uninstall": "Uninstall"
"uninstall": "Uninstall",
"uninstallMsg": "This feature is now removed from your organization",
"installMsg": "This feature is now enabled in your organization"
},
"memberDetail": {
"title": "User Details",
Expand Down Expand Up @@ -566,5 +576,34 @@
"yourPreviousDonations": "Your Previous Donations",
"donate": "Donate",
"nothingToShow": "Nothing to show here."
},
"userEvents": {
"nothingToShow": "Nothing to show here.",
"search": "Search",
"createEvent": "Create Event",
"eventTitle": "Event Title",
"eventDescription": "Event Description",
"eventLocation": "Event Location",
"startDate": "Select Start Date",
"endDate": "Select End Date",
"publicEvent": "Public Event",
"registerable": "Registerable",
"recurring": "Recurring",
"startTime": "Start Time",
"endTime": "End Time",
"cancel": "Cancel",
"create": "Create",
"listView": "List View",
"calendarView": "Calendar View",
"allDay": "All Day",
"eventCreated": "Event created and posted successfully."
},
"userEventCard": {
"location": "Location",
"starts": "Starts",
"ends": "Ends",
"creator": "Creator",
"alreadyRegistered": "Already registered",
"register": "Register"
}
}
60 changes: 48 additions & 12 deletions public/locales/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,7 @@
"posts": "Des postes",
"events": "Événements",
"blockedUsers": "Utilisateurs bloqués",
"membershipRequests": "Demandes d'adhésion",
"deleteOrganization": "Supprimer l'organisation",
"deleteMsg": "Voulez-vous supprimer cette organisation ?",
"no": "Non",
"yes": "Oui",
"requests": "Demandes",
"talawaApiUnavailable": "Le service Talawa-API n'est pas disponible. Est-il en cours d'exécution ? Vérifiez également votre connectivité réseau."
},
"organizationPeople": {
Expand Down Expand Up @@ -308,6 +304,7 @@
},
"blockUnblockUser": {
"title": "Talawa Bloquer/Débloquer l'utilisateur",
"pageName": "Bloquer/Débloquer'",
"searchByName": "Recherche par nom",
"listOfUsers": "Liste des utilisateurs qui ont spammé",
"name": "Nom",
Expand All @@ -321,8 +318,10 @@
"talawaApiUnavailable": "Le service Talawa-API n'est pas disponible. Est-il en cours d'exécution ? Vérifiez également votre connectivité réseau.",
"allMembers": "Tous les membres",
"blockedUsers": "Utilisateurs bloqués",
"searchFirstName": "Entrez votre prénom",
"searchLastName": "Entrer le nom de famille"
"searchByFirstName": "Rechercher par prénom",
"searchByLastName": "Rechercher par nom de famille",
"noResultsFoundFor": "Aucun résultat trouvé pour ",
"noSpammerFound": "Aucun spammeur trouvé"
},
"forgotPassword": {
"title": "Mot de passe oublié Talawa",
Expand Down Expand Up @@ -371,13 +370,22 @@
},
"orgSettings": {
"title": "Paramètre Talawa",
"pageName": "Paramètres",
"updateYourDetails": "Mettre à jour vos informations",
"updateYourPassword": "Mettez à jour votre mot de passe",
"updateOrganization": "Mettre à jour l'organisation",
"deleteOrganization": "Supprimer l'organisation",
"seeRequest": "Voir demande",
"settings": "Réglages",
"noData": "Pas de données"
"noData": "Pas de données",
"otherSettings": "Autres paramètres",
"changeLanguage": "Changer la langue"
},
"deleteOrg": {
"deleteOrganization": "Supprimer l'organisation",
"deleteMsg": "Voulez-vous supprimer cette organisation ?",
"no": "Non",
"yes": "Oui",
"longDelOrgMsg": "En cliquant sur le bouton Supprimer l'organisation, l'organisation sera définitivement supprimée, ainsi que ses événements, étiquettes et toutes les données associées."
},
"userUpdate": {
"firstName": "Prénom",
Expand Down Expand Up @@ -414,10 +422,9 @@
"description": "La description",
"location": "emplacement",
"displayImage": "Afficher l'image",
"isPublic": "Est publique",
"isRegistrable": "Est enregistrable",
"isPublic": "Public",
"isVisibleInSearch": "Visible dans la recherche",
"saveChanges": "Sauvegarder les modifications",
"cancel": "Annuler",
"enterNameOrganization": "Entrez le nom de l'organisation",
"successfulUpdated": "Mise à jour réussie",
"talawaApiUnavailable": "Le service Talawa-API n'est pas disponible. Est-il en cours d'exécution ? Vérifiez également votre connectivité réseau."
Expand Down Expand Up @@ -562,5 +569,34 @@
"yourPreviousDonations": "Vos dons précédents",
"donate": "Donner",
"nothingToShow": "Rien à montrer ici."
},
"userEvents": {
"nothingToShow": "Rien à montrer ici.",
"search": "Recherche",
"createEvent": "Créer un évènement",
"eventTitle": "Titre de l'événement",
"eventDescription": "Description de l'évenement",
"eventLocation": "Lieu de l'événement",
"startDate": "Sélectionnez la date de début",
"endDate": "Sélectionnez la date de fin",
"publicEvent": "Évennement publique",
"registerable": "Enregistrable",
"recurring": "Récurrente",
"startTime": "Heure de début",
"endTime": "Heure de fin",
"cancel": "Annuler",
"create": "Créer",
"listView": "Vue en liste",
"calendarView": "Vue du calendrier",
"allDay": "Toute la journée",
"eventCreated": "Événement créé et publié avec succès."
},
"userEventCard": {
"location": "Emplacement",
"starts": "Départs",
"ends": "Prend fin",
"creator": "Créatrice",
"alreadyRegistered": "Déjà enregistré",
"register": "Registre"
}
}
59 changes: 48 additions & 11 deletions public/locales/hi.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,7 @@
"posts": "पोस्ट",
"events": "आयोजन",
"blockedUsers": "रोके गए उपयोगकर्ता",
"membershipRequests": "सदस्यता अनुरोध",
"deleteOrganization": "संगठन हटाएं",
"deleteMsg": "क्या आप इस संगठन को हटाना चाहते हैं?",
"no": "नहीं",
"yes": "हाँ",
"requests": "अनुरोध",
"talawaApiUnavailable": "तलवा-एपीआई सेवा उपलब्ध नहीं है। क्या यह चल रहा है? अपनी नेटवर्क कनेक्टिविटी भी जांचें।"
},
"organizationPeople": {
Expand Down Expand Up @@ -308,6 +304,7 @@
},
"blockUnblockUser": {
"title": "तलावा ब्लॉक/अनब्लॉक यूजर",
"pageName": "ब्लॉक/अनब्लॉक",
"searchByName": "नाम से खोजें",
"listOfUsers": "स्पैम करने वाले उपयोगकर्ताओं की सूची",
"name": "नाम",
Expand All @@ -321,8 +318,10 @@
"talawaApiUnavailable": "तलवा-एपीआई सेवा उपलब्ध नहीं है। क्या यह चल रहा है? अपनी नेटवर्क कनेक्टिविटी भी जांचें।",
"allMembers": "सभी सदस्य",
"blockedUsers": "रोके गए उपयोगकर्ता",
"searchFirstName": "प्रथम नाम दर्ज करें",
"searchLastName": "अंतिम नाम दर्ज करो"
"searchByFirstName": "पहले नाम से खोजें",
"searchByLastName": "उपनाम से खोजें",
"noResultsFoundFor": "के लिए कोई परिणाम नहीं मिला ",
"noSpammerFound": "कोई स्पैमर नहीं मिला"
},
"forgotPassword": {
"title": "तलवा पासवर्ड भूल गए",
Expand Down Expand Up @@ -371,13 +370,22 @@
},
"orgSettings": {
"title": "तलावा सेटिंग",
"pageName": "सेटिंग्स",
"updateYourDetails": "अपना विवरण अपडेट करें",
"updateYourPassword": "अपना पासवर्ड अपडेट करें",
"updateOrganization": "अद्यतन संगठन",
"deleteOrganization": "संगठन हटाएं",
"seeRequest": "अनुरोध देखें",
"settings": "समायोजन",
"noData": "कोई डेटा नहीं"
"noData": "कोई डेटा नहीं",
"otherSettings": "अन्य सेटिंग्स",
"changeLanguage": "भाषा बदलें"
},
"deleteOrg": {
"deleteOrganization": "संगठन हटाएं",
"deleteMsg": "क्या आप इस संगठन को हटाना चाहते हैं?",
"no": "नहीं",
"yes": "हां",
"longDelOrgMsg": "संगठन हटाने के बटन पर क्लिक करके, संगठन को स्थायित रूप से हटा दिया जाएगा, साथ ही उसके आयोजन, टैग और सभी संबंधित डेटा भी हटा दिया जाएगा।"
},
"userUpdate": {
"firstName": "पहला नाम",
Expand Down Expand Up @@ -414,8 +422,8 @@
"description": "विवरण",
"location": "जगह",
"displayImage": "प्रदर्शन छवि",
"isPublic": "सार्वजनिक है",
"isRegistrable": "पंजीकरण योग्य है",
"isPublic": "सार्वजनिक",
"isVisibleInSearch": "खोज में दिखाए जा सकते हैं",
"saveChanges": "परिवर्तनों को सुरक्षित करें",
"cancel": "रद्द करना",
"enterNameOrganization": "संगठन का नाम दर्ज करें",
Expand Down Expand Up @@ -562,5 +570,34 @@
"yourPreviousDonations": "आपका पिछला दान",
"donate": "दान",
"nothingToShow": "यहां दिखाने के लिए कुछ भी नहीं है."
},
"userEvents": {
"nothingToShow": "यहां दिखाने के लिए कुछ भी नहीं है.",
"search": "खोज",
"createEvent": "कार्यक्रम बनाएँ",
"eventTitle": "कार्यक्रम का शीर्षक",
"eventDescription": "घटना विवरण",
"eventLocation": "घटना स्थान",
"startDate": "आरंभ तिथि चुनें",
"endDate": "अंतिम तिथि चुनें",
"publicEvent": "सार्वजनिक समारोह",
"registerable": "पंजीकरण योग्य",
"recurring": "पुनरावर्ती",
"startTime": "समय शुरू",
"endTime": "अंत समय",
"cancel": "रद्द करना",
"create": "बनाएं",
"listView": "लिस्ट व्यू",
"calendarView": "कैलेंडर दृश्य",
"allDay": "पूरे दिन",
"eventCreated": "ईवेंट सफलतापूर्वक बनाया और पोस्ट किया गया."
},
"userEventCard": {
"location": "जगह",
"starts": "प्रारंभ होगा",
"ends": "समाप्त होगा",
"creator": "निर्माता",
"alreadyRegistered": "पहले से ही पंजीकृत",
"register": "पंजीकरण करवाना"
}
}
Loading

0 comments on commit d1923d5

Please sign in to comment.