@premieroctet/next-admin
Version:
Next-Admin provides a customizable and turnkey admin dashboard for applications built with Next.js and powered by the Prisma ORM. It aims to simplify the development process by providing a turnkey admin system that can be easily integrated into your proje
63 lines (62 loc) • 2.98 kB
JavaScript
const defaultTranslations = {
"actions.delete.label": "Delete",
"actions.label": "Action",
"actions.some_failed_condition": "Some record cannot complete the action",
"export.label": "Export",
"actions.create.label": "Create",
"actions.edit.label": "Edit",
"form.button.delete.label": "Delete",
"form.delete.alert": "Are you sure you want to delete this?",
"form.button.save.label": "Save",
"form.button.save_edit.label": "Save and continue editing",
"list.empty.label": "No {{resource}} found",
"list.empty.caption": "Get started by creating a new {{resource}}.",
"list.footer.indicator.showing": "Showing from",
"list.footer.indicator.to": "to",
"list.footer.indicator.of": "of",
"list.header.add.label": "Add",
"list.header.search.placeholder": "Search",
"list.header.result": "Search",
"list.header.search.result": "{{count}} items",
"list.header.search.result_filtered": "{{count}} filtered items",
"list.row.actions.delete.label": "Delete",
"list.row.actions.delete.alert": "Are you sure you want to delete {{count}} row(s)?",
"list.row.actions.delete.success": "Deleted successfully",
"list.row.actions.delete.error": "An error occured while deleting",
"list.row.actions.export": "Export as {{format}}",
"form.widgets.file_upload.label": "Choose a file",
"form.widgets.file_upload.drag_and_drop": "or drag and drop",
"form.widgets.file_upload.delete": "Delete",
"form.widgets.multiselect.select": "Select items",
"form.widgets.scalar_array.add": "Add new item",
"form.create.succeed": "Created successfully",
"form.update.succeed": "Updated successfully",
"form.delete.succeed": "Deleted successfully",
"form.validation.error": "Validation error",
"selector.loading": "Loading...",
"theme.dark": "Dark",
"theme.light": "Light",
"theme.system": "System",
"user.logout": "Logout",
"search.advanced.title": "Advanced search",
"search.advanced.add": "Add filter",
"search.advanced.clear": "Clear",
"search.advanced.cancel": "Cancel",
"search.advanced.save": "Save",
"search.advanced.and_or_group": "AND / OR group",
"search.advanced.conditions.equals": "Equals",
"search.advanced.conditions.not": "Not equals",
"search.advanced.conditions.in": "In",
"search.advanced.conditions.notIn": "Not in",
"search.advanced.conditions.lt": "Less than",
"search.advanced.conditions.lte": "Less than or equals",
"search.advanced.conditions.gt": "Greater than",
"search.advanced.conditions.gte": "Greater than or equals",
"search.advanced.conditions.contains": "Contains",
"search.advanced.conditions.search": "Search",
"search.advanced.conditions.startsWith": "Starts with",
"search.advanced.conditions.endsWith": "Ends with",
"search.advanced.conditions.null": "Is null",
"search.advanced.conditions.nnull": "Is not null"
};
export { defaultTranslations };