Translation user seen text to Slovenian
This commit is contained in:
parent
a5257df2b7
commit
821985469e
|
|
@ -1,6 +1,12 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import AppLayout from "@/Layouts/AppLayout.vue";
|
import AppLayout from "@/Layouts/AppLayout.vue";
|
||||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/Components/ui/card";
|
import {
|
||||||
|
Card,
|
||||||
|
CardContent,
|
||||||
|
CardDescription,
|
||||||
|
CardHeader,
|
||||||
|
CardTitle,
|
||||||
|
} from "@/Components/ui/card";
|
||||||
import { Button } from "@/Components/ui/button";
|
import { Button } from "@/Components/ui/button";
|
||||||
import { Link } from "@inertiajs/vue3";
|
import { Link } from "@inertiajs/vue3";
|
||||||
import {
|
import {
|
||||||
|
|
@ -17,56 +23,57 @@ import {
|
||||||
|
|
||||||
const settingsCards = [
|
const settingsCards = [
|
||||||
{
|
{
|
||||||
title: "Segments",
|
title: "Segmenti",
|
||||||
description: "Manage segments used across the app.",
|
description: "Upravljanje segmentov, ki se uporabljajo v aplikaciji.",
|
||||||
route: "settings.segments",
|
route: "settings.segments",
|
||||||
icon: Layers,
|
icon: Layers,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Payments",
|
title: "Plačila",
|
||||||
description: "Defaults for payments and auto-activity.",
|
description: "Privzete nastavitve za plačila in samodejne aktivnosti.",
|
||||||
route: "settings.payment.edit",
|
route: "settings.payment.edit",
|
||||||
icon: CreditCard,
|
icon: CreditCard,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Installments",
|
title: "Obroki",
|
||||||
description: "Defaults for installments and auto-activity.",
|
description: "Privzete nastavitve za obroke in samodejne aktivnosti.",
|
||||||
route: "settings.installment.edit",
|
route: "settings.installment.edit",
|
||||||
icon: CalendarDays,
|
icon: CalendarDays,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Workflow",
|
title: "Potek dela",
|
||||||
description: "Configure actions and decisions relationships.",
|
description: "Konfiguracija akcij in odločitev.",
|
||||||
route: "settings.workflow",
|
route: "settings.workflow",
|
||||||
icon: GitBranch,
|
icon: GitBranch,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Field Job Settings",
|
title: "Nastavitve terenskega dela",
|
||||||
description: "Configure segment-based field job rules.",
|
description: "Konfiguracija pravil terenskega dela po segmentih.",
|
||||||
route: "settings.fieldjob.index",
|
route: "settings.fieldjob.index",
|
||||||
icon: Briefcase,
|
icon: Briefcase,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contract Configs",
|
title: "Konfiguracije pogodb",
|
||||||
description: "Auto-assign initial segments for contracts by type.",
|
description: "Samodejna dodelitev začetnih segmentov pogodbam glede na vrsto.",
|
||||||
route: "settings.contractConfigs.index",
|
route: "settings.contractConfigs.index",
|
||||||
icon: FileText,
|
icon: FileText,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contract Settings",
|
title: "Nastavitve pogodb",
|
||||||
description: "Auto-activity triggers on contract balance changes.",
|
description: "Sprožilci samodejnih aktivnosti ob spremembi stanja pogodbe.",
|
||||||
route: "settings.contract.edit",
|
route: "settings.contract.edit",
|
||||||
icon: FileText,
|
icon: FileText,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Archive Settings",
|
title: "Nastavitve arhiviranja",
|
||||||
description: "Define rules for archiving or soft-deleting aged data.",
|
description: "Določite pravila za arhiviranje ali mehko brisanje starih podatkov.",
|
||||||
route: "settings.archive.index",
|
route: "settings.archive.index",
|
||||||
icon: Archive,
|
icon: Archive,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Reports",
|
title: "Poročila",
|
||||||
description: "Configure database-driven reports with dynamic queries.",
|
description:
|
||||||
|
"Konfiguracija poročil na podlagi podatkovne baze z dinamičnimi poizvedbami.",
|
||||||
route: "settings.reports.index",
|
route: "settings.reports.index",
|
||||||
icon: BarChart3,
|
icon: BarChart3,
|
||||||
},
|
},
|
||||||
|
|
@ -74,14 +81,14 @@ const settingsCards = [
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<AppLayout title="Settings">
|
<AppLayout title="Nastavitve">
|
||||||
<template #header />
|
<template #header />
|
||||||
<div class="pt-12">
|
<div class="pt-12">
|
||||||
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
<div class="mb-8">
|
<div class="mb-8">
|
||||||
<h1 class="text-3xl font-bold text-gray-900">Settings</h1>
|
<h1 class="text-3xl font-bold text-gray-900">Nastavitve</h1>
|
||||||
<p class="mt-2 text-sm text-muted-foreground">
|
<p class="mt-2 text-sm text-muted-foreground">
|
||||||
Manage your application configuration and preferences
|
Upravljanje konfiguracije in nastavitev aplikacije
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -105,7 +112,7 @@ const settingsCards = [
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<Link :href="route(card.route)">
|
<Link :href="route(card.route)">
|
||||||
<Button class="w-full group">
|
<Button class="w-full group">
|
||||||
Open Settings
|
Odpri nastavitve
|
||||||
<ArrowRight
|
<ArrowRight
|
||||||
class="ml-2 h-4 w-4 transition-transform group-hover:translate-x-1"
|
class="ml-2 h-4 w-4 transition-transform group-hover:translate-x-1"
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ const props = defineProps({
|
||||||
const activeTab = ref("actions");
|
const activeTab = ref("actions");
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<AppLayout title="Workflow">
|
<AppLayout title="Potek dela">
|
||||||
<template #header></template>
|
<template #header></template>
|
||||||
<div class="pt-12">
|
<div class="pt-12">
|
||||||
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
|
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
|
||||||
|
|
@ -36,7 +36,7 @@ const activeTab = ref("actions");
|
||||||
<template #header>
|
<template #header>
|
||||||
<div class="flex items-center gap-2">
|
<div class="flex items-center gap-2">
|
||||||
<Workflow :size="18" />
|
<Workflow :size="18" />
|
||||||
<CardTitle class="uppercase">Workflow</CardTitle>
|
<CardTitle class="uppercase">Potek dela</CardTitle>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<Tabs v-model="activeTab" class="border-t">
|
<Tabs v-model="activeTab" class="border-t">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user