CGridTableRec + fields + page
pagine: - Siti Web - Operazioni - Push...
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
APP_VERSION="0.0.63"
|
||||
APP_VERSION="0.1.1"
|
||||
SERVICE_WORKER_FILE="service-worker.js"
|
||||
APP_ID="1"
|
||||
DIRECTORY_LOCAL="freeplanet"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
APP_VERSION="0.0.63"
|
||||
APP_VERSION="0.1.1"
|
||||
SERVICE_WORKER_FILE="service-worker.js"
|
||||
APP_ID="1"
|
||||
DIRECTORY_LOCAL=freeplanet
|
||||
|
||||
BIN
public/images/calendario_eventi.jpg
Executable file
BIN
public/images/calendario_eventi.jpg
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 63 KiB |
@@ -79,7 +79,7 @@ flat round color="white" icon="cancel" v-close-popup
|
||||
<q-chip>
|
||||
<q-avatar v-if="getWhereIcon(myevent.wherecode)">
|
||||
<img
|
||||
:src="`../../statics/images/avatar/` + getWhereIcon(myevent.wherecode)"
|
||||
:src="`../../public/images/avatar/` + getWhereIcon(myevent.wherecode)"
|
||||
alt="Località">
|
||||
</q-avatar>
|
||||
<q-avatar v-else color="blue" font-size="20px" text-color="white" icon="home">
|
||||
@@ -831,7 +831,7 @@ size="md" type="a"
|
||||
<q-chip>
|
||||
<q-avatar v-if="getWhereIcon(event.wherecode)">
|
||||
<img
|
||||
:src="`../../statics/images/avatar/` + getWhereIcon(event.wherecode)"
|
||||
:src="`../../public/images/avatar/` + getWhereIcon(event.wherecode)"
|
||||
:alt="event.wherecode">
|
||||
</q-avatar>
|
||||
<q-avatar color="blue" font-size="20px" text-color="white" icon="home">
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { defineComponent, PropType, ref, watch, toRef, onMounted } from 'vue'
|
||||
import { defineComponent, PropType, ref, watch, toRef, onMounted, toRefs } from 'vue'
|
||||
import { useI18n } from '@src/boot/i18n'
|
||||
|
||||
import { tools } from '../../store/Modules/tools'
|
||||
@@ -81,12 +81,12 @@ export default defineComponent({
|
||||
type: Object as PropType<IPagination>,
|
||||
required: false,
|
||||
default: () => {
|
||||
return { sortBy: '', descending: false, page: 1, rowsNumber: 10, rowsPerPage: 10 }
|
||||
return { sortBy: 'desc', descending: false, page: 1, rowsNumber: 10, rowsPerPage: 10 }
|
||||
},
|
||||
},
|
||||
defaultnewrec: {
|
||||
type: Function,
|
||||
required: true,
|
||||
required: false,
|
||||
},
|
||||
},
|
||||
components: { CMyPopupEdit, CTitleBanner },
|
||||
@@ -96,16 +96,18 @@ export default defineComponent({
|
||||
const userStore = useUserStore()
|
||||
const globalStore = useGlobalStore()
|
||||
|
||||
const mypagination = toRef(props, 'pagination')
|
||||
|
||||
const addRow = ref('Aggiungi')
|
||||
|
||||
const newRecordBool = ref(false)
|
||||
const newRecord: any = ref({})
|
||||
const savenewRec = ref(false)
|
||||
|
||||
const mytable = ref('')
|
||||
const mytitle = ref('')
|
||||
const mycolumns = ref([])
|
||||
const colkey = ref('')
|
||||
const mytable = toRef(props, 'prop_mytable')
|
||||
const mytitle = toRef(props, 'prop_mytitle')
|
||||
const mycolumns = toRef(props, 'prop_mycolumns')
|
||||
const colkey = toRef(props, 'prop_colkey')
|
||||
const search = ref('')
|
||||
|
||||
const tablesel = ref('')
|
||||
@@ -138,8 +140,6 @@ export default defineComponent({
|
||||
|
||||
const mycodeid = toRef(props, 'prop_codeId')
|
||||
|
||||
const mypag = toRef(props, 'pagination')
|
||||
|
||||
// emulate 'SELECT count(*) FROM ...WHERE...'
|
||||
function getRowsNumberCount(myfilter?: any) {
|
||||
|
||||
@@ -206,9 +206,9 @@ export default defineComponent({
|
||||
emit('savefilter', myfilterand)
|
||||
}
|
||||
|
||||
function onRequest(myprops: any) {
|
||||
function onRequest() {
|
||||
// console.log('onRequest', 'myfilter = ', myfilter)
|
||||
const { page, rowsPerPage, rowsNumber, sortBy, descending } = myprops.pagination
|
||||
const { page, rowsPerPage, rowsNumber, sortBy, descending } = mypagination.value
|
||||
const myfilternow = myfilter.value
|
||||
const myfilterandnow = myfilterand.value
|
||||
|
||||
@@ -235,9 +235,9 @@ export default defineComponent({
|
||||
serverData.value = []
|
||||
|
||||
// fetch data from "server"
|
||||
fetchFromServer(startRow, endRow, myfilternow, myfilterandnow, sortBy, descending).then((ris: any) => {
|
||||
return fetchFromServer(startRow, endRow, myfilternow, myfilterandnow, sortBy, descending).then((ris: any) => {
|
||||
|
||||
myprops.pagination.rowsNumber = getRowsNumberCount(myfilter)
|
||||
mypagination.value.rowsNumber = getRowsNumberCount(myfilter)
|
||||
|
||||
// clear out existing data and add new
|
||||
if (returnedData.value === []) {
|
||||
@@ -252,10 +252,10 @@ export default defineComponent({
|
||||
// console.log('serverData', serverData)
|
||||
|
||||
// don't forfunction to update local pagination object
|
||||
myprops.pagination.page = page
|
||||
myprops.pagination.rowsPerPage = rowsPerPage
|
||||
myprops.pagination.sortBy = sortBy
|
||||
myprops.pagination.descending = descending
|
||||
mypagination.value.page = page
|
||||
mypagination.value.rowsPerPage = rowsPerPage
|
||||
mypagination.value.sortBy = sortBy
|
||||
mypagination.value.descending = descending
|
||||
|
||||
// console.log('pagination', pagination)
|
||||
|
||||
@@ -267,9 +267,7 @@ export default defineComponent({
|
||||
|
||||
|
||||
function refresh_table() {
|
||||
onRequest({
|
||||
pagination: props.pagination
|
||||
})
|
||||
onRequest()
|
||||
rowclicksel.value = null
|
||||
}
|
||||
|
||||
@@ -410,18 +408,6 @@ export default defineComponent({
|
||||
|
||||
}
|
||||
|
||||
function created() {
|
||||
console.log('created')
|
||||
// serverData = mylist.slice() // [{ chiave: 'chiave1', valore: 'valore 1' }]
|
||||
|
||||
mytable.value = props.prop_mytable
|
||||
mytitle.value = props.prop_mytitle
|
||||
mycolumns.value = props.prop_mycolumns
|
||||
colkey.value = props.prop_colkey
|
||||
|
||||
changeTable(false)
|
||||
}
|
||||
|
||||
function updatedcol() {
|
||||
// console.log('updatedcol')
|
||||
if (mycolumns.value) {
|
||||
@@ -444,7 +430,7 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
function getrows() {
|
||||
return props.pagination.rowsNumber
|
||||
return mypagination.value.rowsNumber
|
||||
}
|
||||
|
||||
async function createNewRecordDialog() {
|
||||
@@ -472,7 +458,7 @@ export default defineComponent({
|
||||
async function createNewRecord() {
|
||||
loading.value = true
|
||||
|
||||
const mydata = {
|
||||
const mydata: any = {
|
||||
table: mytable,
|
||||
data: {}
|
||||
}
|
||||
@@ -487,7 +473,7 @@ export default defineComponent({
|
||||
const data = await globalStore.saveTable(mydata)
|
||||
|
||||
serverData.value.push(data)
|
||||
mypag.value.rowsNumber++
|
||||
mypagination.value.rowsNumber++
|
||||
|
||||
loading.value = false
|
||||
}
|
||||
@@ -639,7 +625,7 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
function changefuncAct(newval: any) {
|
||||
if (!disabilita) {
|
||||
if (!disabilita()) {
|
||||
tools.setCookie(tools.CAN_EDIT, newval)
|
||||
}
|
||||
}
|
||||
@@ -733,7 +719,6 @@ export default defineComponent({
|
||||
|
||||
onMounted(mounted)
|
||||
|
||||
created()
|
||||
|
||||
return {
|
||||
selItem,
|
||||
@@ -773,6 +758,13 @@ export default defineComponent({
|
||||
colExtra,
|
||||
colclicksel,
|
||||
selected,
|
||||
mypagination,
|
||||
loading,
|
||||
onRequest,
|
||||
serverData,
|
||||
myfilter,
|
||||
disabilita,
|
||||
newRecordBool,
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
@@ -12,10 +12,10 @@
|
||||
flat
|
||||
bordered
|
||||
class="my-sticky-header-table"
|
||||
:data="serverData"
|
||||
:rows="serverData"
|
||||
:columns="mycolumns"
|
||||
:filter="myfilter"
|
||||
v-model:pagination="pagination"
|
||||
v-model:pagination="mypagination"
|
||||
:row-key="colkey"
|
||||
:loading="loading"
|
||||
@request="onRequest"
|
||||
@@ -137,7 +137,7 @@
|
||||
<div :class="getclrow(props.row)">
|
||||
<CMyPopupEdit
|
||||
:canEdit="canEdit"
|
||||
:disable="disabilita"
|
||||
:disable="disabilita()"
|
||||
:col="col"
|
||||
v-model:row="props.row"
|
||||
:field="col.field"
|
||||
@@ -198,7 +198,7 @@
|
||||
@click="colclicksel = mycol">
|
||||
<CMyPopupEdit
|
||||
:canEdit="true"
|
||||
:disable="disabilita"
|
||||
:disable="disabilita()"
|
||||
view="field"
|
||||
:col="mycol"
|
||||
:showall="true"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div>
|
||||
<q-parallax :src="getsrc" :height="tools.myheight_imgtitle(myheight, myheightmobile)">
|
||||
<q-parallax :src="getsrc()" :height="tools.myheight_imgtitle(myheight, myheightmobile)">
|
||||
<h1 class="text-white title" style="text-align: center" >{{title}}</h1>
|
||||
<div v-if="legendinside" class="mylegendinside absolute-bottom custom-caption" style="text-align: center" v-html="legendinside"></div>
|
||||
</q-parallax>
|
||||
|
||||
@@ -180,18 +180,18 @@ export default defineComponent({
|
||||
return visuValByType(myvalue.value)
|
||||
}
|
||||
|
||||
function savefield(value: any, initialval: any) {
|
||||
function savefield(value: any, initialval: any, myq: any) {
|
||||
myvalue.value = value
|
||||
setValDb(props.mykey, myvalue.value, props.type, props.serv, props.table, props.mysubkey, props.id)
|
||||
setValDb(myq, props.mykey, myvalue.value, props.type, props.serv, props.table, props.mysubkey, props.id)
|
||||
}
|
||||
|
||||
function savefieldboolean(value: any) {
|
||||
function savefieldboolean($q: any, value: any) {
|
||||
if (myvalue.value === undefined)
|
||||
myvalue.value = 'true'
|
||||
else
|
||||
myvalue.value = value
|
||||
|
||||
setValDb(props.mykey, myvalue, props.type, props.serv, props.table, props.mysubkey, props.id)
|
||||
setValDb($q, props.mykey, myvalue, props.type, props.serv, props.table, props.mysubkey, props.id)
|
||||
}
|
||||
|
||||
function selectcountry({ name, iso2, dialCode }: { name: string, iso2: string, dialCode: string }) {
|
||||
@@ -227,7 +227,7 @@ export default defineComponent({
|
||||
onInput,
|
||||
tools,
|
||||
costanti,
|
||||
|
||||
myq: $q,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
@@ -109,7 +109,7 @@
|
||||
<div v-else-if="type === costanti.FieldType.boolean">
|
||||
<q-toggle
|
||||
dark color="green" v-model="myvalue" :label="col.title"
|
||||
@input="savefieldboolean"></q-toggle>
|
||||
@input="savefieldboolean($q)"></q-toggle>
|
||||
</div>
|
||||
<div v-else>
|
||||
<div v-html="myvalprinted()"></div>
|
||||
@@ -120,19 +120,20 @@
|
||||
v-model="myvalue"
|
||||
:disable="col.disable"
|
||||
:title="col.title"
|
||||
@save="savefield"
|
||||
@save="(val, initialValue) => savefield(val, initialValue, myq)"
|
||||
buttons
|
||||
v-slot="scope"
|
||||
>
|
||||
|
||||
<div v-if="type === costanti.FieldType.boolean">
|
||||
<q-checkbox v-model="myvalue" :label="col.title">
|
||||
<q-checkbox v-model="scope.value" :label="col.title">
|
||||
</q-checkbox>
|
||||
<div v-html="visuValByType(myvalue)">
|
||||
</div>
|
||||
</div>
|
||||
<div v-else-if="type === costanti.FieldType.string">
|
||||
<q-input
|
||||
v-model="myvalue"
|
||||
v-model="scope.value"
|
||||
autogrow
|
||||
@keyup.enter.stop
|
||||
autofocus>
|
||||
@@ -141,16 +142,17 @@
|
||||
</div>
|
||||
<div v-else-if="type === costanti.FieldType.password">
|
||||
<q-input
|
||||
v-model="myvalue"
|
||||
v-model="scope.value"
|
||||
type="password"
|
||||
@keyup.enter.stop
|
||||
@keyup.enter="scope.set"
|
||||
autofocus>
|
||||
|
||||
</q-input>
|
||||
</div>
|
||||
<div v-else-if="type === costanti.FieldType.number">
|
||||
<q-input
|
||||
v-model="myvalue" type="number"
|
||||
v-model="scope.value" type="number"
|
||||
@keyup.enter="scope.set"
|
||||
autofocus>
|
||||
|
||||
</q-input>
|
||||
@@ -194,6 +196,7 @@
|
||||
:readonly="true"
|
||||
rounded dense
|
||||
debounce="1000"
|
||||
@keyup.enter="scope.set"
|
||||
:label="title">
|
||||
|
||||
<template v-slot:prepend>
|
||||
@@ -246,7 +249,7 @@
|
||||
|
||||
<!--
|
||||
<q-select
|
||||
v-model="myvalue"
|
||||
v-model="scope.value"
|
||||
rounded
|
||||
dense
|
||||
outlined
|
||||
|
||||
@@ -8,12 +8,10 @@ import { Footer } from '@/components/Footer'
|
||||
|
||||
import { CImgTitle } from '../CImgTitle/index'
|
||||
import { CTitle } from '../CTitle/index'
|
||||
import MixinsMetaTags from '../../mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMyPage',
|
||||
components: { Footer, CImgTitle, CTitle },
|
||||
mixins: [MixinsMetaTags],
|
||||
props: {
|
||||
title: String,
|
||||
mypath: {
|
||||
|
||||
@@ -256,7 +256,6 @@
|
||||
<!--</q-dialog>-->
|
||||
</div>
|
||||
|
||||
myvalue: {{ myvalue}}
|
||||
<q-popup-edit
|
||||
v-if="canEdit && col.fieldtype !== costanti.FieldType.html"
|
||||
v-model="myvalue"
|
||||
@@ -265,16 +264,17 @@
|
||||
buttons
|
||||
persistent
|
||||
@save="SaveValueInt"
|
||||
@show="OpenEdit">
|
||||
@show="OpenEdit"
|
||||
v-slot="scope">
|
||||
|
||||
<div v-if="col.fieldtype === costanti.FieldType.boolean">
|
||||
<q-checkbox v-model="myvalue" :label="col.title">
|
||||
<q-checkbox v-model="scope.value" :label="col.title">
|
||||
</q-checkbox>
|
||||
{{ visuValByType(myvalue, col, row) }}
|
||||
</div>
|
||||
<div v-else-if="col.fieldtype === costanti.FieldType.string">
|
||||
<q-input
|
||||
v-model="myvalue"
|
||||
v-model="scope.value"
|
||||
autogrow
|
||||
@keyup.enter.stop
|
||||
autofocus>
|
||||
@@ -283,23 +283,23 @@
|
||||
</div>
|
||||
<div v-else-if="col.fieldtype === costanti.FieldType.password">
|
||||
<q-input
|
||||
v-model="myvalue"
|
||||
v-model="scope.value"
|
||||
type="password"
|
||||
@keyup.enter.stop
|
||||
@keyup.enter="scope.set"
|
||||
autofocus>
|
||||
|
||||
</q-input>
|
||||
</div>
|
||||
<div v-else-if="col.fieldtype === costanti.FieldType.number">
|
||||
<q-input
|
||||
v-model="myvalue" type="number"
|
||||
v-model="scope.value" type="number"
|
||||
autofocus>
|
||||
|
||||
</q-input>
|
||||
</div>
|
||||
<div v-else-if="col.fieldtype === costanti.FieldType.hours">
|
||||
<q-input
|
||||
v-model="myvalue" type="number"
|
||||
v-model="scope.value" type="number"
|
||||
autofocus>
|
||||
|
||||
</q-input>
|
||||
@@ -334,14 +334,14 @@
|
||||
|
||||
<template v-slot:prepend>
|
||||
<div style="font-size: 1rem;">
|
||||
<vue-country-code
|
||||
<!--<vue-country-code
|
||||
:defaultCountry="myvalue"
|
||||
:disabledFetchingCountry="true"
|
||||
@onSelect="selectcountry"
|
||||
:preferredCountries="tools.getprefCountries"
|
||||
:dropdownOptions="{ disabledDialCode: true }">
|
||||
|
||||
</vue-country-code>
|
||||
</vue-country-code>-->
|
||||
</div>
|
||||
</template>
|
||||
</q-input>
|
||||
@@ -352,7 +352,7 @@
|
||||
</div>
|
||||
<div v-else-if="col.fieldtype === costanti.FieldType.intcode">
|
||||
|
||||
<vue-tel-input
|
||||
<!-- <vue-tel-input
|
||||
@country-changed="intcode_change"
|
||||
:value="myvalue"
|
||||
@input="oninput"
|
||||
@@ -361,13 +361,14 @@
|
||||
inputClasses="clCell"
|
||||
wrapperClasses="clCellCode">
|
||||
</vue-tel-input>
|
||||
-->
|
||||
|
||||
</div>
|
||||
<div v-else-if="col.fieldtype === costanti.FieldType.multiselect">
|
||||
<div>join: {{ col.jointable }}</div>
|
||||
|
||||
<q-select
|
||||
v-model="myvalue"
|
||||
v-model="scope.value"
|
||||
rounded
|
||||
outlined
|
||||
multiple
|
||||
|
||||
@@ -117,7 +117,7 @@ v-else class="cltexth3 text-center boldhigh"
|
||||
<q-chip>
|
||||
<q-avatar v-if="getWhereIcon(myevent.wherecode)">
|
||||
<img
|
||||
:src="`../../statics/images/avatar/` + getWhereIcon(myevent.wherecode)"
|
||||
:src="`../../public/images/avatar/` + getWhereIcon(myevent.wherecode)"
|
||||
alt="località">
|
||||
</q-avatar>
|
||||
<q-avatar
|
||||
|
||||
@@ -56,7 +56,7 @@ h4 {
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
z-index: -1;
|
||||
//background: #000 url(../../statics/images/cover.jpg) 50%;
|
||||
//background: #000 url(../../public/images/cover.jpg) 50%;
|
||||
|
||||
background-size: cover
|
||||
}
|
||||
|
||||
@@ -51,6 +51,7 @@ export default defineComponent({
|
||||
return {
|
||||
getsrc,
|
||||
getaltimg,
|
||||
tools,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div>
|
||||
<q-img
|
||||
v-if="imgbackground" :src="getsrc" :alt="getaltimg"
|
||||
v-if="imgbackground" :src="getsrc()" :alt="getaltimg()"
|
||||
:style="tools.styles_imgtitle(sizes)">
|
||||
|
||||
<div class="absolute-bottom text-body1 text-center" :style="styleadd">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div>
|
||||
<q-header reveal elevated :class="getClassColorHeader">
|
||||
<q-header reveal elevated :class="getClassColorHeader()">
|
||||
<q-toolbar
|
||||
color="primary"
|
||||
:glossy="$q.theme === 'mat'"
|
||||
@@ -31,7 +31,7 @@
|
||||
<q-btn
|
||||
ripple
|
||||
size="md"
|
||||
id="newvers" v-if="isNewVersionAvailable" color="secondary" rounded icon="refresh"
|
||||
id="newvers" v-if="isNewVersionAvailable()" color="secondary" rounded icon="refresh"
|
||||
class="btnNewVersShow" @click="RefreshApp()" :label="t('notification.newVersionAvailable')">
|
||||
</q-btn>
|
||||
|
||||
|
||||
862
src/css/app.scss
862
src/css/app.scss
@@ -1 +1,861 @@
|
||||
// app global css in SCSS form
|
||||
body {
|
||||
font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
color: #333333;
|
||||
line-height: 1.5;
|
||||
//font-size: 1rem;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 100%; // default font size (browser 16) -> (10 62.5%)
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 125%; // default font size (browser 16) -> (10 62.5%)
|
||||
margin: 0 0 8px;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul li::before {
|
||||
content: '\2713';
|
||||
color: red;
|
||||
display: inline-block;
|
||||
width: 1em;
|
||||
margin-left: 20px;
|
||||
@media (max-width: 600px) {
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
ol li::before {
|
||||
color: red;
|
||||
display: inline-block;
|
||||
width: 1em;
|
||||
margin-left: 20px;
|
||||
@media (max-width: 600px) {
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
color: #2f2c8b;
|
||||
font-size: 18px;
|
||||
@media (max-width: 600px) {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
line-height: 3rem;
|
||||
letter-spacing: -.01562em;
|
||||
}
|
||||
|
||||
.logo {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
max-height: 250px;
|
||||
max-width: 250px;
|
||||
@media (max-width: 718px) {
|
||||
max-height: 180px;
|
||||
max-width: 180px;
|
||||
}
|
||||
}
|
||||
|
||||
$grayshadow: #555;
|
||||
|
||||
$graytext: #555;
|
||||
|
||||
$textcol: blue;
|
||||
$textcol_scuro: darkblue;
|
||||
$heightBtn: 100%;
|
||||
|
||||
.flex-item {
|
||||
// background-color: #d5e2eb;
|
||||
display: flex;
|
||||
padding: 2px;
|
||||
margin: 2px;
|
||||
margin-left: 3px;
|
||||
margin-right: 3px;
|
||||
color: #000;
|
||||
font-size: 0.9rem;
|
||||
height: $heightBtn;
|
||||
line-height: $heightBtn;
|
||||
vertical-align: middle;
|
||||
//flex: 0 0 100%;
|
||||
}
|
||||
|
||||
.fade-enter-active, .fade-leave-active {
|
||||
transition: opacity .2s;
|
||||
}
|
||||
|
||||
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */
|
||||
{
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.slide-enter {
|
||||
}
|
||||
|
||||
.slide-enter-active {
|
||||
animation: slide-in 0.2s ease-out forwards;
|
||||
}
|
||||
|
||||
.slide-leave {
|
||||
}
|
||||
|
||||
.slide-leave-active {
|
||||
animation: slide-out 0.5s ease-out forwards;
|
||||
}
|
||||
|
||||
@keyframes slide-in {
|
||||
from {
|
||||
transform: translateX(-500px);
|
||||
}
|
||||
to {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slide-out {
|
||||
from {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
to {
|
||||
transform: translateX(1600px);
|
||||
}
|
||||
}
|
||||
|
||||
.myinput-area {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.myinput-area-big {
|
||||
height: 90px;
|
||||
}
|
||||
|
||||
.my-notif-class {
|
||||
font-weight: bold;
|
||||
font-size: 1rem;
|
||||
border-radius: 30px !important;
|
||||
text-shadow: .05rem .05rem .15rem #878787;
|
||||
}
|
||||
|
||||
.mybanner {
|
||||
font-weight: bold;
|
||||
font-size: 1.1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.lowperc {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.medperc {
|
||||
color: blue;
|
||||
}
|
||||
|
||||
.highperc {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.hide-if-small {
|
||||
@media (max-width: 600px) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.thiny-if-small {
|
||||
@media (max-width: 600px) {
|
||||
max-width: 22px;
|
||||
}
|
||||
}
|
||||
|
||||
.links, .links a {
|
||||
text-shadow: 1px 1px 1px #555 !important;
|
||||
// font-weight: bold;
|
||||
color: cornflowerblue !important;
|
||||
}
|
||||
|
||||
.links:hover {
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
.text-subtitle1, h2 {
|
||||
margin-bottom: 6px;
|
||||
font-size: 1.35rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.75rem;
|
||||
text-shadow: .25 .25rem .5rem $grayshadow;
|
||||
letter-spacing: .00937em;
|
||||
&.big {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.text-price {
|
||||
margin-bottom: 6px;
|
||||
font-size: 1.10rem;
|
||||
font-weight: 400;
|
||||
text-shadow: .25 .25rem .5rem $grayshadow;
|
||||
letter-spacing: .00937em;
|
||||
&.big {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.text-subtitle2, h3 {
|
||||
margin-bottom: 4px;
|
||||
font-size: 1.15rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.75rem;
|
||||
letter-spacing: .00937em;
|
||||
text-shadow: .25rem .25rem .5rem $grayshadow;
|
||||
}
|
||||
|
||||
.text-subtitle3 {
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.75rem;
|
||||
letter-spacing: .00937em;
|
||||
}
|
||||
|
||||
@media (max-width: 718px) {
|
||||
// PER VERSIONE MOBILE
|
||||
|
||||
p {
|
||||
font-size: 100%; // default font size (browser 16) -> (10 62.5%)
|
||||
font-family: "Abyssinica SIL", serif;
|
||||
text-justify: auto;
|
||||
margin: 0 0 4px;
|
||||
}
|
||||
|
||||
.text-subtitle1 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
.text-subtitle2 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.text-subtitle3 {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
.text-subtitle4 {
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
.cltexth3 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
.text-big {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
.text-sobig {
|
||||
font-size: 1.50rem;
|
||||
}
|
||||
}
|
||||
|
||||
.my-card {
|
||||
width: 100%;
|
||||
max-width: 300px;
|
||||
min-width: 300px;
|
||||
padding: 1rem 1rem;
|
||||
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.myimgtitle {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
width: 400px;
|
||||
|
||||
@media (max-width: 718px) {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 300px;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.my-card-big {
|
||||
width: 100%;
|
||||
padding: 1rem 1rem;
|
||||
|
||||
box-shadow: none;
|
||||
|
||||
@media (max-width: 718px) {
|
||||
// PER VERSIONE MOBILE
|
||||
max-width: 400px;
|
||||
padding: 1rem 1rem;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.text-trans {
|
||||
opacity: 0.9;
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
|
||||
filter: alpha(opacity=90);
|
||||
}
|
||||
|
||||
.text-spacetrans {
|
||||
padding: 0 !important;
|
||||
background: rgba(0, 0, 0, 0.3) !important;
|
||||
border-radius: 30px !important;
|
||||
}
|
||||
|
||||
.text-shadow {
|
||||
text-shadow: .15rem .15rem .15rem $grayshadow;
|
||||
}
|
||||
|
||||
.citazione {
|
||||
font-size: 0.75rem;
|
||||
font-family: "Lucida Calligraphy", serif;
|
||||
}
|
||||
|
||||
.cltexth3, .cltexth2, .cltexth4, .cltexth5, .cltexth6 {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.75rem;
|
||||
letter-spacing: .01em;
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
.cltexth4 {
|
||||
font-size: 1.15rem;
|
||||
}
|
||||
|
||||
.cltexth5 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.cltexth6 {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
.cltexth2 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.boldhigh, .boldop, .text-big {
|
||||
font-weight: 500;
|
||||
text-shadow: .05rem .05rem .05rem $grayshadow;
|
||||
}
|
||||
|
||||
.boldop {
|
||||
color: darkblue;
|
||||
}
|
||||
|
||||
.text-big {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.center_to_image {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.center_img {
|
||||
display: block !important;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.padding_cell {
|
||||
padding: 0.75rem 0.5rem;
|
||||
}
|
||||
|
||||
@media (max-width: 3000px) {
|
||||
.q-parallax__media > img, .myclimg {
|
||||
max-height: 800px !important;
|
||||
min-width: inherit !important;
|
||||
min-height: inherit !important;
|
||||
}
|
||||
.myclimg, .maxwidth {
|
||||
height: 750px !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1600px) {
|
||||
.q-parallax__media > img, .myclimg {
|
||||
max-height: 800px !important;
|
||||
min-width: inherit !important;
|
||||
min-height: inherit !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1400px) {
|
||||
.q-parallax__media > img, .myclimg {
|
||||
max-height: 800px !important;
|
||||
min-width: inherit !important;
|
||||
min-height: inherit !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
.q-parallax__media > img, .myclimg {
|
||||
max-height: 800px !important;
|
||||
min-width: inherit !important;
|
||||
min-height: inherit !important;
|
||||
}
|
||||
.myclimg, .maxwidth {
|
||||
height: 700px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.maxwidth {
|
||||
max-width: 1200px !important;
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.q-parallax__media > img, .myclimg {
|
||||
max-height: 700px !important;
|
||||
min-width: inherit !important;
|
||||
min-height: inherit !important;
|
||||
}
|
||||
.myclimg, .maxwidth {
|
||||
height: 650px !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
.q-parallax__media > img, .myclimg {
|
||||
max-height: 600px !important;
|
||||
min-width: inherit !important;
|
||||
min-height: inherit !important;
|
||||
}
|
||||
.myclimg, .maxwidth {
|
||||
height: 550px !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 700px) {
|
||||
.q-parallax__media > img, .myclimg {
|
||||
max-height: 500px !important;
|
||||
min-width: inherit !important;
|
||||
min-height: inherit !important;
|
||||
}
|
||||
.myclimg, .maxwidth {
|
||||
height: 400px !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.q-parallax__media > img, .myclimg {
|
||||
max-height: 450px !important;
|
||||
min-height: inherit !important;
|
||||
min-width: 100% !important;
|
||||
}
|
||||
.myclimg, .maxwidth {
|
||||
height: 400px !important;
|
||||
}
|
||||
}
|
||||
|
||||
// preloading images:
|
||||
@media screen {
|
||||
div#preloader {
|
||||
position: absolute;
|
||||
left: -9999px;
|
||||
top: -9999px;
|
||||
}
|
||||
div#preloader img {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
div#preloader,
|
||||
div#preloader img {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.tothebottomfixed {
|
||||
left: 0;
|
||||
right: 0;
|
||||
position: fixed;
|
||||
z-index: 9999;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
margin: 0 auto;
|
||||
bottom: 10px;
|
||||
}
|
||||
|
||||
.tothetop {
|
||||
left: 0;
|
||||
right: 0;
|
||||
position: fixed;
|
||||
z-index: 9999;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
margin: 0 auto;
|
||||
top: 20px;
|
||||
}
|
||||
|
||||
.centermydiv {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.text-verified {
|
||||
font-size: 1.25rem;
|
||||
text-shadow: .05rem .05rem .15rem #fff;
|
||||
background-color: red;
|
||||
border-radius: 1rem !important;
|
||||
text-align: center;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.text-evidente{
|
||||
font-size: 1.25rem;
|
||||
color: blue;
|
||||
line-height: 1.75rem;
|
||||
letter-spacing: .01em;
|
||||
}
|
||||
|
||||
.text-evidente2{
|
||||
font-size: 1.25rem;
|
||||
color: blue;
|
||||
line-height: 1.75rem;
|
||||
letter-spacing: .005em;
|
||||
}
|
||||
|
||||
|
||||
.shadow-max {
|
||||
//color: white;
|
||||
text-shadow: .25rem .25rem .5rem $grayshadow;
|
||||
}
|
||||
|
||||
.myh4 {
|
||||
font-size: 1.25rem;
|
||||
color: red;
|
||||
line-height: 125%;
|
||||
}
|
||||
|
||||
.mybtn_sticky {
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.mybtn_sticky:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.imgautosize {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.margin_buttons {
|
||||
margin: -8px -8px;
|
||||
}
|
||||
|
||||
.margin_buttons > * {
|
||||
margin: 12px 12px !important;
|
||||
}
|
||||
|
||||
.fa-flag-it:before {
|
||||
content: url('../../public/icons/flag_it.svg');
|
||||
}
|
||||
|
||||
.fa-flag-us:before {
|
||||
content: url('../../public/icons/flag_us.svg');
|
||||
}
|
||||
|
||||
|
||||
.fa-flag-es:before {
|
||||
content: url('../../public/icons/flag_es.svg');
|
||||
}
|
||||
|
||||
.fa-flag-gb:before {
|
||||
content: url('../../public/icons/flag_gb.svg');
|
||||
}
|
||||
|
||||
.fa-flag-de:before {
|
||||
content: url('../../public/icons/flag_de.svg');
|
||||
}
|
||||
|
||||
.animazione {
|
||||
animation-duration: 2s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
.wrapword {
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.clBorderWarning, .clBorderZoom, .clBorderTutor {
|
||||
border: #f69f09 solid 5px;
|
||||
border-radius: 32px;
|
||||
font-size: 1rem;
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
.clBorderShare {
|
||||
border-radius: 32px;
|
||||
font-size: 1rem;
|
||||
padding: 6px;
|
||||
border: #666cf6 solid 3px;
|
||||
}
|
||||
|
||||
.clBorderImportant, .clBorderSteps {
|
||||
border: red solid 5px;
|
||||
border-radius: 16px;
|
||||
font-size: 1rem;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.clBorderZoom {
|
||||
border: #666cf6 solid 5px;
|
||||
}
|
||||
|
||||
.clBorderTutor {
|
||||
border-radius: 16px;
|
||||
border: #f634b5 solid 2px;
|
||||
}
|
||||
|
||||
.clBorderSteps {
|
||||
border-color: green;
|
||||
}
|
||||
|
||||
.text-h5 {
|
||||
@media (max-width: 600px) {
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.5rem;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
}
|
||||
|
||||
.clBorderSmall {
|
||||
border: #dfe3f6 solid 1px;
|
||||
border-radius: 16px;
|
||||
font-size: 1rem;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.clBorderxs {
|
||||
border: #dfe3f6 solid 1px;
|
||||
border-radius: 16px;
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.img {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
max-height: 350px;
|
||||
max-width: 350px;
|
||||
@media (max-width: 718px) {
|
||||
max-height: 350px;
|
||||
max-width: 350px;
|
||||
}
|
||||
}
|
||||
|
||||
.img2 {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
max-height: 550px;
|
||||
max-width: 550px;
|
||||
@media (max-width: 718px) {
|
||||
max-height: 350px;
|
||||
max-width: 350px;
|
||||
}
|
||||
}
|
||||
|
||||
.center-150 {
|
||||
width: 150px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.text-h7{
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.text-h8{
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.bordo_stondato, .bordo_stondato_blu{
|
||||
margin: 4px;
|
||||
border-radius: 3rem;
|
||||
padding-left: 14px;
|
||||
padding-right: 14px;
|
||||
padding-top: 8px;
|
||||
padding-bottom: 8px;
|
||||
border: solid 3px #49b502;
|
||||
}
|
||||
|
||||
.bordo_stondato_blu {
|
||||
border: solid 3px #0f01b5;
|
||||
}
|
||||
|
||||
.bordo_stondato2, .bordo_stondato_blu2{
|
||||
margin: 4px;
|
||||
border-radius: 3rem;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
border: solid 3px #49b502;
|
||||
}
|
||||
|
||||
.bordo_stondato_blu2 {
|
||||
border: solid 3px #0f01b5;
|
||||
}
|
||||
|
||||
.my-sticky-header-table {
|
||||
/* max height is important */
|
||||
/* this is when the loading indicator appears */
|
||||
|
||||
}
|
||||
.my-sticky-header-table .q-table__middle {
|
||||
max-height: 650px !important;
|
||||
@media (max-width: 718px) {
|
||||
// PER VERSIONE MOBILE
|
||||
max-height: 400px !important;
|
||||
}
|
||||
}
|
||||
.my-sticky-header-table .q-table__top,
|
||||
.my-sticky-header-table .q-table__bottom,
|
||||
.my-sticky-header-table thead tr:first-child th {
|
||||
/* bg color is important for th; just specify one */
|
||||
background-color: #f0ffff;
|
||||
}
|
||||
.my-sticky-header-table thead tr th {
|
||||
position: sticky;
|
||||
z-index: 1;
|
||||
}
|
||||
.my-sticky-header-table thead tr:first-child th {
|
||||
top: 0;
|
||||
}
|
||||
.my-sticky-header-table.q-table--loading thead tr:last-child th {
|
||||
/* height of all previous header rows */
|
||||
top: 48px;
|
||||
}
|
||||
|
||||
.my-card-shadow {
|
||||
width: 100%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
max-width: 800px;
|
||||
min-width: 800px;
|
||||
@media (max-width: 500px) {
|
||||
max-width: 350px;
|
||||
min-width: 300px;
|
||||
}
|
||||
padding-bottom: 20px;
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
border-radius: 30px;
|
||||
|
||||
// transition: transform .2s ease-out;
|
||||
|
||||
}
|
||||
|
||||
.my-card-shadow:hover {
|
||||
// transition: transform .2s ease-in;
|
||||
// transform: scale(1.03);
|
||||
@media (max-width: 500px) {
|
||||
// transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.text-small{
|
||||
font-size: 0.90rem;
|
||||
@media (max-width: 500px) {
|
||||
font-size: 0.8rem !important;
|
||||
}
|
||||
}
|
||||
|
||||
#mycontainer {
|
||||
min-height:100%;
|
||||
position:relative;
|
||||
}
|
||||
.myheader {
|
||||
padding: 5px;
|
||||
@media (max-width: 500px) {
|
||||
padding: 1px;
|
||||
}
|
||||
}
|
||||
#mybody {
|
||||
padding: 5px;
|
||||
@media (max-width: 500px) {
|
||||
padding: 1px;
|
||||
}
|
||||
}
|
||||
.myfooter{
|
||||
|
||||
}
|
||||
|
||||
.iconplusminus{
|
||||
font-size: 6px;
|
||||
}
|
||||
|
||||
.clpos{
|
||||
color: #C0C0C0;
|
||||
}
|
||||
.clresp{
|
||||
color: #206d24;
|
||||
}
|
||||
.clrespempty{
|
||||
color: #DDDDDD;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.flex-item {
|
||||
padding: 1px;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.flex-container {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.q-tab-panel {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.q-item {
|
||||
padding: 2px 4px;
|
||||
}
|
||||
}
|
||||
|
||||
.underline {
|
||||
text-decoration: underline;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
.underline:hover {
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.centeritems{
|
||||
place-content: center;
|
||||
}
|
||||
|
||||
@@ -55,6 +55,19 @@ const arrlista = [
|
||||
]
|
||||
|
||||
const routes_admin: IListRoutes[] = [
|
||||
{
|
||||
active: true,
|
||||
order: 10,
|
||||
path: '/admin/sites',
|
||||
materialIcon: 'event_seat',
|
||||
name: 'pages.Sites',
|
||||
component: () => import('@/rootgen/admin/sites/sites.vue'),
|
||||
level_parent: 0.0,
|
||||
level_child: 0.5,
|
||||
inmenu: true,
|
||||
submenu: true,
|
||||
onlyAdmin: true
|
||||
},
|
||||
{
|
||||
active: true,
|
||||
order: 1000,
|
||||
@@ -68,6 +81,32 @@ const routes_admin: IListRoutes[] = [
|
||||
submenu: true,
|
||||
onlyAdmin: true
|
||||
},
|
||||
{
|
||||
active: true,
|
||||
order: 1020,
|
||||
path: '/admin/dbop',
|
||||
materialIcon: 'event_seat',
|
||||
name: 'pages.dbop',
|
||||
component: () => import('@/views/admin/dbop/dbop.vue'),
|
||||
level_parent: 0.0,
|
||||
level_child: 0.5,
|
||||
inmenu: true,
|
||||
submenu: true,
|
||||
onlyAdmin: true
|
||||
},
|
||||
{
|
||||
active: true,
|
||||
order: 1030,
|
||||
path: '/admin/sendpushnotif',
|
||||
materialIcon: 'event_seat',
|
||||
name: 'otherpages.manage.sendpushnotif',
|
||||
component: () => import('@/rootgen/admin/sendpushnotif/sendpushnotif.vue'),
|
||||
level_parent: 0.0,
|
||||
level_child: 0.5,
|
||||
inmenu: true,
|
||||
submenu: true,
|
||||
onlyAdmin: true
|
||||
}
|
||||
]
|
||||
|
||||
const baseroutes: IListRoutes[] = [
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
display: inline-block;
|
||||
padding: 0 0px 0px 0px;
|
||||
padding: 0 0 0 0;
|
||||
-webkit-transform: rotate(-180deg);
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
@@ -64,7 +64,7 @@
|
||||
}
|
||||
|
||||
.isAdmin {
|
||||
color: red;
|
||||
color: red !important;
|
||||
}
|
||||
|
||||
.isSocioResidente {
|
||||
@@ -94,7 +94,7 @@
|
||||
}
|
||||
|
||||
.clexpansion{
|
||||
min-width: 0px !important;
|
||||
min-width: 0 !important;
|
||||
}
|
||||
|
||||
.my-menu-active {
|
||||
|
||||
@@ -22,7 +22,7 @@ export default defineComponent({
|
||||
const path = computed(() => route.path)
|
||||
|
||||
function getmenu(): any {
|
||||
console.log('getmenu menuOne!')
|
||||
// console.log('getmenu menuOne!')
|
||||
return globalStore.getmenu
|
||||
}
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ export default function () {
|
||||
}
|
||||
|
||||
function getValDb(keystr: string, serv: boolean, def?: any, table?: string, subkey?: any, id?: any, idmain?: any) {
|
||||
console.log('getValDb')
|
||||
// console.log('getValDb')
|
||||
return toolsext.getValDb(keystr, serv, def, table, subkey, id, idmain)
|
||||
}
|
||||
|
||||
@@ -39,14 +39,14 @@ export default function () {
|
||||
return ris
|
||||
}
|
||||
|
||||
async function setValDb(key: string, value: any, type: any, serv: boolean, table?: string, subkey?: string, id?: any) {
|
||||
async function setValDb($q: any, key: string, value: any, type: any, serv: boolean, table?: string, subkey?: string, id?: any) {
|
||||
const userStore = useUserStore()
|
||||
const globalStore = useGlobalStore()
|
||||
const $q = useQuasar()
|
||||
const { t } = useI18n()
|
||||
|
||||
console.log('setValDb', key, value, serv, table, subkey)
|
||||
let mydatatosave: IDataPass | null = null
|
||||
|
||||
if (table === 'users') {
|
||||
const myid = userStore.my._id
|
||||
|
||||
@@ -169,10 +169,7 @@ export default function () {
|
||||
// console.log('myval', myval)
|
||||
try {
|
||||
if (myval) {
|
||||
const myrec: any = JSON.parse(myval)
|
||||
// console.log('*************** getarrValDb')
|
||||
// console.table(myrec)
|
||||
return myrec
|
||||
return JSON.parse(myval)
|
||||
}
|
||||
return []
|
||||
} catch (e) {
|
||||
|
||||
@@ -4,17 +4,25 @@ import {
|
||||
import { IMetaTags } from '@model'
|
||||
import { tools } from '@store/Modules/tools'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useMeta } from 'quasar'
|
||||
|
||||
|
||||
// You can declare a mixin as the same style as components.
|
||||
export default defineComponent({
|
||||
name: 'MixinMetaTags',
|
||||
setup() {
|
||||
const mymeta = ref<IMetaTags>({ title: '', description: '', keywords: '' })
|
||||
|
||||
const $q = useQuasar()
|
||||
export default function () {
|
||||
|
||||
function setmeta(mym: IMetaTags) {
|
||||
mymeta.value = mym
|
||||
|
||||
//++Todo META TAGS!
|
||||
/*
|
||||
useMeta(() => {
|
||||
return {
|
||||
title: mym.title,
|
||||
description: mym.description,
|
||||
keywords: mym.keywords,
|
||||
}
|
||||
})
|
||||
|
||||
*/
|
||||
}
|
||||
|
||||
function getsrcbyimg(myimg: string) {
|
||||
@@ -25,10 +33,7 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
return {
|
||||
$q,
|
||||
setmeta,
|
||||
getsrcbyimg,
|
||||
}
|
||||
},
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
0
src/rootgen/admin/departments/departments.scss
Executable file
0
src/rootgen/admin/departments/departments.scss
Executable file
34
src/rootgen/admin/departments/departments.ts
Executable file
34
src/rootgen/admin/departments/departments.ts
Executable file
@@ -0,0 +1,34 @@
|
||||
|
||||
import { colTabledepartments } from '@src/store/Modules/fieldsTable'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
|
||||
import { defineComponent } from 'vue'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import MixinMetaTags from '../../../mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'StorehousePage',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
const pagination = {
|
||||
sortBy: 'name',
|
||||
descending: false,
|
||||
page: 2,
|
||||
rowsPerPage: 5
|
||||
// rowsNumber: xx if getting data from a server
|
||||
}
|
||||
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
return {
|
||||
colTabledepartments,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
|
||||
})
|
||||
31
src/rootgen/admin/departments/departments.vue
Executable file
31
src/rootgen/admin/departments/departments.vue
Executable file
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<CMyPage title="Uffici" imgbackground="../../public/images/produttori.jpg" sizes="max-height: 120px">
|
||||
<span>{{
|
||||
setmeta({
|
||||
title: 'Uffici',
|
||||
description: '',
|
||||
keywords: '',
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Uffici"></CTitleBanner>
|
||||
<CGridTableRec
|
||||
prop_mytable="departments"
|
||||
prop_mytitle="Lista Uffici"
|
||||
:prop_mycolumns="colTabledepartments"
|
||||
prop_colkey="name"
|
||||
nodataLabel="Nessun Ufficio"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./departments.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'departments.scss';
|
||||
</style>
|
||||
58
src/rootgen/admin/eventlist/eventlist.scss
Executable file
58
src/rootgen/admin/eventlist/eventlist.scss
Executable file
@@ -0,0 +1,58 @@
|
||||
.listaev {
|
||||
color: black;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.25rem;
|
||||
letter-spacing: 0.03333em;
|
||||
|
||||
&__date {
|
||||
font-weight: bold;
|
||||
color: #2ba0fd;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
&__title {
|
||||
color: red;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.066em;
|
||||
}
|
||||
|
||||
&__details {
|
||||
color: black;
|
||||
}
|
||||
|
||||
&__tdimg {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
&__table {
|
||||
margin: 10px;
|
||||
border-radius: 1rem;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
&__align_center_mobile {
|
||||
text-align: left;
|
||||
@media (max-width: 718px) {
|
||||
text-align: center;
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
|
||||
&__img {
|
||||
padding: 0.5rem !important;
|
||||
float: left;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
border-radius: 1rem;
|
||||
|
||||
@media (max-width: 718px) {
|
||||
// PER VERSIONE MOBILE
|
||||
float: none;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
156
src/rootgen/admin/eventlist/eventlist.ts
Executable file
156
src/rootgen/admin/eventlist/eventlist.ts
Executable file
@@ -0,0 +1,156 @@
|
||||
import { defineComponent, onMounted, ref } from 'vue'
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { func_tools } from '@src/store/Modules/toolsext'
|
||||
import { CTitle } from '../../../components/CTitle/index'
|
||||
import { CMyPage } from '../../../components/CMyPage/index'
|
||||
import { IBookedEvent, ICalendarState, IEvents, ITodo, ITodosState, IUserState, IUserFields } from '@src/model'
|
||||
import { lists } from '@src/store/Modules/lists'
|
||||
|
||||
import MixinUsers from '@src/mixins/mixin-users'
|
||||
import MixinOperator from '@src/mixins/mixin-operator'
|
||||
import MixinEvents from '@src/mixins/mixin-events'
|
||||
import { useRoute } from 'vue-router'
|
||||
import { useCalendarStore } from '@store/CalendarStore'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from '@/boot/i18n'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'Eventlist',
|
||||
components: { CTitle, CMyPage },
|
||||
|
||||
setup() {
|
||||
|
||||
const shownote = ref(false)
|
||||
const eventsel = ref(null)
|
||||
const showPrev = ref(false)
|
||||
const numrec = ref(0)
|
||||
const $q = useQuasar()
|
||||
const { t } = useI18n()
|
||||
|
||||
const calendarStore = useCalendarStore()
|
||||
const userStore = useUserStore()
|
||||
const $route = useRoute()
|
||||
|
||||
const { getTeacherByUsername } = MixinOperator()
|
||||
|
||||
const { UpdateDbByFields } = MixinEvents()
|
||||
|
||||
function getEventList() {
|
||||
const eventsloc: IEvents[] = []
|
||||
|
||||
const datenow = tools.addDays(tools.getDateNow(), -1)
|
||||
|
||||
let numevent = 0
|
||||
|
||||
calendarStore.eventlist.forEach((myevent: IEvents) => {
|
||||
// console.log(' ciclo i = ', i, calendarStore.eventlist[i])
|
||||
// let dateEvent = new Date(myevent.date + ' 00:00:00')
|
||||
const dateEvent = new Date(myevent.dateTimeEnd!)
|
||||
|
||||
let add = true
|
||||
|
||||
if (!showall) {
|
||||
add = calendarStore.getNumParticipants(myevent, showall(), tools.peopleWhere.participants) > 0
|
||||
}
|
||||
|
||||
if (add) {
|
||||
|
||||
if (showPrev.value) {
|
||||
if (dateEvent < datenow) {
|
||||
eventsloc.push(myevent)
|
||||
numevent++
|
||||
}
|
||||
} else {
|
||||
if (dateEvent >= datenow) {
|
||||
eventsloc.push(myevent)
|
||||
numevent++
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
})
|
||||
|
||||
numrec.value = numevent
|
||||
|
||||
if (showPrev.value) {
|
||||
eventsloc.reverse()
|
||||
}
|
||||
|
||||
return eventsloc.filter((rec) => rec.title !== '')
|
||||
}
|
||||
|
||||
function getNumEvent() {
|
||||
const eventsloc: IEvents[] = []
|
||||
|
||||
const datenow = tools.addDays(tools.getDateNow(), -1)
|
||||
|
||||
let numevent = 0
|
||||
|
||||
calendarStore.eventlist.forEach((myevent: IEvents) => {
|
||||
// console.log(' ciclo i = ', i, calendarStore.eventlist[i])
|
||||
// let dateEvent = new Date(myevent.date + ' 00:00:00')
|
||||
const dateEvent = new Date(myevent.dateTimeEnd!)
|
||||
|
||||
let add = true
|
||||
|
||||
if (!showall) {
|
||||
add = calendarStore.getNumParticipants(myevent, showall(), tools.peopleWhere.participants) > 0
|
||||
}
|
||||
|
||||
if (add) {
|
||||
if (showPrev.value) {
|
||||
if (dateEvent < datenow)
|
||||
numevent++
|
||||
} else {
|
||||
if (dateEvent >= datenow)
|
||||
numevent++
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
numrec.value = numevent
|
||||
|
||||
return eventsloc
|
||||
}
|
||||
|
||||
function mostra() {
|
||||
return $route.name
|
||||
}
|
||||
|
||||
function showall() {
|
||||
return $route.name === 'otherpages.admin.usereventlist'
|
||||
}
|
||||
|
||||
function gettitle() {
|
||||
if (showall())
|
||||
return t('otherpages.admin.usereventlist')
|
||||
else
|
||||
return t('otherpages.admin.eventlist')
|
||||
}
|
||||
|
||||
function mounted() {
|
||||
getNumEvent()
|
||||
}
|
||||
|
||||
function change_rec(eventparam: any) {
|
||||
UpdateDbByFields($q, eventparam)
|
||||
}
|
||||
|
||||
onMounted(mounted)
|
||||
|
||||
return {
|
||||
getEventList,
|
||||
tools,
|
||||
func_tools,
|
||||
lists,
|
||||
showall,
|
||||
calendarStore,
|
||||
userStore,
|
||||
getTeacherByUsername,
|
||||
numrec,
|
||||
shownote,
|
||||
}
|
||||
}
|
||||
})
|
||||
190
src/rootgen/admin/eventlist/eventlist.vue
Executable file
190
src/rootgen/admin/eventlist/eventlist.vue
Executable file
@@ -0,0 +1,190 @@
|
||||
<template>
|
||||
<CMyPage
|
||||
title="Events" keywords="" description="" imgbackground="../../public/images/calendario_eventi.jpg"
|
||||
sizes="max-height: 120px">
|
||||
|
||||
<div class="q-ma-sm q-pa-xs">
|
||||
<div v-if="!showall" class="text-h6 bg-red text-white text-center q-pa-xs shadow-max">Lista delle tue
|
||||
prenotazioni agli Eventi:
|
||||
</div>
|
||||
|
||||
<q-space></q-space>
|
||||
|
||||
<!--<q-toggle v-model="showPrev" :val="lists.MenuAction.SHOW_PREV_REC"
|
||||
:label="$t('grid.showprevedit')"></q-toggle>-->
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<q-markup-table wrap-cells bordered separator="horizontal" class="listaev__table">
|
||||
<thead>
|
||||
<th>{{ $t('cal.data') }}</th>
|
||||
<th>{{ $t('cal.event') }}</th>
|
||||
<th v-if="!tools.isMobile()">{{ $t('cal.teachertitle') }}</th>
|
||||
<th v-if="showall">
|
||||
<span v-if="!tools.isMobile()">{{ $t('cal.selnumpeople') }}</span>
|
||||
<span v-else>{{ $t('cal.selnumpeople_short') }}</span>
|
||||
</th>
|
||||
<th v-if="showall">
|
||||
{{ $t('cal.selnumpeopleLunch') }}
|
||||
</th>
|
||||
<th v-if="showall">
|
||||
{{ $t('cal.selnumpeopleDinner') }}
|
||||
</th>
|
||||
<th v-if="showall">
|
||||
{{ $t('cal.selnumpeopleDinnerShared') }}
|
||||
</th>
|
||||
<th>{{ $t('cal.peoplebooked') }}</th>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<tr v-for="(event, index) in getEventList()" :key="index" class="listaev listaev__table">
|
||||
<td>
|
||||
<div class="text-center text-blue">{{ func_tools.getDateStr(event.dateTimeStart) }}</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="text-center boldhigh">{{ event.title }}</div>
|
||||
</td>
|
||||
<td v-if="!tools.isMobile()">
|
||||
<div class="text-center">{{ getTeacherByUsername(event.teacher) }}
|
||||
<span v-if="isValidUsername(event.teacher2)"> - {{ getTeacherByUsername(event.teacher2) }}</span>
|
||||
<span v-if="isValidUsername(event.teacher3)"> - {{ getTeacherByUsername(event.teacher3) }}</span>
|
||||
<span v-if="isValidUsername(event.teacher4)"> - {{ getTeacherByUsername(event.teacher4) }}</span>
|
||||
</div>
|
||||
</td>
|
||||
<td v-if="showall">
|
||||
<div class="text-center">{{
|
||||
calendarStore.getNumParticipants(event, showall, tools.peopleWhere.participants)
|
||||
}}
|
||||
</div>
|
||||
</td>
|
||||
<td v-if="showall">
|
||||
<div class="text-center">{{
|
||||
calendarStore.getNumParticipants(event, showall, tools.peopleWhere.lunch)
|
||||
}}
|
||||
</div>
|
||||
</td>
|
||||
<td v-if="showall">
|
||||
<div class="text-center">{{
|
||||
calendarStore.getNumParticipants(event, showall, tools.peopleWhere.dinner)
|
||||
}}
|
||||
</div>
|
||||
</td>
|
||||
<td v-if="showall">
|
||||
<div class="text-center">{{
|
||||
calendarStore.getNumParticipants(event, showall, tools.peopleWhere.dinnerShared)
|
||||
}}
|
||||
</div>
|
||||
</td>
|
||||
|
||||
<td class="text-center">
|
||||
<q-btn
|
||||
v-if="calendarStore.getNumParticipants(event, showall, tools.peopleWhere.participants) > 0"
|
||||
flat
|
||||
dense
|
||||
color="positive"
|
||||
rounded
|
||||
icon="fas fa-user-check"
|
||||
@click="showpeople = true; eventsel = event"
|
||||
>
|
||||
</q-btn>
|
||||
<q-btn
|
||||
dense
|
||||
flat
|
||||
rounded
|
||||
:color="!!event.note ? 'positive' : 'dark'"
|
||||
icon="fas fa-pencil-alt"
|
||||
@click="shownote = true; eventsel = event"
|
||||
>
|
||||
</q-btn>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</q-markup-table>
|
||||
<q-dialog v-model="shownote">
|
||||
<q-card v-if="eventsel" :style="`min-width: ` + tools.myheight_dialog() + `px;`">
|
||||
<q-toolbar class="bg-primary text-white">
|
||||
<q-toolbar-title>
|
||||
Note: {{ eventsel.title }}
|
||||
</q-toolbar-title>
|
||||
<q-btn flat round color="white" icon="close" v-close-popup></q-btn>
|
||||
</q-toolbar>
|
||||
<q-card-section class="q-pa-xs inset-shadow">
|
||||
<q-input
|
||||
v-model="eventsel.note" style="min-height: 50px; " label="Note:"
|
||||
filled dense
|
||||
autogrow
|
||||
type="textarea" debounce="500"
|
||||
input-class="myinput-area"
|
||||
@input="change_rec(eventsel)">
|
||||
</q-input>
|
||||
|
||||
</q-card-section>
|
||||
</q-card>
|
||||
</q-dialog>
|
||||
<q-dialog v-model="showpeople">
|
||||
<q-card v-if="eventsel" :style="`min-width: ` + tools.myheight_dialog() + `px;`">
|
||||
<q-toolbar class="bg-primary text-white">
|
||||
<q-toolbar-title>
|
||||
{{ eventsel.title }}
|
||||
</q-toolbar-title>
|
||||
<q-btn flat round color="white" icon="close" v-close-popup></q-btn>
|
||||
</q-toolbar>
|
||||
<q-card-section class="q-pa-xs inset-shadow">
|
||||
<q-markup-table wrap-cells bordered separator="horizontal" class="listaev__table">
|
||||
<thead>
|
||||
<th>Data</th>
|
||||
<th>Messaggio</th>
|
||||
<th>Partec</th>
|
||||
<th>Azione</th>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<tr
|
||||
v-for="(eventbook, index) in calendarStore.getEventsBookedByIdEvent(eventsel._id, showall)"
|
||||
:key="index"
|
||||
class="listaev listaev__table">
|
||||
<td class="text-center">
|
||||
<div>{{ func_tools.getDateTimeShortStr(eventbook.datebooked) }}
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<strong>{{ userStore.getNameSurnameByUserId(eventbook.userId) }}</strong> <span
|
||||
v-if="eventbook.msgbooking"> {{ $t('sendmsg.write') }}: </span><br>
|
||||
{{ eventbook.msgbooking }}
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<span v-if="eventbook.numpeople > 0">Partecipanti: {{ eventbook.numpeople }}<br></span>
|
||||
<span v-if="eventbook.numpeopleLunch > 0">Pranzo: {{ eventbook.numpeopleLunch }}<br></span>
|
||||
<span v-if="eventbook.numpeopleDinner > 0">Cena: {{ eventbook.numpeopleDinner }}<br></span>
|
||||
<span v-if="eventbook.numpeopleDinnerShared > 0">Cena Condivisa: {{ eventbook.numpeopleDinnerShared }}<br></span>
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<q-btn
|
||||
flat round color="red" icon="fas fa-trash-alt" size="sm"
|
||||
@click="tools.CancelBookingEvent(mythis, eventsel, eventbook._id, false)"></q-btn>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</q-markup-table>
|
||||
</q-card-section>
|
||||
</q-card>
|
||||
</q-dialog>
|
||||
<div v-if="numrec === 0">
|
||||
<div v-if="!showPrev" class="text-blue text-center q-pa-xs shadow">
|
||||
Attualmente non hai nessuna Prenotazione futura.
|
||||
</div>
|
||||
<div v-else class="text-blue text-center q-pa-xs shadow">
|
||||
Non hai nessuna Prenotazione passata.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<br>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./eventlist.ts">
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import './eventlist.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/gallery/gallery.scss
Executable file
0
src/rootgen/admin/gallery/gallery.scss
Executable file
19
src/rootgen/admin/gallery/gallery.ts
Executable file
19
src/rootgen/admin/gallery/gallery.ts
Executable file
@@ -0,0 +1,19 @@
|
||||
import { defineComponent, ref, computed } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { colgallery } from '@src/store/Modules/fieldsTable'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'Gallery',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
return {
|
||||
colgallery
|
||||
}
|
||||
}
|
||||
})
|
||||
23
src/rootgen/admin/gallery/gallery.vue
Executable file
23
src/rootgen/admin/gallery/gallery.vue
Executable file
@@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<CMyPage title="Gallerie" imgbackground="../../public/images/calendario_eventi.jpg" sizes="max-height: 120px">
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm">
|
||||
<CTitleBanner title="Gallerie"></CTitleBanner>
|
||||
<CGridTableRec
|
||||
prop_mytable="gallery"
|
||||
prop_mytitle=""
|
||||
:prop_mycolumns="colgallery"
|
||||
prop_colkey="_id"
|
||||
nodataLabel="Nessuna Galleria"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./gallery.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'gallery.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/groups/groups.scss
Executable file
0
src/rootgen/admin/groups/groups.scss
Executable file
19
src/rootgen/admin/groups/groups.ts
Executable file
19
src/rootgen/admin/groups/groups.ts
Executable file
@@ -0,0 +1,19 @@
|
||||
import { defineComponent, ref, computed } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { colTablegroups } from '@src/store/Modules/fieldsTable'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'GroupPage',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
return {
|
||||
colTablegroups
|
||||
}
|
||||
}
|
||||
})
|
||||
31
src/rootgen/admin/groups/groups.vue
Executable file
31
src/rootgen/admin/groups/groups.vue
Executable file
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<CMyPage title="Gruppi" imgbackground="../../public/images/produttori.jpg" sizes="max-height: 120px">
|
||||
<span>{{
|
||||
setmeta({
|
||||
title: 'Gruppi',
|
||||
description: '',
|
||||
keywords: '',
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Gruppi"></CTitleBanner>
|
||||
<CGridTableRec
|
||||
prop_mytable="groups"
|
||||
prop_mytitle="Gruppi"
|
||||
:prop_mycolumns="colTablegroups"
|
||||
prop_colkey="descr"
|
||||
nodataLabel="Nessun Gruppo"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./groups.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'groups.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/msg_template/msg_template.scss
Executable file
0
src/rootgen/admin/msg_template/msg_template.scss
Executable file
35
src/rootgen/admin/msg_template/msg_template.ts
Executable file
35
src/rootgen/admin/msg_template/msg_template.ts
Executable file
@@ -0,0 +1,35 @@
|
||||
import { defineComponent, ref, onMounted } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { colmsg_templates } from '@src/store/Modules/fieldsTable'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'Msgtemplate',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
const globalStore = useGlobalStore()
|
||||
|
||||
const dataMsg_Templates = ref([])
|
||||
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
async function mounted() {
|
||||
dataMsg_Templates.value = await globalStore.GetMsgTemplates()
|
||||
}
|
||||
|
||||
onMounted(mounted)
|
||||
|
||||
return {
|
||||
colmsg_templates,
|
||||
dataMsg_Templates,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
})
|
||||
33
src/rootgen/admin/msg_template/msg_template.vue
Executable file
33
src/rootgen/admin/msg_template/msg_template.vue
Executable file
@@ -0,0 +1,33 @@
|
||||
<template>
|
||||
<CMyPage
|
||||
title="Template Messaggi" imgbackground="../../public/images/calendario_eventi.jpg"
|
||||
sizes="max-height: 100px">
|
||||
<span>{{
|
||||
setmeta({
|
||||
title: 'Template Messaggi',
|
||||
description: '',
|
||||
keywords: '',
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Template Messaggi"></CTitleBanner>
|
||||
<CGridTableRec
|
||||
prop_mytable="msg_templates"
|
||||
prop_mytitle="Lista Messaggi"
|
||||
:prop_mycolumns="colmsg_templates"
|
||||
prop_colkey="title"
|
||||
nodataLabel="Nessun Messaggio"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./msg_template.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'msg_template.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/orders/orders.scss
Executable file
0
src/rootgen/admin/orders/orders.scss
Executable file
24
src/rootgen/admin/orders/orders.ts
Executable file
24
src/rootgen/admin/orders/orders.ts
Executable file
@@ -0,0 +1,24 @@
|
||||
import { defineComponent, ref, onMounted } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { getcolorderscart } from '@src/store/Modules/fieldsTable'
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'StorehousePage',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
return {
|
||||
getcolorderscart,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
})
|
||||
28
src/rootgen/admin/orders/orders.vue
Executable file
28
src/rootgen/admin/orders/orders.vue
Executable file
@@ -0,0 +1,28 @@
|
||||
<template>
|
||||
<CMyPage title="Ordini Ufficio" imgbackground="../../public/images/produttori.jpg" sizes="max-height: 120px">
|
||||
<span>{{ setmeta({
|
||||
title: 'Ordini Ufficio',
|
||||
description: "",
|
||||
keywords: '' } ) }}
|
||||
</span>
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Ordini Ufficio"></CTitleBanner>
|
||||
<!--<CGridTableRec prop_mytable="orderscart"
|
||||
prop_mytitle="Lista Ordini"
|
||||
:prop_mycolumns="getcolorderscart"
|
||||
prop_colkey="name"
|
||||
nodataLabel="Nessun Ordine"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
-->
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./orders.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'orders.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/pages/pages.scss
Executable file
0
src/rootgen/admin/pages/pages.scss
Executable file
24
src/rootgen/admin/pages/pages.ts
Executable file
24
src/rootgen/admin/pages/pages.ts
Executable file
@@ -0,0 +1,24 @@
|
||||
import { defineComponent, ref, onMounted } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { colmypage } from '@src/store/Modules/fieldsTable'
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'Pages',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
return {
|
||||
colmypage,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
})
|
||||
31
src/rootgen/admin/pages/pages.vue
Executable file
31
src/rootgen/admin/pages/pages.vue
Executable file
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<CMyPage title="Pagine" imgbackground="../../public/images/calendario_eventi.jpg" sizes="max-height: 120px">
|
||||
<span>{{
|
||||
setmeta({
|
||||
title: 'Pagine',
|
||||
description: '',
|
||||
keywords: '',
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Pagine"></CTitleBanner>
|
||||
<CGridTableRec
|
||||
prop_mytable="mypage"
|
||||
prop_mytitle="Lista Pagine"
|
||||
:prop_mycolumns="colmypage"
|
||||
prop_colkey="title"
|
||||
nodataLabel="Nessuna Pagina"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./pages.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'pages.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/producer/producer.scss
Executable file
0
src/rootgen/admin/producer/producer.scss
Executable file
24
src/rootgen/admin/producer/producer.ts
Executable file
24
src/rootgen/admin/producer/producer.ts
Executable file
@@ -0,0 +1,24 @@
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { colTableProducer } from '@src/store/Modules/fieldsTable'
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ProducerPage',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
return {
|
||||
colTableProducer,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
})
|
||||
31
src/rootgen/admin/producer/producer.vue
Executable file
31
src/rootgen/admin/producer/producer.vue
Executable file
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<CMyPage title="Produttori" imgbackground="../../public/images/produttori.jpg" sizes="max-height: 120px">
|
||||
<span>{{
|
||||
setmeta({
|
||||
title: 'Produttori',
|
||||
description: '',
|
||||
keywords: '',
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Produttori"></CTitleBanner>
|
||||
<CGridTableRec
|
||||
prop_mytable="producers"
|
||||
prop_mytitle="Lista Produttori"
|
||||
:prop_mycolumns="colTableProducer"
|
||||
prop_colkey="name"
|
||||
nodataLabel="Nessun Produttore"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./producer.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'producer.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/products/products.scss
Executable file
0
src/rootgen/admin/products/products.scss
Executable file
24
src/rootgen/admin/products/products.ts
Executable file
24
src/rootgen/admin/products/products.ts
Executable file
@@ -0,0 +1,24 @@
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { colTableProducts } from '@src/store/Modules/fieldsTable'
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ProductsPage',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
return {
|
||||
colTableProducts,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
})
|
||||
32
src/rootgen/admin/products/products.vue
Executable file
32
src/rootgen/admin/products/products.vue
Executable file
@@ -0,0 +1,32 @@
|
||||
<template>
|
||||
<CMyPage title="Prodotti" imgbackground="../../public/images/prodotti.jpg" sizes="max-height: 120px">
|
||||
<span>{{
|
||||
setmeta({
|
||||
title: 'Prodotti',
|
||||
description: '',
|
||||
keywords: '',
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Prodotti"></CTitleBanner>
|
||||
<CGridTableRec
|
||||
prop_mytable="products"
|
||||
prop_mytitle="Lista Prodotti"
|
||||
:prop_mycolumns="colTableProducts"
|
||||
prop_colkey="name"
|
||||
nodataLabel="Nessun Prodotto"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./products.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'products.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/sendpushnotif/sendpushnotif.scss
Executable file
0
src/rootgen/admin/sendpushnotif/sendpushnotif.scss
Executable file
125
src/rootgen/admin/sendpushnotif/sendpushnotif.ts
Executable file
125
src/rootgen/admin/sendpushnotif/sendpushnotif.ts
Executable file
@@ -0,0 +1,125 @@
|
||||
import { CMyPage } from '../../../components/CMyPage/index'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
|
||||
import { defineComponent, ref, onMounted } from 'vue'
|
||||
import { useI18n } from '@src/boot/i18n'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { useQuasar } from 'quasar'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'Sendpushnotif',
|
||||
components: { CMyPage },
|
||||
setup(props, { emit }) {
|
||||
const $q = useQuasar()
|
||||
const { t } = useI18n()
|
||||
const userStore = useUserStore()
|
||||
const globalStore = useGlobalStore()
|
||||
|
||||
const incaricamento = ref(false)
|
||||
|
||||
const title= ref('')
|
||||
const content= ref('')
|
||||
const openUrl= ref('')
|
||||
const openUrl2= ref('')
|
||||
const opz1= ref('')
|
||||
const opz2= ref('')
|
||||
const tag= ref('')
|
||||
const actiontype = ref(shared_consts.TypeMsg_Actions.NORMAL)
|
||||
const destination = ref(shared_consts.TypeMsg.SEND_TO_ALL)
|
||||
|
||||
function created() {
|
||||
title.value = t('ws.sitename')
|
||||
openUrl.value = '/'
|
||||
openUrl2.value = ''
|
||||
tag.value = 'msg'
|
||||
}
|
||||
|
||||
function SendMsg(params: any) {
|
||||
$q.dialog({
|
||||
message: t('dialog.continue') + ' ' + params.content + ' ?',
|
||||
cancel: {
|
||||
label: t('dialog.cancel')
|
||||
},
|
||||
ok: {
|
||||
label: t('dialog.yes'),
|
||||
push: true
|
||||
},
|
||||
title: params.title
|
||||
}).onOk(async () => {
|
||||
|
||||
incaricamento.value = true
|
||||
$q.loading.show({ message: t('otherpages.update') })
|
||||
|
||||
const ris = await globalStore.sendPushNotif({ params })
|
||||
|
||||
if (!!ris.msg)
|
||||
tools.showPositiveNotif($q, ris.msg)
|
||||
|
||||
$q.loading.hide()
|
||||
|
||||
incaricamento.value = false
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
function SendMsgToParam(typemsg: any) {
|
||||
/*const param: any = {
|
||||
typemsg,
|
||||
title: title,
|
||||
content: content,
|
||||
openUrl: openUrl,
|
||||
openUrl2: openUrl2,
|
||||
tag: tag,
|
||||
actions: []
|
||||
}
|
||||
*/
|
||||
|
||||
let param: any = []
|
||||
|
||||
if (actiontype.value === shared_consts.TypeMsg_Actions.YESNO) {
|
||||
param.value = [
|
||||
{ action: 'confirm', title: 'Si', icon: '/statics/icons/opz1-icon-96x96.png' },
|
||||
{ action: 'cancel', title: 'No', icon: '/statics/icons/opz2-icon-96x96.png' }
|
||||
]
|
||||
} else if (actiontype.value === shared_consts.TypeMsg_Actions.OPZ1_2) {
|
||||
param.value = [
|
||||
{ action: 'opz1', title: opz1, icon: '/statics/icons/opz1-icon-96x96.png' },
|
||||
{ action: 'opz2', title: opz2, icon: '/statics/icons/opz2-icon-96x96.png' }
|
||||
]
|
||||
}
|
||||
|
||||
// action: A DOMString identifying a user action to be displayed on the notification.
|
||||
// title: A DOMString containing action text to be shown to the user.
|
||||
// icon: A USVString containing the URL of an icon to display with the action.
|
||||
|
||||
return SendMsg(param)
|
||||
}
|
||||
|
||||
function SendMsgToAll() {
|
||||
|
||||
SendMsgToParam(destination)
|
||||
}
|
||||
|
||||
onMounted(created)
|
||||
|
||||
return {
|
||||
title,
|
||||
tag,
|
||||
openUrl,
|
||||
openUrl2,
|
||||
actiontype,
|
||||
destination,
|
||||
SendMsgToAll,
|
||||
opz1,
|
||||
opz2,
|
||||
content,
|
||||
shared_consts,
|
||||
incaricamento,
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
52
src/rootgen/admin/sendpushnotif/sendpushnotif.vue
Executable file
52
src/rootgen/admin/sendpushnotif/sendpushnotif.vue
Executable file
@@ -0,0 +1,52 @@
|
||||
<template>
|
||||
<CMyPage img="" title="Invio Push Notifiche" keywords="" description="">
|
||||
<div class="q-ma-sm">
|
||||
<div class="row center_img clBorderSteps" style="max-width: 600px;">
|
||||
<div class="row">
|
||||
<q-input v-model="title" autofocus label="Titolo" style="width: 300px;"></q-input>
|
||||
</div>
|
||||
<div class="row">
|
||||
<q-input
|
||||
v-model="content" type="textarea" autofocus label="Contenuto"
|
||||
input-class="myinput-area"
|
||||
style="height: 100px; width: 500px;"></q-input>
|
||||
</div>
|
||||
<div class="row">
|
||||
<q-input v-model="openUrl" autofocus label="openUrl" style="width: 200px;"></q-input>
|
||||
<q-input v-model="openUrl2" autofocus label="openUrl2" style="width: 200px;"></q-input>
|
||||
<q-input v-model="tag" autofocus label="tag" style="width: 100px;"></q-input>
|
||||
</div>
|
||||
<q-select
|
||||
rounded outlined v-model="actiontype"
|
||||
:options="shared_consts.selectActions"
|
||||
label="Tipo Msg" emit-value map-options>
|
||||
</q-select>
|
||||
<q-select
|
||||
rounded outlined v-model="destination"
|
||||
:options="shared_consts.selectDestination"
|
||||
label="Destinazione" emit-value map-options>
|
||||
</q-select>
|
||||
<div v-if="actiontype === shared_consts.TypeMsg_Actions.OPZ1_2" class="row">
|
||||
<q-input v-model="opz1" autofocus label="Opzione 1" style="width: 100px;"></q-input>
|
||||
<q-input v-model="opz2" autofocus label="Opzione 2" style="width: 100px;"></q-input>
|
||||
</div>
|
||||
<br/>
|
||||
<div class="">
|
||||
<q-btn label="Invia Msg" color="primary" @click="SendMsgToAll()"></q-btn>
|
||||
</div>
|
||||
</div>
|
||||
<q-inner-loading id="spinner" :showing="incaricamento">
|
||||
<q-spinner-tail
|
||||
color="primary"
|
||||
size="4em">
|
||||
</q-spinner-tail>
|
||||
</q-inner-loading>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./sendpushnotif.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './sendpushnotif.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/sharewithus/sharewithus.scss
Executable file
0
src/rootgen/admin/sharewithus/sharewithus.scss
Executable file
24
src/rootgen/admin/sharewithus/sharewithus.ts
Executable file
24
src/rootgen/admin/sharewithus/sharewithus.ts
Executable file
@@ -0,0 +1,24 @@
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { colTableShareWithUs } from '@src/store/Modules/fieldsTable'
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ShareWithUsPage',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
return {
|
||||
colTableShareWithUs,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
})
|
||||
31
src/rootgen/admin/sharewithus/sharewithus.vue
Executable file
31
src/rootgen/admin/sharewithus/sharewithus.vue
Executable file
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<CMyPage title="Condividi" imgbackground="../../public/images/sharewithus.jpg" sizes="max-height: 120px">
|
||||
<span>{{
|
||||
setmeta({
|
||||
title: 'Condividi',
|
||||
description: '',
|
||||
keywords: '',
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Condividi Con Noi"></CTitleBanner>
|
||||
<CGridTableRec
|
||||
prop_mytable="sharewithus"
|
||||
prop_mytitle="Lista Condivisioni"
|
||||
:prop_mycolumns="colTableShareWithUs"
|
||||
prop_colkey="description"
|
||||
nodataLabel="Nessuna Condivisione"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./sharewithus.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'sharewithus.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/sites/sites.scss
Executable file
0
src/rootgen/admin/sites/sites.scss
Executable file
24
src/rootgen/admin/sites/sites.ts
Executable file
24
src/rootgen/admin/sites/sites.ts
Executable file
@@ -0,0 +1,24 @@
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { colTableSites } from '@src/store/Modules/fieldsTable'
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'SitesPage',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
return {
|
||||
colTableSites,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
})
|
||||
32
src/rootgen/admin/sites/sites.vue
Executable file
32
src/rootgen/admin/sites/sites.vue
Executable file
@@ -0,0 +1,32 @@
|
||||
<template>
|
||||
<CMyPage title="Siti" imgbackground="images/calendario_eventi.jpg" sizes="max-height: 120px">
|
||||
<span>{{
|
||||
setmeta({
|
||||
title: 'Siti',
|
||||
description: '',
|
||||
keywords: '',
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Siti Web"></CTitleBanner>
|
||||
<CGridTableRec
|
||||
prop_mytable="sites"
|
||||
prop_mytitle="Lista Siti"
|
||||
:prop_mycolumns="colTableSites"
|
||||
prop_colkey="name"
|
||||
nodataLabel="Nessun Sito"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./sites.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'sites.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/storehouses/storehouses.scss
Executable file
0
src/rootgen/admin/storehouses/storehouses.scss
Executable file
24
src/rootgen/admin/storehouses/storehouses.ts
Executable file
24
src/rootgen/admin/storehouses/storehouses.ts
Executable file
@@ -0,0 +1,24 @@
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { colTableStorehouse } from '@src/store/Modules/fieldsTable'
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'StorehousePage',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
return {
|
||||
colTableStorehouse,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
})
|
||||
31
src/rootgen/admin/storehouses/storehouses.vue
Executable file
31
src/rootgen/admin/storehouses/storehouses.vue
Executable file
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<CMyPage title="Magazzini" imgbackground="../../public/images/produttori.jpg" sizes="max-height: 120px">
|
||||
<span>{{
|
||||
setmeta({
|
||||
title: 'Magazzini',
|
||||
description: '',
|
||||
keywords: '',
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
|
||||
<div class="q-ma-sm q-gutter-sm q-pa-xs">
|
||||
<CTitleBanner title="Magazzini"></CTitleBanner>
|
||||
<CGridTableRec
|
||||
prop_mytable="storehouses"
|
||||
prop_mytitle="Lista Magazzini"
|
||||
:prop_mycolumns="colTableStorehouse"
|
||||
prop_colkey="name"
|
||||
nodataLabel="Nessun Magazzino"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
</div>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./storehouses.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'storehouses.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/tablesList/tablesList.scss
Executable file
0
src/rootgen/admin/tablesList/tablesList.scss
Executable file
28
src/rootgen/admin/tablesList/tablesList.ts
Executable file
28
src/rootgen/admin/tablesList/tablesList.ts
Executable file
@@ -0,0 +1,28 @@
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { func } from '@src/store/Modules/fieldsTable'
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'TablesList',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
|
||||
const { setmeta } = MixinMetaTags()
|
||||
|
||||
function gettablesList() {
|
||||
return func.gettablesList()
|
||||
}
|
||||
|
||||
return {
|
||||
gettablesList,
|
||||
setmeta,
|
||||
}
|
||||
}
|
||||
})
|
||||
18
src/rootgen/admin/tablesList/tablesList.vue
Executable file
18
src/rootgen/admin/tablesList/tablesList.vue
Executable file
@@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<CMyPage img="" :title="$t('otherpages.admin.userlist')" keywords="" description="">
|
||||
<CGridTableRec
|
||||
:prop_mytitle="$t('otherpages.admin.tableslist')"
|
||||
:nodataLabel="$t('grid.nodata')"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato"
|
||||
:tablesList="gettablesList()"
|
||||
>
|
||||
|
||||
</CGridTableRec>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./tablesList.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './tablesList.scss';
|
||||
</style>
|
||||
0
src/rootgen/admin/uploader/uploader.scss
Executable file
0
src/rootgen/admin/uploader/uploader.scss
Executable file
22
src/rootgen/admin/uploader/uploader.ts
Executable file
22
src/rootgen/admin/uploader/uploader.ts
Executable file
@@ -0,0 +1,22 @@
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
import { CImgText } from '../../../components/CImgText/index'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { colTableStorehouse } from '@src/store/Modules/fieldsTable'
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags'
|
||||
import { tools } from '@store/Modules/tools'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'Uploader',
|
||||
components: { CImgText, CCard, CMyPage, CTitleBanner, CGridTableRec },
|
||||
setup() {
|
||||
|
||||
return {
|
||||
tools
|
||||
}
|
||||
}
|
||||
})
|
||||
40
src/rootgen/admin/uploader/uploader.vue
Executable file
40
src/rootgen/admin/uploader/uploader.vue
Executable file
@@ -0,0 +1,40 @@
|
||||
<template>
|
||||
<div class="q-pa-md">
|
||||
<div class="q-gutter-sm row items-start">
|
||||
<q-uploader
|
||||
label="Galleria Home"
|
||||
accept=".jpg, image/*"
|
||||
:url="tools.geturlupload()+`/gallery_home`"
|
||||
:headers="tools.getheaders()"
|
||||
:max-file-size="2000000"
|
||||
multiple
|
||||
style="max-width: 300px"
|
||||
></q-uploader>
|
||||
|
||||
<q-uploader
|
||||
label="Immagini"
|
||||
accept=".jpg, image/*"
|
||||
:url="tools.geturlupload()+`/img`"
|
||||
:headers="tools.getheaders()"
|
||||
:max-file-size="1000000"
|
||||
multiple
|
||||
style="max-width: 300px"
|
||||
></q-uploader>
|
||||
|
||||
<q-uploader
|
||||
label="Invia PDF"
|
||||
accept=".pdf"
|
||||
:url="tools.geturlupload()+`/pdf`"
|
||||
:headers="tools.getheaders()"
|
||||
multiple
|
||||
style="max-width: 300px"
|
||||
></q-uploader>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" src="./uploader.ts">
|
||||
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import 'uploader';
|
||||
</style>
|
||||
1
src/rootgen/admin/usersList/index.ts
Executable file
1
src/rootgen/admin/usersList/index.ts
Executable file
@@ -0,0 +1 @@
|
||||
export {default as usersList} from './usersList.vue'
|
||||
0
src/rootgen/admin/usersList/usersList.scss
Executable file
0
src/rootgen/admin/usersList/usersList.scss
Executable file
94
src/rootgen/admin/usersList/usersList.ts
Executable file
94
src/rootgen/admin/usersList/usersList.ts
Executable file
@@ -0,0 +1,94 @@
|
||||
import { defineComponent, onMounted, ref } from 'vue'
|
||||
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
import { tools } from '../../../store/Modules/tools'
|
||||
import { static_data } from '../../../db/static_data'
|
||||
|
||||
import { fieldsTable } from '@src/store/Modules/fieldsTable'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'UsersList',
|
||||
components: { CGridTableRec, CMyPage },
|
||||
setup() {
|
||||
|
||||
const arrfilterand: any = ref([])
|
||||
|
||||
function mounted() {
|
||||
if (tools.appid() === tools.IDAPP_AYNI) {
|
||||
arrfilterand.value = [
|
||||
{
|
||||
label: 'Attivi',
|
||||
value: shared_consts.FILTER_ATTIVI
|
||||
},
|
||||
{
|
||||
label: 'Nascosti',
|
||||
value: shared_consts.FILTER_NASCOSTI
|
||||
},
|
||||
{
|
||||
label: 'Navi Non Presenti!',
|
||||
value: shared_consts.FILTER_NAVI_NON_PRESENTI
|
||||
},
|
||||
{
|
||||
label: 'Non hanno visto Zoom',
|
||||
value: shared_consts.FILTER_USER_NO_ZOOM
|
||||
},
|
||||
{
|
||||
label: 'hanno detto di aver visto lo Zoom',
|
||||
value: shared_consts.FILTER_ASK_ZOOM_VISTO
|
||||
},
|
||||
{
|
||||
label: 'Non hanno l\'Invitante',
|
||||
value: shared_consts.FILTER_USER_NO_INVITANTE
|
||||
},
|
||||
{
|
||||
label: 'No Telegram ID',
|
||||
value: shared_consts.FILTER_USER_NO_TELEGRAM_ID
|
||||
},
|
||||
{
|
||||
label: 'Verifica Telegram interrotta',
|
||||
value: shared_consts.FILTER_USER_CODICE_AUTH_TELEGRAM
|
||||
},
|
||||
{
|
||||
label: 'Email non Verificata',
|
||||
value: shared_consts.FILTER_USER_NO_EMAIL_VERIFICATA
|
||||
},
|
||||
{
|
||||
label: 'Non hanno compilato il sogno',
|
||||
value: shared_consts.FILTER_USER_NO_DREAM
|
||||
},
|
||||
{
|
||||
label: 'Telegram BOT Rimosso',
|
||||
value: shared_consts.FILTER_USER_TELEGRAM_BLOCKED
|
||||
}
|
||||
]
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
function db_fieldsTable() {
|
||||
return fieldsTable
|
||||
}
|
||||
|
||||
function userlist() {
|
||||
|
||||
if (static_data.functionality.ENABLE_REG_AYNI) {
|
||||
return db_fieldsTable().colTableUsers
|
||||
} else if (static_data.functionality.ENABLE_REG_CNM) {
|
||||
return db_fieldsTable().colTableUsersCNM
|
||||
} else {
|
||||
return db_fieldsTable().colTableUsersBase
|
||||
}
|
||||
}
|
||||
|
||||
onMounted(mounted)
|
||||
|
||||
return {
|
||||
arrfilterand,
|
||||
userlist,
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
22
src/rootgen/admin/usersList/usersList.vue
Executable file
22
src/rootgen/admin/usersList/usersList.vue
Executable file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<CMyPage img="" :title="$t('otherpages.admin.userlist')" keywords="" description="Lista Utenti">
|
||||
<CGridTableRec
|
||||
prop_mytable="users"
|
||||
prop_mytitle="Lista Utenti"
|
||||
:prop_mycolumns="userlist()"
|
||||
prop_colkey="_id"
|
||||
nodataLabel="Nessun Utente"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato"
|
||||
:arrfilters="arrfilterand">
|
||||
|
||||
</CGridTableRec>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./usersList.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './usersList.scss';
|
||||
</style>
|
||||
|
||||
|
||||
1
src/rootgen/admin/zoomList/index.ts
Executable file
1
src/rootgen/admin/zoomList/index.ts
Executable file
@@ -0,0 +1 @@
|
||||
export {default as zoomList} from './zoomList.vue'
|
||||
0
src/rootgen/admin/zoomList/zoomList.scss
Executable file
0
src/rootgen/admin/zoomList/zoomList.scss
Executable file
20
src/rootgen/admin/zoomList/zoomList.ts
Executable file
20
src/rootgen/admin/zoomList/zoomList.ts
Executable file
@@ -0,0 +1,20 @@
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
|
||||
import { fieldsTable } from '@src/store/Modules/fieldsTable'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ZoomList',
|
||||
components: { CMyPage,CGridTableRec },
|
||||
setup() {
|
||||
function db_fieldsTable() {
|
||||
return fieldsTable
|
||||
}
|
||||
|
||||
return {
|
||||
db_fieldsTable,
|
||||
}
|
||||
}
|
||||
})
|
||||
21
src/rootgen/admin/zoomList/zoomList.vue
Executable file
21
src/rootgen/admin/zoomList/zoomList.vue
Executable file
@@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<CMyPage img="" :title="$t('otherpages.admin.zoomlist')" keywords="" :description="$t('otherpages.admin.zoomlist')">
|
||||
<CGridTableRec
|
||||
prop_mytable="calzoom"
|
||||
:prop_mytitle="$t('otherpages.admin.zoomlist')"
|
||||
:prop_mycolumns="db_fieldsTable().colTableCalZoom"
|
||||
prop_colkey="_id"
|
||||
nodataLabel="Nessuno Zoom"
|
||||
noresultLabel="Il filtro selezionato non ha trovato nessun risultato">
|
||||
|
||||
</CGridTableRec>
|
||||
</CMyPage>
|
||||
</template>
|
||||
<script lang="ts" src="./zoomList.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './zoomList.scss';
|
||||
</style>
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ export const cfgrouter = {
|
||||
tools.addRoute(arrroutes, route)
|
||||
}
|
||||
|
||||
console.log('arrroutes', arrroutes)
|
||||
// console.log('arrroutes', arrroutes)
|
||||
|
||||
return arrroutes
|
||||
},
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import msg_it from '../../../freeplanet/src/statics/lang/it'
|
||||
import msg_es from '../../../freeplanet/src/statics/lang/es'
|
||||
import msg_si from '../../../freeplanet/src/statics/lang/si'
|
||||
import msg_enUs from '../../../freeplanet/src/statics/lang/enUs'
|
||||
import msg_fr from '../../../freeplanet/src/statics/lang/fr'
|
||||
import msg_de from '../../../freeplanet/src/statics/lang/de'
|
||||
import msg_pt from '../../../freeplanet/src/statics/lang/pt'
|
||||
import msg_it from '../../../newfreeplanet/src/statics/lang/it'
|
||||
import msg_es from '../../../newfreeplanet/src/statics/lang/es'
|
||||
import msg_si from '../../../newfreeplanet/src/statics/lang/si'
|
||||
import msg_enUs from '../../../newfreeplanet/src/statics/lang/enUs'
|
||||
import msg_fr from '../../../newfreeplanet/src/statics/lang/fr'
|
||||
import msg_de from '../../../newfreeplanet/src/statics/lang/de'
|
||||
import msg_pt from '../../../newfreeplanet/src/statics/lang/pt'
|
||||
|
||||
import msg_website_de from '../db/lang/ws_de';
|
||||
import msg_website_enUs from '../db/lang/ws_enUs';
|
||||
|
||||
@@ -1,427 +0,0 @@
|
||||
const msg_de = {
|
||||
de: {
|
||||
words: {
|
||||
da: 'from',
|
||||
a: 'to',
|
||||
},
|
||||
home: {
|
||||
guida: 'Guide',
|
||||
guida_passopasso: 'Step By Step Guide',
|
||||
},
|
||||
grid: {
|
||||
editvalues: 'Edit Values',
|
||||
addrecord: 'Add Row',
|
||||
showprevedit: 'Show Past Events',
|
||||
nodata: 'No data',
|
||||
columns: 'Columns',
|
||||
tableslist: 'Tables',
|
||||
},
|
||||
otherpages: {
|
||||
sito_offline: 'Sito in Aggiornamento',
|
||||
modifprof: 'Modify Profile',
|
||||
biografia: 'Biografia',
|
||||
admin: {
|
||||
menu: 'Administration',
|
||||
eventlist: 'Your Booking',
|
||||
usereventlist: 'Users Booking',
|
||||
userlist: 'Users List',
|
||||
tableslist: 'List of tables',
|
||||
newsletter: 'Newsletter',
|
||||
pages: 'Pages',
|
||||
media: 'Medias',
|
||||
},
|
||||
manage: {
|
||||
menu: 'Manage',
|
||||
manager: 'Manager',
|
||||
nessuno: 'None',
|
||||
},
|
||||
messages: {
|
||||
menu: 'Your Messages',
|
||||
},
|
||||
},
|
||||
sendmsg: {
|
||||
write: 'write',
|
||||
},
|
||||
dialog: {
|
||||
continue: 'Continue',
|
||||
close: 'Close',
|
||||
copyclipboard: 'Copied to clipboard',
|
||||
ok: 'Ok',
|
||||
yes: 'Yes',
|
||||
no: 'No',
|
||||
delete: 'Delete',
|
||||
update: 'Update',
|
||||
add: 'Add',
|
||||
cancel: 'Cancel',
|
||||
today: 'Today',
|
||||
book: 'Book',
|
||||
avanti: 'Avanti',
|
||||
indietro: 'Indietro',
|
||||
finish: 'Fine',
|
||||
sendmsg: 'Send Message',
|
||||
sendonlymsg: 'Send only a Msg',
|
||||
msg: {
|
||||
titledeleteTask: 'Delete Task',
|
||||
deleteTask: 'Delete Task {mytodo}?',
|
||||
},
|
||||
},
|
||||
comp: {
|
||||
Conta: 'Count',
|
||||
},
|
||||
db: {
|
||||
recupdated: 'Record Updated',
|
||||
recfailed: 'Error during update Record',
|
||||
reccanceled: 'Canceled Update. Restore previous value',
|
||||
deleterecord: 'Delete Record',
|
||||
deletetherecord: 'Delete the Record?',
|
||||
deletedrecord: 'Record Deleted',
|
||||
recdelfailed: 'Error during deletion of the Record',
|
||||
duplicatedrecord: 'Duplicate Record',
|
||||
recdupfailed: 'Error during record duplication',
|
||||
},
|
||||
components: {
|
||||
authentication: {
|
||||
telegram: {
|
||||
open: 'Click here to open the BOT Telegram and follow the instructions',
|
||||
openbot: 'Open BOT Telegram',
|
||||
},
|
||||
login: {
|
||||
facebook: 'Facebook',
|
||||
},
|
||||
email_verification: {
|
||||
title: 'Begin your registration',
|
||||
introduce_email: 'Enter your email',
|
||||
email: 'Email',
|
||||
invalid_email: 'Your email is invalid',
|
||||
verify_email: 'Verify your email',
|
||||
go_login: 'Back to Login',
|
||||
incorrect_input: 'Incorrect input.',
|
||||
link_sent: 'Now read your email and confirm registration',
|
||||
se_non_ricevo: 'If you do not receive the email, try checking in the spam, or contact us',
|
||||
title_unsubscribe: 'Disiscrizione alla newsletter',
|
||||
title_unsubscribe_done: 'Disiscrizione completata correttamente',
|
||||
},
|
||||
},
|
||||
},
|
||||
fetch: {
|
||||
errore_generico: 'Generic Error',
|
||||
errore_server: 'Unable to access to the Server. Retry. Thank you.',
|
||||
error_doppiologin: 'Signup again. Another access was made with another device.',
|
||||
},
|
||||
user: {
|
||||
notregistered: 'You need first to SignUp before storing data',
|
||||
loggati: 'User not logged in',
|
||||
},
|
||||
templemail: {
|
||||
subject: 'Subject Email',
|
||||
testoheadermail: 'Header Email',
|
||||
content: 'Content',
|
||||
img: 'Image 1',
|
||||
img2: 'Image 2',
|
||||
content2: 'Content 2',
|
||||
options: 'Options',
|
||||
},
|
||||
dashboard: {
|
||||
downline: 'People you\'ve invited',
|
||||
},
|
||||
reg: {
|
||||
volte: 'time',
|
||||
volta: 'times',
|
||||
verified_email: 'Email Verified',
|
||||
reg_lista_prec: 'Please enter the First Name, Last Name and mobile phone number you left in the past when you signed up for the Chat! <br>This way the system will recognize you and keep the position of the list',
|
||||
nuove_registrazioni: 'If this is a NEW registration, you must contact the person who INVITED you, who will leave you the CORRECT LINK to do the Registration under him/her',
|
||||
you: 'You',
|
||||
cancella_invitato: 'Delete Invited',
|
||||
regala_invitato: 'Give invited',
|
||||
messaggio_invito: 'Invitation Message',
|
||||
messaggio_invito_msg: 'Copia il messaggio qui sotto e condividilo a tutti coloro a cui vuoi condividere questo Movimento !',
|
||||
aportador_solidario: 'Solidarity Contributor',
|
||||
aportador_solidario_nome_completo: 'A.S. Name',
|
||||
aportador_solidario_ind_order: 'A.S.Ind',
|
||||
reflink: 'Links to share to your friends:',
|
||||
linkzoom: 'Link to enter in Zoom',
|
||||
page_title: 'Registration',
|
||||
made_gift: 'Donated',
|
||||
note: 'Note',
|
||||
incorso: 'Registration please wait...',
|
||||
richiesto: 'Field Required',
|
||||
email: 'Email',
|
||||
intcode_cell: 'International Code',
|
||||
cell: 'Mobile Telegram',
|
||||
cellreg: 'Cellulare con cui ti eri registrato',
|
||||
nationality: 'Nationality',
|
||||
email_paypal: 'Email Paypal',
|
||||
revolut: 'Revolut',
|
||||
country_pay: 'Country of Destination Payments',
|
||||
username_telegram: 'Username Telegram',
|
||||
telegram: 'Chat Telegram \'{botname}\'',
|
||||
teleg_id: 'Telegram ID',
|
||||
teleg_auth: 'Authorization Code',
|
||||
paymenttype: 'Available Payment Methods',
|
||||
selected: 'Selected',
|
||||
teleg_checkcode: 'Codice Telegram',
|
||||
my_dream: 'My Dream',
|
||||
saw_zoom_presentation: 'Ha visto Zoom',
|
||||
manage_telegram: 'Gestori Telegram',
|
||||
img: 'File Image',
|
||||
date_reg: 'Reg. Date',
|
||||
requirement: 'Requirements',
|
||||
perm: 'Permissions',
|
||||
username_login: 'Username or email',
|
||||
username: 'Username (Pseudonym)',
|
||||
username_short: 'Username',
|
||||
name: 'Name',
|
||||
surname: 'Surname',
|
||||
password: 'Password',
|
||||
repeatPassword: 'Repeat password',
|
||||
terms: 'I agree with the terms and privacy',
|
||||
onlyadult: "I confirm that I'm at least 18 years old",
|
||||
submit: 'Submit',
|
||||
title_verif_reg: 'Verify Registration',
|
||||
reg_ok: 'Successful Registration',
|
||||
verificato: 'Verified',
|
||||
non_verificato: 'Not Verified',
|
||||
forgetpassword: 'Forget Password?',
|
||||
modificapassword: 'Modify Password',
|
||||
err: {
|
||||
required: 'is required',
|
||||
email: 'must be a valid email',
|
||||
errore_generico: 'Please review fields again',
|
||||
atleast: 'must be at least',
|
||||
complexity: 'must contains at least 1 lowercase letter, 1 uppercase letter, 1 digit',
|
||||
notmore: 'must not be more than',
|
||||
char: 'characters long',
|
||||
terms: 'You need to agree with the terms & conditions.',
|
||||
email_not_exist: 'Email is not present in the archive, check if it is correct',
|
||||
duplicate_email: 'Email was already registered',
|
||||
user_already_exist: 'La registrazione con questi dati (nome, cognome e cellulare) è stata già effettuata. Per accedere al sito, cliccare sul bottone LOGIN dalla HomePage.',
|
||||
user_extralist_not_found: 'User in archive not found, insert the Name, Surname and mobile phone sent previously',
|
||||
duplicate_username: 'Username is already taken',
|
||||
aportador_not_exist: 'The username of the person who invited you is not present in the archive. Verify that it is correct.',
|
||||
sameaspassword: 'Passwords must be identical',
|
||||
},
|
||||
},
|
||||
op: {
|
||||
qualification: 'Qualification',
|
||||
usertelegram: 'Username Telegram',
|
||||
disciplines: 'Disciplines',
|
||||
certifications: 'Certifications',
|
||||
intro: 'Introduction',
|
||||
info: 'Biography',
|
||||
webpage: 'Web Page',
|
||||
days_working: 'Working Days',
|
||||
facebook: 'Facebook Page',
|
||||
},
|
||||
login: {
|
||||
page_title: 'Login',
|
||||
incorso: 'Login...',
|
||||
enter: 'Login',
|
||||
esci: 'Logout',
|
||||
errato: 'Username or password wrong. Please retry again',
|
||||
completato: 'Login successfully!',
|
||||
needlogin: 'You must login before continuing',
|
||||
},
|
||||
reset: {
|
||||
title_reset_pwd: 'Reset your Password',
|
||||
send_reset_pwd: 'Send password request',
|
||||
incorso: 'Request New Email...',
|
||||
email_sent: 'Email sent',
|
||||
check_email: 'Check your email for a message with a link to update your password. This link will expire in 4 hours for security reasons.',
|
||||
title_update_pwd: 'Update your password',
|
||||
update_password: 'Update Password',
|
||||
},
|
||||
logout: {
|
||||
uscito: 'Logout successfully',
|
||||
},
|
||||
errors: {
|
||||
graphql: {
|
||||
undefined: 'undefined',
|
||||
},
|
||||
},
|
||||
showbigmap: 'Show the largest map',
|
||||
todo: {
|
||||
titleprioritymenu: 'Priority:',
|
||||
inserttop: 'Insert Task at the top',
|
||||
insertbottom: 'Insert Task at the bottom',
|
||||
edit: 'Task Description:',
|
||||
completed: 'Lasts Completed',
|
||||
usernotdefined: 'Attention, you need to be Signed In to add a new Task',
|
||||
start_date: 'Start Date',
|
||||
status: 'Status',
|
||||
completed_at: 'Completition Date',
|
||||
expiring_at: 'Expiring Date',
|
||||
phase: 'Phase',
|
||||
},
|
||||
notification: {
|
||||
status: 'Status',
|
||||
ask: 'Enable Notification',
|
||||
waitingconfirm: 'Confirm the Request Notification',
|
||||
confirmed: 'Notifications Enabled!',
|
||||
denied: 'Notifications Disabled! Attention, you will not see your messages incoming. Reenable it for see it',
|
||||
titlegranted: 'Notification Permission Granted!',
|
||||
statusnot: 'status Notification',
|
||||
titledenied: 'Notification Permission Denied!',
|
||||
title_subscribed: 'Subscribed to FreePlanet.app!',
|
||||
subscribed: 'You can now receive Notification and Messages.',
|
||||
newVersionAvailable: 'Upgrade',
|
||||
},
|
||||
connection: 'Conexión',
|
||||
proj: {
|
||||
newproj: 'Project Title',
|
||||
newsubproj: 'SubProject Title',
|
||||
insertbottom: 'Insert New Project',
|
||||
longdescr: 'Description',
|
||||
hoursplanned: 'Estimated Hours',
|
||||
hoursleft: 'Left Hours',
|
||||
hoursadded: 'Additional Hours',
|
||||
hoursworked: 'Worked Hours',
|
||||
begin_development: 'Start Dev',
|
||||
begin_test: 'Start Test',
|
||||
progresstask: 'Progression',
|
||||
actualphase: 'Actual Phase',
|
||||
hoursweeky_plannedtowork: 'Scheduled weekly hours',
|
||||
endwork_estimate: 'Estimated completion date',
|
||||
privacyread: 'Who can see it:',
|
||||
privacywrite: 'Who can modify if:',
|
||||
totalphases: 'Total Phase',
|
||||
themecolor: 'Theme Color',
|
||||
themebgcolor: 'Theme Color Background',
|
||||
},
|
||||
where: {
|
||||
code: 'Id',
|
||||
whereicon: 'Icon',
|
||||
},
|
||||
col: {
|
||||
label: 'Etichetta',
|
||||
value: 'Valore',
|
||||
type: 'Tipo',
|
||||
},
|
||||
cal: {
|
||||
num: 'Number',
|
||||
booked: 'Booked',
|
||||
booked_error: 'Reservation failed. Try again later',
|
||||
sendmsg_error: 'Message not sent. Try again later',
|
||||
sendmsg_sent: 'Message sent',
|
||||
booking: 'Book the Event',
|
||||
titlebooking: 'Reservation',
|
||||
modifybooking: 'Modify Reservation',
|
||||
cancelbooking: 'Cancel Reservation',
|
||||
canceledbooking: 'Booking cancelled',
|
||||
cancelederrorbooking: 'Cancellation unsuccessfully, try again later',
|
||||
event: 'Event',
|
||||
starttime: 'From',
|
||||
nextevent: 'Next Event',
|
||||
readall: 'Read All',
|
||||
enddate: 'to',
|
||||
endtime: 'to',
|
||||
duration: 'Duration',
|
||||
hours: 'Hours',
|
||||
when: 'When',
|
||||
where: 'Where',
|
||||
teacher: 'Led by',
|
||||
enterdate: 'Enter date',
|
||||
details: 'Details',
|
||||
infoextra: 'Extra Info DateTime',
|
||||
alldayevent: 'All-Day myevent',
|
||||
eventstartdatetime: 'Start',
|
||||
enterEndDateTime: 'End',
|
||||
selnumpeople: 'Participants',
|
||||
selnumpeople_short: 'Num',
|
||||
msgbooking: 'Message to send',
|
||||
showpdf: 'Show PDF',
|
||||
bookingtextdefault: 'I book for',
|
||||
bookingtextdefault_of: 'of',
|
||||
data: 'Date',
|
||||
teachertitle: 'Teacher',
|
||||
peoplebooked: 'Booked',
|
||||
showlastschedule: 'See Full Schedule',
|
||||
},
|
||||
msgs: {
|
||||
message: 'Messaggio',
|
||||
messages: 'Messaggi',
|
||||
nomessage: 'Nessun Messaggio',
|
||||
},
|
||||
event: {
|
||||
_id: 'id',
|
||||
typol: 'Typology',
|
||||
short_tit: 'Short Title',
|
||||
title: 'Title',
|
||||
details: 'Details',
|
||||
bodytext: 'Event Text',
|
||||
dateTimeStart: 'Date Start',
|
||||
dateTimeEnd: 'Date End',
|
||||
bgcolor: 'Background color',
|
||||
days: 'Days',
|
||||
icon: 'Icon',
|
||||
img: 'Nomefile Img',
|
||||
img_small: 'Img Small',
|
||||
where: 'Qhere',
|
||||
contribtype: 'Contribute Type',
|
||||
price: 'Price',
|
||||
askinfo: 'Ask for Info',
|
||||
showpage: 'Show Page',
|
||||
infoafterprice: 'Info after Price',
|
||||
teacher: 'Teacher', // teacherid
|
||||
teacher2: 'Teacher2', // teacherid2
|
||||
infoextra: 'Extra Info',
|
||||
linkpage: 'WebSite',
|
||||
linkpdf: 'PDF Link',
|
||||
nobookable: 'No Bookable',
|
||||
news: 'News',
|
||||
dupId: 'Id Duplicate',
|
||||
canceled: 'Canceled',
|
||||
deleted: 'Deleted',
|
||||
duplicate: 'Duplicate',
|
||||
notempty: 'Field cannot be empty',
|
||||
modified: 'Modified',
|
||||
showinhome: 'Show in Home',
|
||||
showinnewsletter: 'Show in the Newsletter',
|
||||
color: 'Title Color',
|
||||
},
|
||||
disc: {
|
||||
typol_code: 'Tipology Code',
|
||||
order: 'Order',
|
||||
},
|
||||
newsletter: {
|
||||
title: 'Would you like to receive our Newsletter?',
|
||||
name: 'Your name',
|
||||
surname: 'Your surname',
|
||||
namehint: 'Name',
|
||||
surnamehint: 'Surname',
|
||||
email: 'Your email',
|
||||
submit: 'Subscribe',
|
||||
reset: 'Reset',
|
||||
typesomething: 'Please type something',
|
||||
acceptlicense: 'I accept the license and terms',
|
||||
license: 'You need to accept the license and terms first',
|
||||
submitted: 'Subscribed',
|
||||
menu: 'Newsletter1',
|
||||
template: 'Template Email',
|
||||
sendemail: 'Send',
|
||||
check: 'Check',
|
||||
sent: 'Already Sent',
|
||||
mailinglist: 'Mailing List',
|
||||
settings: 'Settings',
|
||||
serversettings: 'Server',
|
||||
others: 'Others',
|
||||
templemail: 'Templates Email',
|
||||
datetoSent: 'DateTime Send',
|
||||
activate: 'Activate',
|
||||
numemail_tot: 'Email Total',
|
||||
numemail_sent: 'Email Sent',
|
||||
datestartJob: 'Start Job',
|
||||
datefinishJob: 'End Job',
|
||||
lastemailsent_Job: 'Last Sent',
|
||||
starting_job: 'Job started',
|
||||
finish_job: 'Sent terminated',
|
||||
processing_job: 'Work in progress',
|
||||
error_job: 'Info Error',
|
||||
statesub: 'Subscribed',
|
||||
wrongerr: 'Invalid Email',
|
||||
},
|
||||
privacy_policy: 'Privacy Policy',
|
||||
cookies: 'Wir verwenden Cookies für eine bessere Webleistung.',
|
||||
},
|
||||
};
|
||||
|
||||
export default msg_de;
|
||||
@@ -1,625 +0,0 @@
|
||||
const msg_enUs = {
|
||||
enUs: {
|
||||
words: {
|
||||
da: 'from',
|
||||
a: 'to',
|
||||
},
|
||||
home: {
|
||||
guida: 'Guide',
|
||||
guida_passopasso: 'Step By Step Guide',
|
||||
},
|
||||
grid: {
|
||||
editvalues: 'Edit Values',
|
||||
addrecord: 'Add Row',
|
||||
showprevedit: 'Show Past Events',
|
||||
nodata: 'No data',
|
||||
columns: 'Columns',
|
||||
tableslist: 'Tables',
|
||||
},
|
||||
otherpages: {
|
||||
sito_offline: 'Updating Website',
|
||||
modifprof: 'Modify Profile',
|
||||
biografia: 'Bio',
|
||||
error404: 'error404',
|
||||
error404def: 'error404def',
|
||||
admin: {
|
||||
menu: 'Administration',
|
||||
eventlist: 'Your Booking',
|
||||
usereventlist: 'Users Booking',
|
||||
userlist: 'Users List',
|
||||
tableslist: 'List of tables',
|
||||
navi: 'Navi',
|
||||
newsletter: 'Newsletter',
|
||||
pages: 'Pages',
|
||||
media: 'Medias',
|
||||
},
|
||||
manage: {
|
||||
menu: 'Manage',
|
||||
manager: 'Manager',
|
||||
nessuno: 'None',
|
||||
},
|
||||
messages: {
|
||||
menu: 'Your Messages',
|
||||
},
|
||||
},
|
||||
sendmsg: {
|
||||
write: 'write',
|
||||
},
|
||||
stat: {
|
||||
imbarcati: 'Boarded',
|
||||
imbarcati_weekly: 'Boarded Settimanali',
|
||||
imbarcati_in_attesa: 'Boarded on hold',
|
||||
qualificati: 'Qualified with at least 2 guests',
|
||||
requisiti: 'Users with the 7 Requirements',
|
||||
zoom: 'Participated in Zoom',
|
||||
modalita_pagamento: 'Payment Methods Inserted',
|
||||
accepted: 'Accepted Guidelines + Video',
|
||||
dream: 'They wrote the Dream',
|
||||
email_not_verif: 'Email not Verified',
|
||||
telegram_non_attivi: 'Inactive Telegram',
|
||||
telegram_pendenti: 'Pending Telegram',
|
||||
reg_daily: 'Daily Registrations',
|
||||
reg_total: 'Total registrations',
|
||||
},
|
||||
steps: {
|
||||
nuovo_imbarco: 'Book another Trip',
|
||||
vuoi_entrare_nuova_nave: 'Do you wish to help the Movement to advance and intend to enter another Ship?<br>By making a New Gift of 33€, you will be able to travel another journey and have another opportunity to become a Dreamer!<br>'
|
||||
+ 'If you confirm, you\'ll be added to the waiting list for the next boarding.',
|
||||
vuoi_cancellare_imbarco: 'Are you sure you want to cancel this boarding on the AYNI ship?',
|
||||
completed: 'Completed',
|
||||
passi_su: '{passo} steps out of {totpassi}',
|
||||
video_intro_1: '1. Welcome to {sitename}',
|
||||
video_intro_2: '2. Birth of {sitename}',
|
||||
read_guidelines: 'I have read and agreed to these terms and conditions written above',
|
||||
saw_video_intro: 'I declare I\'ve seen the videos',
|
||||
paymenttype: 'Methods of Payment (Revolut)',
|
||||
paymenttype_long: 'Choose <strong>at least 2 Payment Methods</strong>, to exchange gifts.<br><br>The <strong>payment methods are: <ul><li><strong>Paypal</strong> (<strong>mandatory</strong>) because it is a very popular system throughout Europe (the transfer is free of charge) and you can connect prepaid cards, credit cards and bank account <strong>WITHOUT COMMISSIONS</strong>. In this way you won\'t have to share your card or c/c numbers but only the email you used during the registration on Paypal. Available the app for your mobile phone.</li><li><strong>Revolut</strong>: the Revolut Prepaid Card with English IBAN (outside EU) completely free, more free and easy to use. Available the app for mobile.</li>',
|
||||
paymenttype_paypal: 'How to open a Paypal account (in 2 minutes)',
|
||||
paymenttype_paypal_carta_conto: 'How to associate a Credit/Debit Card or Bank Account on PayPal',
|
||||
paymenttype_paypal_link: 'Open Account with Paypal',
|
||||
paymenttype_revolut: 'How to open the account with Revolut (in 2 minutes)',
|
||||
paymenttype_revolut_link: 'Open Account with Revolut',
|
||||
entra_zoom: 'Enter in Zoom',
|
||||
linee_guida: 'I accept the guidelines',
|
||||
video_intro: 'I see the videos',
|
||||
zoom: 'I partecipate at least 1 Zoom',
|
||||
zoom_si_partecipato: 'You have participated in at least 1 Zoom',
|
||||
zoom_partecipa: 'Participated in at least 1 Zoom',
|
||||
zoom_no_partecipato: 'You have not yet participated in a Zoom (it is a requirement to enter)',
|
||||
zoom_long: 'You are required to participate in at least 1 Zoom, but it is recommended that you take part in the movement more actively.<br><br><strong>By participating in Zooms the Staff will record attendance and you will be enabled.</strong>',
|
||||
zoom_what: 'Tutorial how to install Zoom Cloud Meeting',
|
||||
// sharemovement_devi_invitare_almeno_2: 'You still haven\'t invited 2 people',
|
||||
// sharemovement_hai_invitato: 'You invited at least 2 people',
|
||||
sharemovement_invitati_attivi_si: 'You have at least 2 people invited Active',
|
||||
sharemovement_invitati_attivi_no: '<strong>Note:</strong>The people you invited, in order to be <strong>Active</strong>, must have <strong>completed all the first 7 Requirements</strong> (see your <strong>Lavagna</strong> to see what they are missing).',
|
||||
sharemovement: 'Invitation at least 2 people',
|
||||
sharemovement_long: 'Share the {sitename} Movement and invite them to participate in the Welcome Zooms to become part of this great Family 😄 .<br>.',
|
||||
inv_attivi_long: '',
|
||||
enter_prog_completa_requisiti: 'Complete all the requirements to enter the boarding list.',
|
||||
enter_prog_requisiti_ok: 'You have completed all 7 requirements to enter the boarding list.<br>',
|
||||
enter_prog_msg: 'You will receive a message in the next few days as soon as your ship is ready!',
|
||||
enter_prog_msg_2: '',
|
||||
enter_nave_9req_ok: 'CONGRATULATIONS! You have completed ALL 9 steps guide! Thank you for helping {sitename} to Expand! <br>You will be able to leave very soon with your Journey, making your gift and continuing towards the Dreamer.',
|
||||
enter_nave_9req_ko: 'Remember that you can help the Movement grow and expand by sharing our journey with everyone!',
|
||||
enter_prog: 'I\'m going in Programming',
|
||||
enter_prog_long: 'Satisfied the requirements you will enter the Program, you will be added to the Ticket and the corresponding group chat.<br>',
|
||||
collaborate: 'Collaboration',
|
||||
collaborate_long: 'I continue to work with my companions to get to the day when my ship will sail.',
|
||||
dream: 'I write my dream',
|
||||
dream_long: 'Write here the Dream for which you entered {sitename} and which you wish to realize.<br>It will be shared with all the others to dream together !',
|
||||
dono: 'Gift',
|
||||
dono_long: 'I make my gift on the departure date of my Ship',
|
||||
support: 'Support the movement',
|
||||
support_long: 'I support the movement by bringing energy, participating and organizing Zoom, helping and informing newcomers and continuing to spread {sitename}\'s vision.',
|
||||
ricevo_dono: 'I receive my gift and CELEBRATE',
|
||||
ricevo_dono_long: 'Hurray!!!! <br><strong> THIS MOVEMENT IS REAL AND POSSIBLE IF WE DO IT WORK ALL TOGETHER!!',
|
||||
},
|
||||
|
||||
dialog: {
|
||||
continue: 'Continue',
|
||||
close: 'Close',
|
||||
copyclipboard: 'Copied to clipboard',
|
||||
ok: 'Ok',
|
||||
yes: 'Yes',
|
||||
no: 'No',
|
||||
delete: 'Delete',
|
||||
cancel: 'Cancel',
|
||||
update: 'Update',
|
||||
add: 'Add',
|
||||
today: 'Today',
|
||||
book: 'Book',
|
||||
avanti: 'Continue',
|
||||
indietro: 'Back',
|
||||
finish: 'Finish',
|
||||
sendmsg: 'Send Message',
|
||||
sendonlymsg: 'Send only a Msg',
|
||||
msg: {
|
||||
titledeleteTask: 'Delete Task',
|
||||
deleteTask: 'Delete Task {mytodo}?',
|
||||
},
|
||||
},
|
||||
comp: {
|
||||
Conta: 'Count',
|
||||
},
|
||||
db: {
|
||||
recupdated: 'Record Updated',
|
||||
recfailed: 'Error during update Record',
|
||||
reccanceled: 'Canceled Update. Restore previous value',
|
||||
deleterecord: 'Delete Record',
|
||||
deletetherecord: 'Delete the Record?',
|
||||
deletedrecord: 'Record Deleted',
|
||||
recdelfailed: 'Error during deletion of the Record',
|
||||
duplicatedrecord: 'Duplicate Record',
|
||||
recdupfailed: 'Error during record duplication',
|
||||
},
|
||||
components: {
|
||||
authentication: {
|
||||
telegram: {
|
||||
open: 'Click here to open the BOT Telegram and follow the instructions',
|
||||
ifclose: 'Se non si apre Telegram cliccando sul bottone oppure l\'avevi eliminato, vai su Telegram e cerca \'{botname}\' dall\'icona della lente, poi premi Start e segui le istruzioni.',
|
||||
openbot: 'Open BOT Telegram',
|
||||
},
|
||||
login: {
|
||||
facebook: 'Facebook',
|
||||
},
|
||||
email_verification: {
|
||||
title: 'Begin your registration',
|
||||
introduce_email: 'Enter your email',
|
||||
email: 'Email',
|
||||
invalid_email: 'Your email is invalid',
|
||||
verify_email: 'Verify your email',
|
||||
go_login: 'Back to Login',
|
||||
incorrect_input: 'Incorrect input.',
|
||||
link_sent: 'Now read your email and confirm registration',
|
||||
se_non_ricevo: 'If you do not receive the email, try checking in the spam, or contact us',
|
||||
title_unsubscribe: 'Unsubscribe to the newsletter',
|
||||
title_unsubscribe_done: 'Subscription completed successfully',
|
||||
},
|
||||
},
|
||||
},
|
||||
fetch: {
|
||||
errore_generico: 'Generic Error',
|
||||
errore_server: 'Unable to access to the Server. Retry. Thank you.',
|
||||
error_doppiologin: 'Signup again. Another access was made with another device.',
|
||||
},
|
||||
user: {
|
||||
notregistered: 'You need first to SignUp before storing data',
|
||||
loggati: 'User not logged in',
|
||||
},
|
||||
templemail: {
|
||||
subject: 'Subject Email',
|
||||
testoheadermail: 'Header Email',
|
||||
content: 'Content',
|
||||
img: 'Image 1',
|
||||
img2: 'Image 2',
|
||||
content2: 'Content 2',
|
||||
options: 'Options',
|
||||
},
|
||||
dashboard: {
|
||||
data: 'Date',
|
||||
data_rich: 'Date Req.',
|
||||
ritorno: 'Return',
|
||||
invitante: 'Invitante',
|
||||
num_tessitura: 'Numero di Tessitura:',
|
||||
attenzione: 'Attenzione',
|
||||
downline: 'Guests',
|
||||
downnotreg: 'Non-registered Guests',
|
||||
notreg: 'Not Registered',
|
||||
inv_attivi: 'Invited with the 7 Requirements',
|
||||
numinvitati: 'At least 2 guests',
|
||||
telefono_wa: 'Contact on Whatsapp',
|
||||
sendnotification: 'Send Notification to the Recipient on Telegram BOT',
|
||||
ricevuto_dono: '😍🎊 You received a Gift Invitation {invitato} from {mittente} !',
|
||||
ricevuto_dono_invitante: '😍🎊 You received a Gift Inviting from {mittente} !',
|
||||
nessun_invitante: 'No Inviting',
|
||||
nessun_invitato: 'No_invited',
|
||||
legenda_title: 'Click on the name of the guest to see the status of his Requirements.',
|
||||
nave_in_partenza: 'on Departure on',
|
||||
nave_in_chiusura: 'Closing Gift Chat',
|
||||
nave_partita: 'departed on',
|
||||
tutor: 'Tutor',
|
||||
/* sonomediatore: 'When you become a Medalist you are contacted by a <strong>TUTOR</strong>, with him you must:<br><ol class="list">' +
|
||||
'<li>Open your <strong>Gift Chat</strong> (you as owner and the Tutor as administrator) with this name:<br><strong>{nomenave}</strong></li>' +
|
||||
'<li>Click on the chat name at the top -> Edit -> Administrators -> "Add Administrator", select the Tutor in the list.</li>' +
|
||||
'<li>You have to configure the chat so that whoever enters also sees the previous posts (click on the chat name at the top, click on edit,' +
|
||||
'change "new members\' history" from hidden to visible.</li>' +
|
||||
'<li>To find the <strong>link to the newly created Chat</strong>: Click on the Chat name at the top, click on the Pencil -> "Group Type" -> "invite to group via link", click on "copy link" and paste it in the <strong>"Link Gift Chat"</strong></li>" + box below.' +
|
||||
'<li>Send the Gift Chat Link to all Donors by clicking on the button below.</li></ol>.',
|
||||
*/
|
||||
sonomediatore: 'When you are a MEDIATOR you will be contacted by <strong>TUTOR AYNI</strong> by message Chat <strong>AYNI BOT</strong>',
|
||||
superchat: 'Note: ONLY if you have PAYMENT problems, or if you want to be REPLACED, two Tutors are waiting to help you on the Chat:<br><a href="{link_superchat}" target="_blank">Get into Gift Chat</a>.',
|
||||
sonodonatore: '<ol class="lista"><li>When you are in this position, you will be invited (via a message on <strong>AYNI BOT</strong>) to make the Gift. You will no longer need to enter a Chat.</li>'
|
||||
+ '<li>You will have 3 days to make the Gift (then you will be replaced), in the payment method that you will find written on the message in <strong>AYNI BOT</strong>.<br></ol>',
|
||||
sonodonatore_seconda_tessitura: '<ol class="lista"><li>Here you are Mediator and also Donor, but being the second Weaving, you won\'t need to make your gift again.<br></ol>',
|
||||
controlla_donatori: 'Check Donor List',
|
||||
link_chat: 'Gift Chat Telegram links',
|
||||
tragitto: 'Route',
|
||||
nave: 'Ship',
|
||||
data_partenza: 'Departure<br>Date',
|
||||
doni_inviati: 'Gift<br>Sent',
|
||||
nome_dei_passaggi: 'Steps Name',
|
||||
donatori: 'Donors',
|
||||
donatore: 'Donor',
|
||||
mediatore: 'Mediator',
|
||||
sognatore: 'Dreamer',
|
||||
sognatori: 'DREAMER',
|
||||
intermedio: 'INTERMEDIATE',
|
||||
pos2: 'Interm. 2',
|
||||
pos3: 'Interm. 3',
|
||||
pos5: 'Interm. 5',
|
||||
pos6: 'Interm. 6',
|
||||
gift_chat: 'To enter Gift Chat, click here',
|
||||
quando_eff_il_tuo_dono: 'When to make the Gift',
|
||||
entra_in_gift_chat: 'Enter Gift Chat',
|
||||
invia_link_chat: 'Send Gift Chat Link to Donors',
|
||||
inviare_msg_donatori: '5) Send message to Donors',
|
||||
msg_donatori_ok: '',
|
||||
metodi_disponibili: 'Available Methods',
|
||||
importo: 'Amount',
|
||||
effettua_il_dono: 'It\'s time to make your Gift to the Dreamer<br>👉 {sognatore} 👈!<br>'
|
||||
+ 'Send via <a href="https://www.paypal.com" target="_blank">PayPal</a> to: <strong>{email}</strong><br>'
|
||||
+ '<strong><span style="color:red">WARNING:</span> Choose the option <br>"SENDING TO A FRIEND"</strong><br>(So as not to pay fees).',
|
||||
paypal_me: '<br>2) Simplified Method<br><a href="{link_payment}" target="_blank">Click directly here</a><br>'
|
||||
+ 'will open PayPal with the amount and the recipient already set.<br>'
|
||||
+ 'Add as message: <strong>Gift</strong><br>'
|
||||
+ '<strong><span style="color:red">WARNING:</span> DO NOT select the box</strong>: Paypal shopping protection<br>'
|
||||
+ 'If you have any doubts, watch the video below to see how to:<br>'
|
||||
+ 'Finally click on "Send Money Now".',
|
||||
qui_compariranno_le_info: 'On the day of departure of the Ship, the information of the Dreamer will appear',
|
||||
commento_al_sognatore: 'Write here a comment for the Dreamer:',
|
||||
posizione: 'Position',
|
||||
come_inviare_regalo_con_paypal: 'How to send the gift via Paypal',
|
||||
ho_effettuato_il_dono: 'I Sent the Gift',
|
||||
clicca_conferma_dono: 'Click here to confirm that you have made your gift',
|
||||
fatto_dono: 'You have confirmed that the gift has been sent',
|
||||
confermi_dono: 'Confirm that you have sent your 33€ Gift',
|
||||
dono_ricevuto: 'Your Gift has been Received!',
|
||||
dono_ricevuto_2: 'Received',
|
||||
dono_ricevuto_3: 'Arrived!',
|
||||
confermi_dono_ricevuto: 'Confirm that you have received the 33€ Gift from {donatore}',
|
||||
confermi_dono_ricevuto_msg: 'Confirmed that you have received the 33€ Gift from {donatore}',
|
||||
msg_bot_conferma: '{donatore} has confirmed that he has sent his 33€ gift to {sognatore}. (Commento: {commento})',
|
||||
ricevuto_dono_ok: 'You have confirmed the gift has been received',
|
||||
entra_in_lavagna: 'Enter on your Dashboard to see the departing ships',
|
||||
doni_ricevuti: 'Gifts Received',
|
||||
doni_inviati_da_confermare: 'Gifts Sent (to be confirmed)',
|
||||
doni_mancanti: 'Missing Gifts',
|
||||
temporanea: 'Temporary',
|
||||
nave_provvisoria: 'You have been assigned a <strong>TEMPORARY SHIP</strong>.<br>It is normal that you will see a change the departure date, due to the updating of the passenger ranking.',
|
||||
ritessitura: 'RETEXTURE',
|
||||
},
|
||||
reg: {
|
||||
volta: 'time',
|
||||
volte: 'times',
|
||||
registered: 'Registrato',
|
||||
contacted: 'Contattato',
|
||||
name_complete: 'Nome Completo',
|
||||
num_invitati: 'Num.Invitati',
|
||||
is_in_whatsapp: 'In Whatsapp',
|
||||
is_in_telegram: 'In Telegram',
|
||||
cell_complete: 'Cellulare',
|
||||
failed: 'Fallito',
|
||||
ind_order: 'Num',
|
||||
ipaddr: 'IP',
|
||||
verified_email: 'Email Verified',
|
||||
reg_lista_prec: 'Please enter the First Name, Last Name and mobile phone number you left in the past when you signed up for the Chat! <br>This way the system will recognize you and keep the position of the list',
|
||||
nuove_registrazioni: 'If this is a NEW registration, you must contact the person who INVITED you, who will leave you the CORRECT LINK to do the Registration under him/her',
|
||||
you: 'You',
|
||||
cancella_invitato: 'Delete Invited',
|
||||
regala_invitato: 'Give invited',
|
||||
regala_invitante: 'Give inviting',
|
||||
messaggio_invito: 'Invitation Message',
|
||||
messaggio_invito_msg: 'Send this message to all those to whom you want to share this Movement !',
|
||||
videointro: 'Introductory Video',
|
||||
invitato_regalato: 'Invited Given',
|
||||
invitante_regalato: 'Inviting Given',
|
||||
legenda: 'Legend',
|
||||
aportador_solidario: 'Solidarity Contributor',
|
||||
aportador_solidario_nome_completo: 'A.S. Name',
|
||||
aportador_solidario_ind_order: 'A.S.Ind',
|
||||
reflink: 'Links to share to your friends:',
|
||||
linkzoom: 'Link to enter in Zoom',
|
||||
incorso: 'Registration please wait...',
|
||||
made_gift: 'Donated',
|
||||
note: 'Note',
|
||||
richiesto: 'Field Required',
|
||||
email: 'Email',
|
||||
intcode_cell: 'International Code',
|
||||
cell: 'Mobile Telegram',
|
||||
cellreg: 'Cellulare con cui ti eri registrato',
|
||||
nationality: 'Nationality',
|
||||
email_paypal: 'Email Paypal',
|
||||
revolut: 'Revolut',
|
||||
link_payment: 'Paypal.me link',
|
||||
note_payment: 'Additional notes',
|
||||
country_pay: 'Country of Destination Payments',
|
||||
username_telegram: 'Username Telegram',
|
||||
telegram: 'Chat Telegram \'{botname}\'',
|
||||
teleg_id: 'Telegram ID',
|
||||
teleg_auth: 'Authorization Code',
|
||||
click_per_copiare: 'Click on it to copy it to the clipboard',
|
||||
copia_messaggio: 'Copy Message',
|
||||
teleg_torna_sul_bot: '1) Copy the code by clicking on the button above<br>2) go back to {botname} by clicking on 👇 and paste (or write) the code',
|
||||
teleg_checkcode: 'Telegram code',
|
||||
my_dream: 'My Dream',
|
||||
saw_and_accepted: 'Condizioni',
|
||||
saw_zoom_presentation: 'Ha visto Zoom',
|
||||
manage_telegram: 'Gestori Telegram',
|
||||
paymenttype: 'Available Payment Methods (Revolut)',
|
||||
selected: 'Selezionati',
|
||||
img: 'File Image',
|
||||
date_reg: 'Reg. Date',
|
||||
requirement: 'Requirements',
|
||||
perm: 'Permissions',
|
||||
username_login: 'Username or email',
|
||||
username: 'Username (Pseudonym)',
|
||||
username_short: 'Username',
|
||||
name: 'Name',
|
||||
surname: 'Surname',
|
||||
password: 'Password',
|
||||
repeatPassword: 'Repeat password',
|
||||
terms: 'I agree with the terms and privacy',
|
||||
onlyadult: "I confirm that I'm at least 18 years old",
|
||||
submit: 'Submit',
|
||||
title_verif_reg: 'Verify Registration',
|
||||
reg_ok: 'Successful Registration',
|
||||
verificato: 'Verified',
|
||||
non_verificato: 'Not Verified',
|
||||
forgetpassword: 'Forget Password?',
|
||||
modificapassword: 'Modify Password',
|
||||
err: {
|
||||
required: 'is required',
|
||||
email: 'must be a valid email',
|
||||
errore_generico: 'Please review fields again',
|
||||
atleast: 'must be at least',
|
||||
complexity: 'must contains at least 1 lowercase letter, 1 uppercase letter, 1 digit',
|
||||
notmore: 'must not be more than',
|
||||
char: 'characters long',
|
||||
terms: 'You need to agree with the terms & conditions.',
|
||||
email_not_exist: 'Email is not present in the archive, check if it is correct',
|
||||
duplicate_email: 'Email was already registered',
|
||||
user_already_exist: 'Registration with these data (name, surname and mobile phone) has already been created. To access the site, click on the LOGIN button from the HomePage.',
|
||||
user_extralist_not_found: 'User in archive not found, insert the Name, Surname and mobile phone sent previously',
|
||||
user_not_this_aportador: 'Stai utilizzando un link di una persona diversa dal tuo invitato originale.',
|
||||
duplicate_username: 'Username is already taken',
|
||||
username_not_valid: 'Username not valid',
|
||||
aportador_not_exist: 'The username of the person who invited you is not present. Contact us.',
|
||||
aportador_regalare_not_exist: 'Inserire l\'Username della persona che si vuole regalare l\'invitato',
|
||||
sameaspassword: 'Passwords must be identical',
|
||||
},
|
||||
tips: {
|
||||
email: 'inserisci la tua email',
|
||||
username: 'username lunga almeno 6 caratteri',
|
||||
password: 'deve contenere 1 minuscola, 1 maiuscola e 1 cifra',
|
||||
repeatpassword: 'ripetere la password',
|
||||
|
||||
},
|
||||
},
|
||||
op: {
|
||||
qualification: 'Qualification',
|
||||
usertelegram: 'Username Telegram',
|
||||
disciplines: 'Disciplines',
|
||||
certifications: 'Certifications',
|
||||
intro: 'Introduction',
|
||||
info: 'Biography',
|
||||
webpage: 'Web Page',
|
||||
days_working: 'Working Days',
|
||||
facebook: 'Facebook Page',
|
||||
},
|
||||
login: {
|
||||
incorso: 'Login...',
|
||||
enter: 'Login',
|
||||
esci: 'Logout',
|
||||
errato: 'Username or password wrong. Please retry again',
|
||||
subaccount: 'This account has been merged with your Main Account. Login using the username (and email) of the FIRST account.',
|
||||
completato: 'Login successfully!',
|
||||
needlogin: 'You must login before continuing',
|
||||
},
|
||||
reset: {
|
||||
title_reset_pwd: 'Reset your Password',
|
||||
send_reset_pwd: 'Send password request',
|
||||
incorso: 'Request New Email...',
|
||||
email_sent: 'Email sent',
|
||||
check_email: 'Check your email for a message with a link to update your password. This link will expire in 4 hours for security reasons.',
|
||||
token_scaduto: 'Il token è scaduto oppure è stato già usato. Ripetere la procedura di reset password',
|
||||
title_update_pwd: 'Update your password',
|
||||
update_password: 'Update Password',
|
||||
},
|
||||
logout: {
|
||||
uscito: 'Logout successfully',
|
||||
},
|
||||
errors: {
|
||||
graphql: {
|
||||
undefined: 'undefined',
|
||||
},
|
||||
},
|
||||
showbigmap: 'Show the largest map',
|
||||
todo: {
|
||||
titleprioritymenu: 'Priority:',
|
||||
inserttop: 'Insert Task at the top',
|
||||
insertbottom: 'Insert Task at the bottom',
|
||||
edit: 'Task Description:',
|
||||
completed: 'Lasts Completed',
|
||||
usernotdefined: 'Attention, you need to be Signed In to add a new Task',
|
||||
start_date: 'Start Date',
|
||||
status: 'Status',
|
||||
completed_at: 'Completition Date',
|
||||
expiring_at: 'Expiring Date',
|
||||
phase: 'Phase',
|
||||
},
|
||||
notification: {
|
||||
status: 'Status',
|
||||
ask: 'Enable Notification',
|
||||
waitingconfirm: 'Confirm the Request Notification',
|
||||
confirmed: 'Notifications Enabled!',
|
||||
denied: 'Notifications Disabled! Attention, you will not see your messages incoming. Reenable it for see it',
|
||||
titlegranted: 'Notification Permission Granted!',
|
||||
statusnot: 'status Notification',
|
||||
titledenied: 'Notification Permission Denied!',
|
||||
title_subscribed: 'Subscribed to FreePlanet.app!',
|
||||
subscribed: 'You can now receive Notification and Messages.',
|
||||
newVersionAvailable: 'Upgrade',
|
||||
},
|
||||
connection: 'Conexión',
|
||||
proj: {
|
||||
newproj: 'Project Title',
|
||||
newsubproj: 'SubProject Title',
|
||||
insertbottom: 'Insert New Project',
|
||||
longdescr: 'Description',
|
||||
hoursplanned: 'Estimated Hours',
|
||||
hoursleft: 'Left Hours',
|
||||
hoursadded: 'Additional Hours',
|
||||
hoursworked: 'Worked Hours',
|
||||
begin_development: 'Start Dev',
|
||||
begin_test: 'Start Test',
|
||||
progresstask: 'Progression',
|
||||
actualphase: 'Actual Phase',
|
||||
hoursweeky_plannedtowork: 'Scheduled weekly hours',
|
||||
endwork_estimate: 'Estimated completion date',
|
||||
privacyread: 'Who can see it:',
|
||||
privacywrite: 'Who can modify if:',
|
||||
totalphases: 'Total Phase',
|
||||
themecolor: 'Theme Color',
|
||||
themebgcolor: 'Theme Color Background',
|
||||
},
|
||||
where: {
|
||||
code: 'Id',
|
||||
whereicon: 'Icon',
|
||||
},
|
||||
col: {
|
||||
label: 'Etichetta',
|
||||
value: 'Valore',
|
||||
type: 'Tipo',
|
||||
},
|
||||
cal: {
|
||||
num: 'Number',
|
||||
booked: 'Booked',
|
||||
booked_error: 'Reservation failed. Try again later',
|
||||
sendmsg_error: 'Message not sent. Try again later',
|
||||
sendmsg_sent: 'Message sent',
|
||||
booking: 'Book the Event',
|
||||
titlebooking: 'Reservation',
|
||||
modifybooking: 'Modify Reservation',
|
||||
cancelbooking: 'Cancel Reservation',
|
||||
canceledbooking: 'Booking cancelled',
|
||||
cancelederrorbooking: 'Cancellation unsuccessfully, try again later',
|
||||
cancelevent: 'Cancella Evento',
|
||||
canceledevent: 'Evento Cancellato',
|
||||
cancelederrorevent: 'Cancellazione Evento non effettuata, Riprovare',
|
||||
event: 'Event',
|
||||
starttime: 'From',
|
||||
nextevent: 'Next Event',
|
||||
readall: 'Read All',
|
||||
enddate: 'to',
|
||||
endtime: 'to',
|
||||
duration: 'Duration',
|
||||
hours: 'Hours',
|
||||
when: 'When',
|
||||
where: 'Where',
|
||||
teacher: 'Led by',
|
||||
enterdate: 'Enter date',
|
||||
details: 'Details',
|
||||
infoextra: 'Extra Info DateTime',
|
||||
alldayevent: 'All-Day myevent',
|
||||
eventstartdatetime: 'Start',
|
||||
enterEndDateTime: 'End',
|
||||
selnumpeople: 'Participants',
|
||||
selnumpeople_short: 'Num',
|
||||
msgbooking: 'Message to send',
|
||||
showpdf: 'Show PDF',
|
||||
bookingtextdefault: 'I book for',
|
||||
bookingtextdefault_of: 'of',
|
||||
data: 'Date',
|
||||
teachertitle: 'Teacher',
|
||||
peoplebooked: 'Booked',
|
||||
showlastschedule: 'See Full Schedule',
|
||||
},
|
||||
msgs: {
|
||||
message: 'Messaggio',
|
||||
messages: 'Messaggi',
|
||||
nomessage: 'Nessun Messaggio',
|
||||
},
|
||||
event: {
|
||||
_id: 'id',
|
||||
typol: 'Typology',
|
||||
short_tit: 'Short Title',
|
||||
title: 'Title',
|
||||
details: 'Details',
|
||||
bodytext: 'Event Text',
|
||||
dateTimeStart: 'Date Start',
|
||||
dateTimeEnd: 'Date End',
|
||||
bgcolor: 'Background color',
|
||||
days: 'Days',
|
||||
icon: 'Icon',
|
||||
img: 'Nomefile Img',
|
||||
img_small: 'Img Small',
|
||||
where: 'Qhere',
|
||||
contribtype: 'Contribute Type',
|
||||
price: 'Price',
|
||||
askinfo: 'Ask for Info',
|
||||
showpage: 'Show Page',
|
||||
infoafterprice: 'Info after Price',
|
||||
teacher: 'Teacher', // teacherid
|
||||
teacher2: 'Teacher2', // teacherid2
|
||||
infoextra: 'Extra Info',
|
||||
linkpage: 'WebSite',
|
||||
linkpdf: 'PDF Link',
|
||||
nobookable: 'No Bookable',
|
||||
news: 'News',
|
||||
dupId: 'Id Duplicate',
|
||||
canceled: 'Canceled',
|
||||
deleted: 'Deleted',
|
||||
duplicate: 'Duplicate',
|
||||
notempty: 'Field cannot be empty',
|
||||
modified: 'Modified',
|
||||
showinhome: 'Show in Home',
|
||||
showinnewsletter: 'Show in the Newsletter',
|
||||
color: 'Title Color',
|
||||
},
|
||||
disc: {
|
||||
typol_code: 'Tipology Code',
|
||||
order: 'Order',
|
||||
},
|
||||
newsletter: {
|
||||
title: 'Would you like to receive our Newsletter?',
|
||||
name: 'Your name',
|
||||
surname: 'Your surname',
|
||||
namehint: 'Name',
|
||||
surnamehint: 'Surname',
|
||||
email: 'Your email',
|
||||
submit: 'Subscribe',
|
||||
reset: 'Reset',
|
||||
typesomething: 'Please type something',
|
||||
acceptlicense: 'I accept the license and terms',
|
||||
license: 'You need to accept the license and terms first',
|
||||
submitted: 'Subscribed',
|
||||
menu: 'Newsletter1',
|
||||
template: 'Template Email',
|
||||
sendemail: 'Send',
|
||||
check: 'Check',
|
||||
sent: 'Already Sent',
|
||||
mailinglist: 'Mailing List',
|
||||
settings: 'Settings',
|
||||
serversettings: 'Server',
|
||||
others: 'Others',
|
||||
templemail: 'Templates Email',
|
||||
datetoSent: 'DateTime Send',
|
||||
activate: 'Activate',
|
||||
numemail_tot: 'Email Total',
|
||||
numemail_sent: 'Email Sent',
|
||||
datestartJob: 'Start Job',
|
||||
datefinishJob: 'End Job',
|
||||
lastemailsent_Job: 'Last Sent',
|
||||
starting_job: 'Job started',
|
||||
finish_job: 'Work in progress',
|
||||
processing_job: 'Lavoro in corso',
|
||||
error_job: 'Info Error',
|
||||
statesub: 'Subscribed',
|
||||
wrongerr: 'Invalid Email',
|
||||
},
|
||||
privacy_policy: 'Privacy Policy',
|
||||
cookies: 'We use cookies for better web performance.',
|
||||
},
|
||||
};
|
||||
|
||||
export default msg_enUs;
|
||||
@@ -1,631 +0,0 @@
|
||||
const msg_es = {
|
||||
es: {
|
||||
words: {
|
||||
da: 'del',
|
||||
a: 'al',
|
||||
},
|
||||
home: {
|
||||
guida: 'Guía',
|
||||
guida_passopasso: 'Guía paso a paso',
|
||||
},
|
||||
grid: {
|
||||
editvalues: 'Cambiar valores',
|
||||
addrecord: 'Agregar fila',
|
||||
showprevedit: 'Mostrar eventos pasados',
|
||||
nodata: 'Sin datos',
|
||||
columns: 'Columnas',
|
||||
tableslist: 'Tablas',
|
||||
},
|
||||
otherpages: {
|
||||
sito_offline: 'Sitio en actualización',
|
||||
modifprof: 'Editar Perfil',
|
||||
biografia: 'Biografia',
|
||||
error404: 'error404',
|
||||
error404def: 'error404def',
|
||||
admin: {
|
||||
menu: 'Administración',
|
||||
eventlist: 'Sus Reservas',
|
||||
usereventlist: 'Reserva Usuarios',
|
||||
userlist: 'Lista de usuarios',
|
||||
tableslist: 'Listado de tablas',
|
||||
navi: 'Naves',
|
||||
newsletter: 'Newsletter',
|
||||
pages: 'Páginas',
|
||||
media: 'Medios',
|
||||
},
|
||||
manage: {
|
||||
menu: 'Gestionar',
|
||||
manager: 'Gerente',
|
||||
nessuno: 'Nadie',
|
||||
},
|
||||
messages: {
|
||||
menu: 'Tus mensajes',
|
||||
},
|
||||
},
|
||||
sendmsg: {
|
||||
write: 'escribe',
|
||||
},
|
||||
stat: {
|
||||
imbarcati: 'Embarcados',
|
||||
imbarcati_weekly: 'Embarcados Semanal',
|
||||
imbarcati_in_attesa: 'Embarcados en Espera',
|
||||
qualificati: 'Calificado con al menos 2 invitados',
|
||||
requisiti: 'Los usuarios con los 7 requisitos',
|
||||
zoom: 'Participó en Zoom',
|
||||
modalita_pagamento: 'Métodos de pago insertados',
|
||||
accepted: 'Guías aceptadas + Video',
|
||||
dream: 'Escribieron el Sueño',
|
||||
email_not_verif: 'Correo electrónico no verificado',
|
||||
telegram_non_attivi: 'Telegrama no activo',
|
||||
telegram_pendenti: 'Telegram Pendientes',
|
||||
reg_daily: 'Registros diarios',
|
||||
reg_weekly: 'Registros Semanales',
|
||||
reg_total: 'Total de registros',
|
||||
},
|
||||
steps: {
|
||||
nuovo_imbarco: 'Reserva otro viaje',
|
||||
vuoi_entrare_nuova_nave: '¿Desea ayudar al Movimiento a avanzar y tiene la intención de entrar en otra nave?<br>Haciendo un nuevo regalo de 33 euros, podrá hacer otro viaje y tener otra oportunidad de convertirse en un Soñador!<br>'
|
||||
+ 'Si lo confirma, se le añadirá a la lista de espera para el próximo embarque.',
|
||||
vuoi_cancellare_imbarco: '¿Está seguro de que quiere cancelar el embarque en el barco de AYNI?',
|
||||
completed: 'Completado',
|
||||
passi_su: '{passo} pasos de cada {totpassi}',
|
||||
video_intro_1: '1. Bienvenido a {sitename}',
|
||||
video_intro_2: '2. Nacimiento de {sitename}',
|
||||
read_guidelines: 'He leído y estoy de acuerdo con estos términos escritos anteriormente',
|
||||
saw_video_intro: 'Declaro que he visto los vídeos',
|
||||
paymenttype: 'Métodos de pago (Revolut)', // (Obligatorio Paypal)
|
||||
paymenttype_long: 'Elija <strong>al menos 2 métodos de pago</strong>, para intercambiar regalos.<br><br>Los <strong>métodos de pago son: <ul><li><strong>Revolut</strong>: la Tarjeta Prepagada Revolut con IBAN inglés (fuera de la UE) completamente gratis, más gratis y fácil de usar. Disponible la aplicación para móvil.</li><li><strong>Paypal</strong> porque es un sistema muy popular en toda Europa (la transferencia es gratuita) y se pueden conectar tarjetas de prepago, tarjetas de crédito y cuenta bancaria <strong> SIN COMISIONES</strong>. De esta manera no tendrás que compartir tu tarjeta o números de c/c, sino sólo el correo electrónico que usaste durante el registro en Paypal. Disponible la aplicación para tu teléfono móvil.</li></ul>',
|
||||
paymenttype_paypal: 'Cómo abrir una cuenta de Paypal (en 2 minutos)',
|
||||
paymenttype_paypal_carta_conto: 'Cómo asociar una tarjeta de crédito/débito o una cuenta bancaria en PayPal',
|
||||
paymenttype_paypal_link: 'Abrir una cuenta con Paypal',
|
||||
paymenttype_revolut: 'Cómo abrir la cuenta con Revolut (en 2 minutos)',
|
||||
paymenttype_revolut_link: 'Abrir cuenta con Revolución',
|
||||
entra_zoom: 'Enter Zoom',
|
||||
linee_guida: 'Acepto las directrices',
|
||||
video_intro: 'Veo los videos',
|
||||
zoom: 'Hacer 1 zoom de bienvenida<br>(mira la home para fechas)',
|
||||
zoom_si_partecipato: 'Vous avez participé à au moins 1 Zoom',
|
||||
zoom_partecipa: 'Participó al menos 1 Zoom',
|
||||
zoom_no_partecipato: 'Aún no ha participado en un Zoom (es un requisito para entrar)',
|
||||
zoom_long: 'Se requiere que participe en al menos 1 Zoom, pero se recomienda participar en el movimiento de una manera más activa.<br><br><strong>Al participar en los Zooms el Staff registrará la asistencia y usted estará habilitado.</strong>',
|
||||
zoom_what: 'Tutoriales de cómo instalar Zoom Cloud Meeting',
|
||||
// sharemovement_devi_invitare_almeno_2: 'Todavía no has invitado a dos personas',
|
||||
// sharemovement_hai_invitato: 'Invitaste al menos a dos personas',
|
||||
sharemovement_invitati_attivi_si: 'Tienes al menos 2 personas invitadas Activo',
|
||||
sharemovement_invitati_attivi_no: '<strong>Nota:</strong>Las personas que invitaste, para ser <strong>Activo</strong>, deben haber <strong>completado todos los primeros 7 Requisitos</strong> (ver tu <strong>Lavagna</strong> para ver lo que les falta)',
|
||||
sharemovement: 'Invitar al menos a 2 personas',
|
||||
sharemovement_long: 'Continúo trabajando con mis compañeros para llegar al día en que mi barco zarpe.<br>',
|
||||
inv_attivi_long: '',
|
||||
enter_prog_completa_requisiti: 'Complete todos los requisitos para entrar en la lista de embarque.',
|
||||
enter_prog_requisiti_ok: 'Ha completado los 7 requisitos para entrar en la lista de embarque.<br>',
|
||||
enter_prog_msg: '¡Recibirá un mensaje en los próximos días tan pronto como su nave esté lista!',
|
||||
enter_prog_msg_2: '',
|
||||
enter_nave_9req_ok: '¡FELICIDADES! ¡Has completado los 9 pasos de la Guía! ¡Gracias por ayudar a {sitename} a expandirse! <br>Podrás salir muy pronto con tu viaje, haciendo tu regalo y continuando hacia el Soñador.',
|
||||
enter_nave_9req_ko: 'Recuerda que puedes ayudar a que el Movimiento crezca y se expanda compartiendo nuestro viaje con todos!',
|
||||
enter_prog: 'Voy a entrar en Lista Programación',
|
||||
enter_prog_long: 'Si se cumplen los requisitos, entrará en el Programa, se le añadirá al Ticket y al correspondiente chat de grupo.<br>',
|
||||
collaborate: 'Colaboración',
|
||||
collaborate_long: 'Sigo trabajando con mis compañeros para llegar al día de la programación donde mi boleto será activado.',
|
||||
dream: 'Escribo mi sueño',
|
||||
dream_long: 'Escribe aquí el sueño por el que entraste en {sitename} y que deseas realizar. ¡Será compartido con todos los demás para soñar juntos!',
|
||||
dono: 'Regalo',
|
||||
dono_long: 'Hago mi regalo en la fecha de salida de mi nave',
|
||||
support: 'Apoyo el movimiento',
|
||||
support_long: 'Apoyo el movimiento aportando energía, participando y organizando Zoom, ayudando e informando a los recién llegados y continuando difundiendo la visión de {sitename}.',
|
||||
ricevo_dono: 'Recibo mi regalo y CELEBRO',
|
||||
ricevo_dono_long: '¡Hurra! <br> <fuerte> ¡Este movimiento es real y posible si lo hacemos funcionar todos juntos!',
|
||||
},
|
||||
dialog: {
|
||||
continue: 'Continuar',
|
||||
close: 'Cerrar',
|
||||
copyclipboard: 'Copiado al portapapeles',
|
||||
ok: 'Vale',
|
||||
yes: 'Sí',
|
||||
no: 'No',
|
||||
delete: 'Borrar',
|
||||
cancel: 'Cancelar',
|
||||
update: 'Actualiza',
|
||||
add: 'Aggrega',
|
||||
today: 'Hoy',
|
||||
book: 'Reserva',
|
||||
avanti: 'Adelante',
|
||||
indietro: 'Regresar',
|
||||
finish: 'Final',
|
||||
sendmsg: 'Envia Mensaje',
|
||||
sendonlymsg: 'Envia solo Mensaje',
|
||||
msg: {
|
||||
titledeleteTask: 'Borrar Tarea',
|
||||
deleteTask: 'Quieres borrar {mytodo}?',
|
||||
},
|
||||
},
|
||||
comp: {
|
||||
Conta: 'Conta',
|
||||
},
|
||||
db: {
|
||||
recupdated: 'Registro Actualizado',
|
||||
recfailed: 'Error durante el registro de actualización',
|
||||
reccanceled: 'Actualización cancelada Restaurar valor anterior',
|
||||
deleterecord: 'Eliminar registro',
|
||||
deletetherecord: '¿Eliminar el registro?',
|
||||
deletedrecord: 'Registro cancelado',
|
||||
recdelfailed: 'Error durante la eliminación del registro',
|
||||
duplicatedrecord: 'Registro Duplicado',
|
||||
recdupfailed: 'Error durante la duplicación de registros',
|
||||
},
|
||||
components: {
|
||||
authentication: {
|
||||
telegram: {
|
||||
open: 'Haga clic aquí para abrir el BOT Telegram y siga las instrucciones.',
|
||||
ifclose: 'Si no abre el Telegrama haciendo clic en el botón o lo ha borrado, vaya a Telegrama y busque "{botname}" en el icono de la lente, luego presione Start y siga las instrucciones.',
|
||||
openbot: 'Abres BOT Telegram',
|
||||
},
|
||||
login: {
|
||||
facebook: 'Facebook',
|
||||
},
|
||||
email_verification: {
|
||||
title: 'Crea una cuenta',
|
||||
introduce_email: 'ingrese su dirección de correo electrónico',
|
||||
email: 'Email',
|
||||
invalid_email: 'Tu correo electrónico no es válido',
|
||||
verify_email: 'Revisa tu email',
|
||||
go_login: 'Vuelve al Login',
|
||||
incorrect_input: 'Entrada correcta.',
|
||||
link_sent: 'Ahora lea su correo electrónico y confirme el registro',
|
||||
se_non_ricevo: 'Si no recibes el correo electrónico, intenta comprobar el spam o ponte en contacto con nosotros.',
|
||||
title_unsubscribe: 'Anular suscripción al boletín',
|
||||
title_unsubscribe_done: 'Suscripción completada con éxito',
|
||||
},
|
||||
},
|
||||
},
|
||||
fetch: {
|
||||
errore_generico: 'Error genérico',
|
||||
errore_server: 'No se puede acceder al Servidor. Inténtalo de nuevo, Gracias',
|
||||
error_doppiologin: 'Vuelva a iniciar sesión. Acceso abierto por otro dispositivo.',
|
||||
},
|
||||
user: {
|
||||
notregistered: 'Debe registrarse en el servicio antes de poder almacenar los datos',
|
||||
loggati: 'Usuario no ha iniciado sesión',
|
||||
},
|
||||
templemail: {
|
||||
subject: 'Objecto Email',
|
||||
testoheadermail: 'Encabezamiento Email',
|
||||
content: 'Contenido',
|
||||
img: 'Imagen 1',
|
||||
img2: 'Imagen 2',
|
||||
content2: 'Contenuto 2',
|
||||
options: 'Opciones',
|
||||
},
|
||||
dashboard: {
|
||||
data: 'Fecha',
|
||||
data_rich: 'Fecha Pedido',
|
||||
ritorno: 'Regreso',
|
||||
invitante: 'Invitando',
|
||||
num_tessitura: 'Numero di Tessitura:',
|
||||
attenzione: 'Atención',
|
||||
downline: 'Invitados',
|
||||
downnotreg: 'Invitados no Registrados',
|
||||
notreg: 'No Registrado',
|
||||
inv_attivi: 'Invitado con los 7 requisitos',
|
||||
numinvitati: 'Al menos 2 invitados',
|
||||
telefono_wa: 'Contacto en Whatsapp',
|
||||
sendnotification: 'Enviar notificación al destinatario del telegrama BOT',
|
||||
ricevuto_dono: '😍🎊 Usted recibió una invitación de regalo de {invitato} de {mittente} !',
|
||||
ricevuto_dono_invitante: '😍🎊 Usted recibió un invitando como regalo de {mittente} !',
|
||||
nessun_invitante: 'No invitando',
|
||||
nessun_invitato: 'No invitado',
|
||||
legenda_title: 'Haga clic en el nombre del huésped para ver el estado de sus requisitos',
|
||||
nave_in_partenza: 'que Sale el',
|
||||
nave_in_chiusura: 'Cierre Gift Chat',
|
||||
nave_partita: 'partió en',
|
||||
tutor: 'Tutor',
|
||||
traduttrici: 'Traduttrici',
|
||||
/* Cuando te conviertes en Mediador vienes contactado por un <strong>TUTOR</strong>, con él debes:<br><ol class="lista">' +
|
||||
'<li>Abrir tu <strong>Gift Chat</strong> (tu como propietario, y el Tutor ' +
|
||||
'como administrador) con este nombre:<br><strong>{nomenave}</strong></li>' +
|
||||
'<li>Haz clic en tu nombre en la chat en la parte de arriba-> Modifica -> Administradores -> "Agregar Administrador", selecciona el Tutor en el elenco.</li>' +
|
||||
'<li>Debes configurar la chat en modo que quien entre vea también los post precedentes (haz clic en el nombre en la chat arriba, haz clic en modificar, ' +
|
||||
'cambia la "cronología para los nuevos miembros" de oculto a visible.</li>' +
|
||||
'<li>Para encontrar el <strong>link de la Chat recién creada</strong>: haz clic en el nombre de la chat en la parte de arriba, haz clic sobre el Lápiz-> "Tipo de Grupo" -> "invita al grupo tràmite link", haz clic en "copiar link" y pégalo aquí abajo, sobre la casilla <strong>"Link Gift Chat"</strong></li>' +
|
||||
'<li>Envía el Link de la Gift Chat a todos los Donadores, haciendo clic en el botón aquí abajo.</li></ol>',
|
||||
*/
|
||||
|
||||
sonomediatore: 'Cuando seas un MEDIADOR serás contactado por <strong>TUTOR AYNI</strong> a través de un mensaje en el Chat <strong>AYNI BOT</strong>.',
|
||||
superchat: 'Nota: SOLO si tienes problemas de PAGO, o si quieres ser REEMPLAZADO, dos Tutores están esperando para ayudarte en el Chat:<br><a href="{link_superchat}" target="_blank">Entrar en el Chat de Regalos</a>.',
|
||||
sonodonatore: '<ol class="lista"><li>Cuando estás en esta posición, vendrás invitado (desde un mensaje en el Chat AYNI BOT) para hacer tu regalo. </li>'
|
||||
+ '<li> Tendrás <strong>3 días</strong> para hacer tu regalo, en la modalidad de pago que encontrarás escrita en el mensaje. <br></ol>',
|
||||
sonodonatore_seconda_tessitura: '<ol class="lista"><li>Aqui tu eres Mediador y también Donador, pero siendo tu segundo Tejido, no será necesario efectuar nuevamente tu regalo<br></ol>',
|
||||
controlla_donatori: 'Revise la lista de donantes',
|
||||
link_chat: 'Enlaces del Gift Chat Telegram',
|
||||
tragitto: 'Ruta',
|
||||
nave: 'Nave',
|
||||
data_partenza: 'Fecha<br>Salida',
|
||||
doni_inviati: 'Regalos<br>enviados',
|
||||
nome_dei_passaggi: 'Nombre de los pasajes',
|
||||
donatori: 'Donantes',
|
||||
donatore: 'Donante',
|
||||
mediatore: 'Mediador',
|
||||
sognatore: 'Soñador',
|
||||
sognatori: 'SOÑADOR',
|
||||
intermedio: 'INTERMEDIO',
|
||||
pos2: 'Interm. 2',
|
||||
pos3: 'Interm. 3',
|
||||
pos5: 'Interm. 5',
|
||||
pos6: 'Interm. 6',
|
||||
gift_chat: 'Para entrar en el Gift Chat, haz clic aquí',
|
||||
quando_eff_il_tuo_dono: 'Cuándo hacer el regalo',
|
||||
entra_in_gift_chat: 'Entra en el Gift Chat',
|
||||
invia_link_chat: 'Enviar enlace de chat de regalos a los donantes',
|
||||
inviare_msg_donatori: '5) Enviar mensaje a los donantes',
|
||||
msg_donatori_ok: 'Enviado mensaje a los donantes',
|
||||
metodi_disponibili: 'Métodos disponibles',
|
||||
importo: 'Cantidad',
|
||||
effettua_il_dono: 'Es hora de hacer tu regalo al Soñador<br>👉 {sognatore} 👈 !<br>'
|
||||
+ 'Enviar por medio de <a href="https://www.paypal.com" target="_blank">PayPal</a> a: <strong>{email}</strong><br>'
|
||||
+ '<strong><span style="color:red">ADVERTENCIA:</span> Elija la opción "ENVIAR A un AMIGO")</strong><br>',
|
||||
paypal_me: '<br>2) Método simplificado<br><a href="{link_payment}" target="_blank">Click directamente aquí</a><br>'
|
||||
+ 'abrirá PayPal con el importe y el destinatario ya establecido.<br>'
|
||||
+ 'Añadir como mensaje: <strong>Regalo</strong><br>'
|
||||
+ '<strong><span style="color:red">ADVERTENCIA:</span> NO MARCAR LA CAJA</fuerte>: Protección de compras por Paypal<br>'
|
||||
+ 'Si tienes alguna duda, mira el video de abajo para ver cómo:<br>'
|
||||
+ 'Por último, haga clic en "Enviar dinero ahora"',
|
||||
qui_compariranno_le_info: 'El día de la salida de la nave, la información del Soñador aparecerá',
|
||||
commento_al_sognatore: 'Escribe aquí un comentario para el Soñador:',
|
||||
posizione: 'Position',
|
||||
come_inviare_regalo_con_paypal: 'Cómo enviar el regalo a través de Paypal',
|
||||
ho_effettuato_il_dono: 'He realizado el Regalo',
|
||||
clicca_conferma_dono: 'Haz clic aquí para confirmar que has hecho tu regalo',
|
||||
fatto_dono: 'Ha confirmado que el regalo ha sido enviado',
|
||||
confermi_dono: 'Confirme que ha enviado su regalo de 33 €',
|
||||
dono_ricevuto: 'Tu regalo ha sido recibido!',
|
||||
dono_ricevuto_2: 'Recibido',
|
||||
dono_ricevuto_3: 'Ha llegado!',
|
||||
confermi_dono_ricevuto: 'Confirme que ha recibido el regalo de 33 € de {donatore}',
|
||||
confermi_dono_ricevuto_msg: 'Confermado que ha recibido el regalo de 33 € de {donatore}',
|
||||
msg_bot_conferma: '{donatore} ha confirmado que ha enviado su regalo de 33€ a {sognatore} (Commento: {commento})',
|
||||
ricevuto_dono_ok: 'Ha confirmado que el regalo ha sido recibido',
|
||||
entra_in_lavagna: 'Entra en tu tablero para ver los barcos que salen',
|
||||
doni_ricevuti: 'Regalos recibidos',
|
||||
doni_inviati_da_confermare: 'Regalos enviados (a confirmar)',
|
||||
doni_mancanti: 'Regalos que faltan',
|
||||
temporanea: 'Temporal',
|
||||
nave_provvisoria: 'Se le ha asignado un <strong>NAVE TEMPORAL</strong>.<br>Es normal que vea un cambio en la fecha de salida, debido a la actualización del ranking de pasajeros.',
|
||||
ritessitura: 'RETEJIDA',
|
||||
},
|
||||
reg: {
|
||||
volta: 'vez',
|
||||
volte: 'veces',
|
||||
registered: 'Registrado',
|
||||
contacted: 'Contacto',
|
||||
name_complete: 'Nombre Completo',
|
||||
num_invitati: 'Num.Invitados',
|
||||
is_in_whatsapp: 'En Whatsapp',
|
||||
is_in_telegram: 'En Telegram',
|
||||
cell_complete: 'Movíl',
|
||||
failed: 'Fallido',
|
||||
ind_order: 'Num',
|
||||
ipaddr: 'IP',
|
||||
verified_email: 'Correo electrónico verificado',
|
||||
reg_lista_prec: 'Por favor, introduzca el nombre, apellido y número de teléfono móvil que dejó en el pasado cuando se registró en el Chat! <br>De esta manera el sistema le reconocerá y mantendrá la posición de la lista.',
|
||||
nuove_registrazioni: 'Si se trata de un NUEVO registro, debe ponerse en contacto con la persona que le ha INVITADO, que le dejará el LINK CORRECTO para hacer el registro bajo él/ella',
|
||||
you: 'Tu',
|
||||
cancella_invitato: 'Eliminar Invitado',
|
||||
regala_invitato: 'Dar Invitado',
|
||||
regala_invitante: 'Dar Invitando',
|
||||
messaggio_invito: 'Mensaje de invitación',
|
||||
messaggio_invito_msg: 'Copie el mensaje que aparece a continuación y compártalo con todos aquellos con los que desee compartir este Movimiento !',
|
||||
videointro: 'Video Introduttivo',
|
||||
invitato_regalato: 'Invitato Regalado',
|
||||
invitante_regalato: 'Invitando Regalato',
|
||||
legenda: 'Legenda',
|
||||
aportador_solidario: 'Aportador Solidario',
|
||||
username_regala_invitato: 'Nombre de usuario del destinatario del regalo',
|
||||
aportador_solidario_nome_completo: 'A.S. Nombre',
|
||||
aportador_solidario_ind_order: 'A.S.Ind',
|
||||
reflink: 'Enlaces para compartir con tus amigos:',
|
||||
linkzoom: 'Enlace para ingresar en Zoom',
|
||||
page_title: 'Registro',
|
||||
made_gift: 'Don',
|
||||
note: 'Notas',
|
||||
incorso: 'Registro en curso...',
|
||||
richiesto: 'Campo requerido',
|
||||
email: 'Email',
|
||||
intcode_cell: 'Prefijo Int.',
|
||||
cell: 'Móvil Telegram',
|
||||
cellreg: 'Cellulare con cui ti eri registrato',
|
||||
nationality: 'Nacionalidad',
|
||||
email_paypal: 'Email Paypal',
|
||||
revolut: 'Revolut',
|
||||
link_payment: 'Enlaces Paypal.me',
|
||||
note_payment: 'Notas adicionales',
|
||||
country_pay: 'País del Pagos de destino',
|
||||
username_telegram: 'Usuario Telegram',
|
||||
telegram: 'Chat Telegram \'{botname}\'',
|
||||
teleg_id: 'Telegram ID',
|
||||
teleg_auth: 'Código de autorización',
|
||||
click_per_copiare: 'Haz click en él para copiarlo al portapapeles',
|
||||
copia_messaggio: 'Copiar mensaje',
|
||||
teleg_torna_sul_bot: '1) Copiar el código haciendo clic en el botón de arriba<br>2) volver a {botname} haciendo clic en 👇 y pegar (o escribir) el código',
|
||||
teleg_checkcode: 'Código Telegram',
|
||||
my_dream: 'Mi Sueño',
|
||||
saw_and_accepted: 'Condizioni',
|
||||
saw_zoom_presentation: 'Ha visto Zoom',
|
||||
manage_telegram: 'Gestori Telegram',
|
||||
paymenttype: 'Métodos de pago disponibles (Revolut)',
|
||||
selected: 'seleccionado',
|
||||
img: 'File image',
|
||||
date_reg: 'Fecha Reg.',
|
||||
deleted: 'Cancellato',
|
||||
requirement: 'Requisitos',
|
||||
perm: 'Permisos',
|
||||
username: 'Username (Apodo)',
|
||||
username_short: 'Username',
|
||||
name: 'Nombre',
|
||||
surname: 'Apellido',
|
||||
username_login: 'Nombre usuario o email',
|
||||
password: 'contraseña',
|
||||
repeatPassword: 'Repetir contraseña',
|
||||
terms: 'Acepto los términos por la privacidad',
|
||||
onlyadult: 'Confirmo que soy mayor de edad',
|
||||
submit: 'Registrarse',
|
||||
title_verif_reg: 'Verifica registro',
|
||||
reg_ok: 'Registro exitoso',
|
||||
verificato: 'Verificado',
|
||||
non_verificato: 'No Verificado',
|
||||
forgetpassword: '¿Olvidaste tu contraseña?',
|
||||
modificapassword: 'Cambiar la contraseña',
|
||||
err: {
|
||||
required: 'se requiere',
|
||||
email: 'Debe ser una email válida.',
|
||||
errore_generico: 'Por favor, rellene los campos correctamente',
|
||||
atleast: 'debe ser al menos largo',
|
||||
complexity: 'debe contener al menos 1 minúscula, 1 mayúscula, 1 dígito',
|
||||
notmore: 'no tiene que ser más largo que',
|
||||
char: 'caracteres',
|
||||
terms: 'Debes aceptar las condiciones, para continuar..',
|
||||
email_not_exist: 'El correo electrónico no está presente en el archivo, verifique si es correcto',
|
||||
duplicate_email: 'La email ya ha sido registrada',
|
||||
user_already_exist: 'El registro con estos datos (nombre, apellido y teléfono móvil) ya se ha llevado a cabo. Para acceder al sitio, haga clic en el botón INICIAR SESIÓN desde la Página de inicio.',
|
||||
user_extralist_not_found: 'Usuario en el archivo no encontrado, inserte el nombre, apellido y número de teléfono enviado previamente',
|
||||
user_not_this_aportador: 'Stai utilizzando un link di una persona diversa dal tuo invitato originale.',
|
||||
duplicate_username: 'El nombre de usuario ya ha sido utilizado',
|
||||
username_not_valid: 'Username not valid',
|
||||
aportador_not_exist: 'El nombre de usuario de la persona que lo invitó no está presente. Contactanos.',
|
||||
aportador_regalare_not_exist: 'Inserire l\'Username della persona che si vuole regalare l\'invitato',
|
||||
sameaspassword: 'Las contraseñas deben ser idénticas',
|
||||
},
|
||||
tips: {
|
||||
email: 'inserisci la tua email',
|
||||
username: 'username lunga almeno 6 caratteri',
|
||||
password: 'deve contenere 1 minuscola, 1 maiuscola e 1 cifra',
|
||||
repeatpassword: 'ripetere la password',
|
||||
|
||||
},
|
||||
},
|
||||
op: {
|
||||
qualification: 'Calificación',
|
||||
usertelegram: 'Username Telegram',
|
||||
disciplines: 'Disciplinas',
|
||||
certifications: 'Certificaciones',
|
||||
intro: 'Introducción',
|
||||
info: 'Biografia',
|
||||
webpage: 'Página web',
|
||||
days_working: 'Días laborables',
|
||||
facebook: 'Página de Facebook',
|
||||
},
|
||||
login: {
|
||||
page_title: 'Login',
|
||||
incorso: 'Login en curso',
|
||||
enter: 'Entra',
|
||||
esci: 'Salir',
|
||||
errato: 'Nombre de usuario, correo o contraseña incorrectos. inténtelo de nuevo',
|
||||
subaccount: 'Esta cuenta ha sido fusionada con su inicial. Ingresa usando el nombre de usuario (y el correo electrónico) de tu PRIMERA cuenta.',
|
||||
completato: 'Login realizado!',
|
||||
needlogin: 'Debes iniciar sesión antes de continuar',
|
||||
},
|
||||
reset: {
|
||||
title_reset_pwd: 'Restablece tu contraseña',
|
||||
send_reset_pwd: 'Enviar restablecer contraseña',
|
||||
incorso: 'Solicitar nueva Email...',
|
||||
email_sent: 'Email enviada',
|
||||
check_email: 'Revise su correo electrónico, recibirá un mensaje con un enlace para restablecer su contraseña. Este enlace, por razones de seguridad, expirará después de 4 horas.',
|
||||
title_update_pwd: 'Actualiza tu contraseña',
|
||||
update_password: 'Actualizar contraseña',
|
||||
},
|
||||
logout: {
|
||||
uscito: 'Estás desconectado',
|
||||
},
|
||||
errors: {
|
||||
graphql: {
|
||||
undefined: 'no definido',
|
||||
},
|
||||
},
|
||||
showbigmap: 'Mostrar el mapa más grande',
|
||||
todo: {
|
||||
titleprioritymenu: 'Prioridad:',
|
||||
inserttop: 'Ingrese una nueva Tarea arriba',
|
||||
insertbottom: 'Ingrese una nueva Tarea abajo',
|
||||
edit: 'Descripción Tarea:',
|
||||
completed: 'Ultimos Completados',
|
||||
usernotdefined: 'Atención, debes iniciar sesión para agregar una Tarea',
|
||||
start_date: 'Fecha inicio',
|
||||
status: 'Estado',
|
||||
completed_at: 'Fecha de finalización',
|
||||
expiring_at: 'Fecha de Caducidad',
|
||||
phase: 'Fase',
|
||||
},
|
||||
notification: {
|
||||
status: 'Estado',
|
||||
ask: 'Activar notificaciones',
|
||||
waitingconfirm: 'Confirmar la solicitud de notificación.',
|
||||
confirmed: 'Notificaciones activadas!',
|
||||
denied: 'Notificaciones deshabilitadas! Ten cuidado, así no verás llegar los mensajes. Rehabilítalos para verlos.',
|
||||
titlegranted: 'Notificaciones permitidas habilitadas!',
|
||||
statusnot: 'Estado Notificaciones',
|
||||
titledenied: 'Notificaciones permitidas deshabilitadas!',
|
||||
title_subscribed: 'Suscripción a FreePlanet.app!',
|
||||
subscribed: 'Ahora puedes recibir mensajes y notificaciones.',
|
||||
newVersionAvailable: 'Actualiza',
|
||||
},
|
||||
connection: 'Connection',
|
||||
proj: {
|
||||
newproj: 'Título Projecto',
|
||||
newsubproj: 'Título Sub-Projecto',
|
||||
insertbottom: 'Añadir nuevo Proyecto',
|
||||
longdescr: 'Descripción',
|
||||
hoursplanned: 'Horas Estimadas',
|
||||
hoursleft: 'Horas Restantes',
|
||||
hoursadded: 'Horas Adicional',
|
||||
hoursworked: 'Horas Trabajadas',
|
||||
begin_development: 'Comienzo desarrollo',
|
||||
begin_test: 'Comienzo Prueba',
|
||||
progresstask: 'Progresion',
|
||||
actualphase: 'Fase Actual',
|
||||
hoursweeky_plannedtowork: 'Horarios semanales programados',
|
||||
endwork_estimate: 'Fecha estimada de finalización',
|
||||
privacyread: 'Quien puede verlo:',
|
||||
privacywrite: 'Quien puede modificarlo:',
|
||||
totalphases: 'Fases totales',
|
||||
themecolor: 'Tema Colores',
|
||||
themebgcolor: 'Tema Colores Fondo',
|
||||
},
|
||||
where: {
|
||||
code: 'Id',
|
||||
whereicon: 'Icono',
|
||||
},
|
||||
col: {
|
||||
label: 'Etichetta',
|
||||
value: 'Valore',
|
||||
type: 'Tipo',
|
||||
},
|
||||
cal: {
|
||||
num: 'Número',
|
||||
booked: 'Reservado',
|
||||
booked_error: 'Reserva fallida. Intenta nuevamente más tarde',
|
||||
sendmsg_error: 'Mensaje no enviado Intenta nuevamente más tarde',
|
||||
sendmsg_sent: 'Mensaje enviado',
|
||||
booking: 'Reserva Evento',
|
||||
titlebooking: 'Reserva',
|
||||
modifybooking: 'Edita Reserva',
|
||||
cancelbooking: 'Cancelar Reserva',
|
||||
canceledbooking: 'Reserva Cancelada',
|
||||
cancelederrorbooking: 'Cancelación no realizada, intente nuevamente más tarde',
|
||||
cancelevent: 'Cancella Evento',
|
||||
canceledevent: 'Evento Cancellato',
|
||||
cancelederrorevent: 'Cancellazione Evento non effettuata, Riprovare',
|
||||
event: 'Evento',
|
||||
starttime: 'Inicio',
|
||||
nextevent: 'Próximo evento',
|
||||
readall: 'Lee todo',
|
||||
enddate: 'a',
|
||||
endtime: 'fin',
|
||||
duration: 'Duración',
|
||||
hours: 'Tiempo',
|
||||
when: 'Cuando',
|
||||
where: 'Donde',
|
||||
teacher: 'Dirigido por',
|
||||
enterdate: 'Ingresar la fecha',
|
||||
details: 'Detalles',
|
||||
infoextra: 'Fecha y Hora Extras:',
|
||||
alldayevent: 'Todo el dia',
|
||||
eventstartdatetime: 'Inicio',
|
||||
enterEndDateTime: 'final',
|
||||
selnumpeople: 'Partecipantes',
|
||||
selnumpeople_short: 'Num',
|
||||
msgbooking: 'Mensaje para enviar',
|
||||
showpdf: 'Ver PDF',
|
||||
bookingtextdefault: 'Reservo para',
|
||||
bookingtextdefault_of: 'de',
|
||||
data: 'Fecha',
|
||||
teachertitle: 'Maestro',
|
||||
peoplebooked: 'Reserv.',
|
||||
showlastschedule: 'Ver todo el calendario',
|
||||
},
|
||||
msgs: {
|
||||
message: 'Mensaje',
|
||||
messages: 'Mensajes',
|
||||
nomessage: 'Sin Mensaje',
|
||||
},
|
||||
event: {
|
||||
_id: 'id',
|
||||
typol: 'Typology',
|
||||
short_tit: 'Título Corto',
|
||||
title: 'Título',
|
||||
details: 'Detalles',
|
||||
bodytext: 'Texto del evento',
|
||||
dateTimeStart: 'Fecha de Inicio',
|
||||
dateTimeEnd: 'Fecha Final',
|
||||
bgcolor: 'Color de fondo',
|
||||
days: 'Días',
|
||||
icon: 'Icono',
|
||||
img: 'Nombre Imagen',
|
||||
img_small: 'Imagen Pequeña',
|
||||
where: 'Dónde',
|
||||
contribtype: 'Tipo de Contribución',
|
||||
price: 'Precio',
|
||||
askinfo: 'Solicitar información',
|
||||
showpage: 'Ver página',
|
||||
infoafterprice: 'notas después del precio',
|
||||
teacher: 'Profesor', // teacherid
|
||||
teacher2: 'Profesor2', // teacherid2
|
||||
infoextra: 'InfoExtra',
|
||||
linkpage: 'Sitio WEb',
|
||||
linkpdf: 'Enlace ad un PDF',
|
||||
nobookable: 'No Reservable',
|
||||
news: 'Novedad',
|
||||
dupId: 'Id Duplicado',
|
||||
canceled: 'Cancelado',
|
||||
deleted: 'Eliminado',
|
||||
duplicate: 'Duplica',
|
||||
notempty: 'El campo no puede estar vacío.',
|
||||
modified: 'Modificado',
|
||||
showinhome: 'Mostrar en la Home',
|
||||
showinnewsletter: 'Mostrar en el boletín',
|
||||
color: 'Titulo Color',
|
||||
},
|
||||
disc: {
|
||||
typol_code: 'Código Tipologìa',
|
||||
order: 'Clasificación',
|
||||
},
|
||||
newsletter: {
|
||||
title: '¿Desea recibir nuestro boletín informativo?',
|
||||
name: 'Tu Nombre',
|
||||
surname: 'Tu Apellido',
|
||||
namehint: 'Nombre',
|
||||
surnamehint: 'Apellido',
|
||||
email: 'tu correo',
|
||||
submit: 'Subscribete',
|
||||
reset: 'Reiniciar',
|
||||
typesomething: 'Llenar el campo',
|
||||
acceptlicense: 'Acepto la licencia y los términos',
|
||||
license: 'Necesitas aceptar la licencia y los términos primero',
|
||||
submitted: 'Subscrito',
|
||||
menu: 'Newsletter1',
|
||||
template: 'Plantillas de Email',
|
||||
sendemail: 'Enviar',
|
||||
check: 'Verificar',
|
||||
sent: 'Ya eniado',
|
||||
mailinglist: 'Lista de contactos',
|
||||
settings: 'Configuración',
|
||||
serversettings: 'Servidor',
|
||||
others: 'Otro',
|
||||
templemail: 'Plantilla de Email',
|
||||
datetoSent: 'Fecha y Ora de Envio',
|
||||
activate: 'Activado',
|
||||
numemail_tot: 'Email Total',
|
||||
numemail_sent: 'Email Enviados',
|
||||
datestartJob: 'Inicio Envio',
|
||||
datefinishJob: 'Fin Envio',
|
||||
lastemailsent_Job: 'Ùltimo enviado',
|
||||
starting_job: 'Comenzó a enviar',
|
||||
finish_job: 'Envio terminado',
|
||||
processing_job: 'En curso',
|
||||
error_job: 'Info Error',
|
||||
statesub: 'Subscribir',
|
||||
wrongerr: 'Email invalide',
|
||||
},
|
||||
privacy_policy: 'Política de privacidad',
|
||||
cookies: 'Utilizamos cookies para un mejor rendimiento web.',
|
||||
},
|
||||
};
|
||||
|
||||
export default msg_es;
|
||||
@@ -1,626 +0,0 @@
|
||||
const msg_fr = {
|
||||
fr: {
|
||||
words: {
|
||||
da: 'du',
|
||||
a: 'au',
|
||||
},
|
||||
home: {
|
||||
guida: 'Guide',
|
||||
guida_passopasso: 'Guide pas-à-pas',
|
||||
},
|
||||
grid: {
|
||||
editvalues: 'Changer les valeurs',
|
||||
addrecord: 'Ajouter une ligne',
|
||||
showprevedit: 'Afficher les événements passés',
|
||||
nodata: 'Pas de données',
|
||||
columns: 'Colonnes',
|
||||
tableslist: 'Tables',
|
||||
},
|
||||
otherpages: {
|
||||
sito_offline: 'Site en cours de mise à jour',
|
||||
modifprof: 'Modifier le profil',
|
||||
biografia: 'Biografia',
|
||||
error404: 'error404',
|
||||
error404def: 'error404def',
|
||||
admin: {
|
||||
menu: 'Administration',
|
||||
eventlist: 'Vos réservations',
|
||||
usereventlist: 'Réservation Utilisateur',
|
||||
userlist: 'Liste d\'utilisateurs',
|
||||
tableslist: 'Liste des tables',
|
||||
navi: 'Navires',
|
||||
newsletter: 'Newsletter',
|
||||
pages: 'Pages',
|
||||
media: 'Médias',
|
||||
},
|
||||
manage: {
|
||||
menu: 'Gérer',
|
||||
manager: 'Directeur',
|
||||
nessuno: 'Aucun',
|
||||
},
|
||||
messages: {
|
||||
menu: 'Vos messages',
|
||||
},
|
||||
},
|
||||
sendmsg: {
|
||||
write: 'écrit',
|
||||
},
|
||||
stat: {
|
||||
imbarcati: 'Embarqués',
|
||||
imbarcati_weekly: 'Embarqués hebdomadaire',
|
||||
imbarcati_in_attesa: 'Embarqués en attente',
|
||||
qualificati: 'Qualifié avec au moins 2 invités',
|
||||
requisiti: 'Utilisateurs ayant les 7 exigences',
|
||||
zoom: 'Participer à Zoom',
|
||||
modalita_pagamento: 'Insertion des modes de paiement',
|
||||
accepted: 'Lignes directrices acceptées + vidéo',
|
||||
dream: 'Ils ont écrit le Rêve',
|
||||
email_not_verif: 'Courriel non vérifié',
|
||||
telegram_non_attivi: 'Telegram non actif',
|
||||
telegram_pendenti: 'Telegram Pendants',
|
||||
reg_daily: 'Enregistrements quotidiennes',
|
||||
reg_weekly: 'Enregistrements hebdomadaires',
|
||||
reg_total: 'Total des enregistrements',
|
||||
},
|
||||
steps: {
|
||||
nuovo_imbarco: 'Réserver un autre voyage',
|
||||
vuoi_entrare_nuova_nave: 'Vous souhaitez aider le Mouvement à avancer et avez l\'intention d\'entrer dans un autre navire ?<br>En faisant un nouveau don de 33€, vous pourrez faire un autre voyage et avoir une autre opportunité de devenir un Rêveur !<br>'
|
||||
+ 'Si vous confirmez, vous serez ajouté à la liste d\'attente pour le prochain embarquement.',
|
||||
vuoi_cancellare_imbarco: 'Êtes-vous sûr de vouloir annuler cet embarquement sur le navire AYNI ?',
|
||||
completed: 'Complétée',
|
||||
passi_su: '{passo} étapes sur {totpassi}',
|
||||
video_intro_1: '1. Bienvenue à l\'{sitename}',
|
||||
video_intro_2: '2. Naissance de l\'{sitename}',
|
||||
read_guidelines: 'J\'ai lu et j\'accepte ces conditions écrites ci-dessus',
|
||||
saw_video_intro: 'Je déclare avoir vu la vidéo',
|
||||
paymenttype: 'Méthodes de paiement (Revolut)',
|
||||
paymenttype_long: 'Choisissez <strong>au moins 2 modes de paiement</strong>, pour échanger des cadeaux.<br><br>Les modes de paiement <strong>sont : <ul><li><strong>Revolut</strong> : la carte prépayée Revolut avec IBAN anglais (hors UE) complètement gratuite, plus gratuite et facile à utiliser. Disponible l\'application pour mobile.</li><li><strong>Paypal</strong>car c\'est un système très populaire dans toute l\'Europe (le transfert est gratuit) et vous pouvez connecter des cartes prépayées, des cartes de crédit et un compte bancaire <strong> SANS COMMISSIONS</strong>. De cette façon, vous n\'aurez pas à partager vos numéros de carte ou de c/c mais seulement l\'email que vous avez utilisé lors de l\'inscription sur Paypal. Disponible l\'application pour votre téléphone portable.</li></ul>',
|
||||
paymenttype_paypal: 'Comment ouvrir un compte Paypal (en 2 minutes)Comment ouvrir un compte Paypal (en 2 minutes)',
|
||||
paymenttype_paypal_carta_conto: 'Comment associer une carte de crédit/débit ou un compte bancaire sur PayPal',
|
||||
paymenttype_paypal_link: 'Ouverture d\'un compte avec Paypal',
|
||||
paymenttype_revolut: 'Comment ouvrir un compte chez Revolut (en 2 minutes)',
|
||||
paymenttype_revolut_link: 'Ouvrir un compte auprès de Revolut',
|
||||
entra_zoom: 'Enter Zoom',
|
||||
linee_guida: "J'accepte les lignes directrices",
|
||||
video_intro: 'Je vois la vidéo',
|
||||
zoom: 'A participé à au moins 1 Zoom',
|
||||
zoom_si_partecipato: 'Vous avez participé à au moins 1 Zoom',
|
||||
zoom_partecipa: 'A participé à au moins 1 Zoom',
|
||||
zoom_no_partecipato: "Vous n'avez pas encore participé à un Zoom (il est obligatoire d'entrer)",
|
||||
zoom_long: 'Vous devez participer à au moins un Zoom, mais il est recommandé de participer au mouvement de manière plus active. <br><br><strong>En participant aux Zooms, le personnel enregistrera votre présence et vous serez activé. </strong>',
|
||||
zoom_what: "Tutoriels d'installation de Zoom Cloud Meeting",
|
||||
// sharemovement_devi_invitare_almeno_2: 'Vous n\'avez toujours pas invité 2 personnes',
|
||||
// sharemovement_hai_invitato: 'Vous avez invité au moins deux personnes',
|
||||
sharemovement_invitati_attivi_si: 'Vous avez au moins 2 personnes invitées Active',
|
||||
sharemovement_invitati_attivi_no: '<strong>Note:</strong>Les personnes que vous avez invitées, pour être <strong>Actif</strong>, doivent avoir <strong>complété les 7 premières exigences</strong> (voir votre <strong>Lavagna</strong> pour voir ce qu\'il leur manque)',
|
||||
sharemovement: 'Invitation au moins 2 personnes',
|
||||
sharemovement_long: 'Partagez le mouvement {sitename} et invitez-les à participer aux zooms de bienvenue pour faire partie de cette grande famille 😄 .<br>.',
|
||||
inv_attivi_long: '',
|
||||
enter_prog_completa_requisiti: 'Remplissez toutes les conditions pour figurer sur la liste d\'embarquement.',
|
||||
enter_prog_requisiti_ok: 'Vous avez rempli les 7 conditions pour figurer sur la liste d\'embarquement.<br>',
|
||||
enter_prog_msg: 'Vous recevrez un message dans les prochains jours dès que votre bateau sera prêt !',
|
||||
enter_prog_msg_2: '',
|
||||
enter_nave_9req_ok: 'FÉLICITATIONS ! Vous avez suivi les 9 étapes du guide ! Merci d\'avoir aidé {sitename} à se développer ! <br> Vous pourrez bientôt partir avec votre Voyage, en faisant votre don et en continuant vers le Rêveur.',
|
||||
enter_nave_9req_ko: 'N\'oubliez pas que vous pouvez aider le Mouvement à grandir et à s\'étendre en partageant notre voyage avec tout le monde !',
|
||||
enter_prog: 'Je vais dans la Liste des Programmation',
|
||||
enter_prog_long: 'Si vous remplissez les conditions requises pour entrer dans le programme, vous serez ajouté au billet et au chat de groupe correspondant<br>',
|
||||
collaborate: 'Collaboration',
|
||||
collaborate_long: 'Je continue à travailler avec mes compagnons pour arriver au jour où mon navire prendra la mer.',
|
||||
dream: 'J\'écris mon rêve',
|
||||
dream_long: 'Ecrivez ici le Rêve pour lequel vous êtes entré à {sitename} et que vous souhaitez réaliser.<br>Il sera partagé avec tous les autres pour rêver ensemble !',
|
||||
dono: 'Cadeau',
|
||||
dono_long: 'Je fais mon cadeau à la date de départ de mon nef',
|
||||
support: 'Je soutiens le mouvement',
|
||||
support_long: 'Je soutiens le mouvement en apportant de l\'énergie, en participant et en organisant Zoom, en aidant et en informant les nouveaux arrivants et en continuant à diffuser la vision d\'{sitename}.',
|
||||
ricevo_dono: 'Je reçois mon cadeau et je CÉLÈBRE',
|
||||
ricevo_dono_long: 'Hourra ! !!! <br><strong> CE MOUVEMENT EST RÉEL ET POSSIBLE SI NOUS TRAVAILLONS TOUS ENSEMBLE !',
|
||||
},
|
||||
dialog: {
|
||||
continue: 'Continuer',
|
||||
close: 'Fermer',
|
||||
copyclipboard: 'Copié dans le presse-papiers',
|
||||
ok: 'Bien',
|
||||
yes: 'Oui',
|
||||
no: 'Non',
|
||||
delete: 'Supprimer',
|
||||
update: 'mises à jour',
|
||||
add: 'Ajouter',
|
||||
cancel: 'annuler',
|
||||
today: 'Aujourd\'hui',
|
||||
book: 'Réserve',
|
||||
avanti: 'Allez-y',
|
||||
indietro: 'en arrière',
|
||||
finish: 'Fin',
|
||||
sendmsg: 'envoyer msg',
|
||||
sendonlymsg: 'envoyer seul un msg',
|
||||
msg: {
|
||||
titledeleteTask: 'Supprimer la tâche',
|
||||
deleteTask: 'Voulez-vous supprimer {mytodo}?',
|
||||
},
|
||||
},
|
||||
comp: {
|
||||
Conta: 'Conta',
|
||||
},
|
||||
db: {
|
||||
recupdated: 'Enregistrement mis à jour',
|
||||
recfailed: 'Erreur lors de la mise à jour',
|
||||
reccanceled: 'Mise à jour annulée. Restaurer la valeur précédente',
|
||||
deleterecord: 'Supprimer l\'enregistrement',
|
||||
deletetherecord: 'Supprimer l\'enregistrement?',
|
||||
deletedrecord: 'Enregistrement annulé',
|
||||
recdelfailed: 'Erreur lors de la suppression de l\'enregistrement',
|
||||
duplicatedrecord: 'Enregistrement en double',
|
||||
recdupfailed: 'Erreur lors de la duplication des enregistrements',
|
||||
},
|
||||
components: {
|
||||
authentication: {
|
||||
telegram: {
|
||||
open: 'Cliquez ici pour ouvrir le télégramme BOT et suivez les instructions',
|
||||
openbot: 'Ouvre BOT Telegram',
|
||||
},
|
||||
login: {
|
||||
facebook: 'Facebook',
|
||||
},
|
||||
email_verification: {
|
||||
title: 'Créer un compte',
|
||||
introduce_email: 'entrez votre adresse email',
|
||||
email: 'Email',
|
||||
invalid_email: 'Votre email n\'est pas valide',
|
||||
verify_email: 'Vérifiez votre email',
|
||||
go_login: 'Retour à la connexion',
|
||||
incorrect_input: 'Entrée correcte.',
|
||||
link_sent: 'Maintenant, lisez votre email et confirmez votre inscription',
|
||||
se_non_ricevo: 'Si vous ne recevez pas le courriel, essayez de vérifier dans le spam, ou contactez nous',
|
||||
title_unsubscribe: 'Se désabonner de la newsletter',
|
||||
title_unsubscribe_done: 'Abonnement terminé avec succès',
|
||||
},
|
||||
},
|
||||
},
|
||||
fetch: {
|
||||
errore_generico: 'Erreur générique',
|
||||
errore_server: 'Le serveur n\'est pas accessible. Essayez encore, Merci',
|
||||
error_doppiologin: 'Re-connexion Accès ouvert par un autre appareil.',
|
||||
},
|
||||
user: {
|
||||
notregistered: 'Vous devez vous inscrire auprès du service avant de pouvoir stocker les données.',
|
||||
loggati: 'L\'utilisateur n\'est pas connecté',
|
||||
},
|
||||
templemail: {
|
||||
subject: 'Objet Email',
|
||||
testoheadermail: 'en-tête de courrier électronique',
|
||||
content: 'Contenu',
|
||||
img: 'Image 1',
|
||||
img2: 'Image 2',
|
||||
content2: 'Contenu 2',
|
||||
options: 'Options',
|
||||
},
|
||||
dashboard: {
|
||||
data: 'Date',
|
||||
data_rich: 'Date demandée',
|
||||
ritorno: 'Retour',
|
||||
invitante: 'Invitation',
|
||||
num_tessitura: 'Numero di Tessitura:',
|
||||
attenzione: 'Attention',
|
||||
downline: 'invités',
|
||||
downnotreg: 'Invités non enregistrés',
|
||||
notreg: 'Non enregistré',
|
||||
inv_attivi: 'Invité avec les 7 exigences',
|
||||
numinvitati: 'Au moins 2 invités',
|
||||
telefono_wa: 'Contact sur Whatsapp',
|
||||
sendnotification: 'Envoyer la notification au destinataire par télégramme BOT',
|
||||
ricevuto_dono: '😍🎊 Vous avez reçu une invitation-cadeau de {invitato} de {mittente} !',
|
||||
ricevuto_dono_invitante: '😍🎊 Vous avez reçu une invitation-cadeau de {mittente} !',
|
||||
nessun_invitante: 'Pas d\'invitation',
|
||||
nessun_invitato: 'Non_invité',
|
||||
legenda_title: 'Cliquez sur le nom de l\'invité pour voir l\'état de ses besoins',
|
||||
nave_in_partenza: 'part le',
|
||||
nave_in_chiusura: 'Clôture Gift Chat',
|
||||
nave_partita: 'parti sur',
|
||||
tutor: 'Tuteur',
|
||||
/* Quand vous devenez Médiateur vous êtes contacté par un <strong>TUTEUR</strong>, avec lui vous devez:<br><ol class="lista">' +
|
||||
'<li>Ouvrir votre <strong>Gift Chat</strong> (vous comme propriétaire et le Tuteur ' +
|
||||
'comme administrateur) avec ce nom:<br><strong>{nomenave}</strong></li>' +
|
||||
'<li>Cliquez sur le nom du chat en haut -> Modifiez -> Administrateurs -> "Ajoutez Administrateur", sélectionner le Tuteur dans la liste.</li>' +
|
||||
'<li>Vous devez configurer le chat de façon que la personne qui entre puisse également voir les post précédents (cliquez sur le nom du chat en haut, cliquez sur modifiez, ' +
|
||||
'changez la "chronologie pour les nouveaux membres" de cachée à visibile.</li>' +
|
||||
'<li>Pour trouver le <strong>link du Chat à peine crée</strong>: cliquez sur le nom du chat en haut, cliquez sur le Crayon -> "Type de Groupe" -> "invitez dans le groupe à travers le link", cliquez sur "copiez link" et collez-le ci-dessous, dans la case <strong>"Link Gift Chat"</strong></li>' +
|
||||
'<li>Envoyez le Link de la Gift Chat à tous les Donateurs, en cliquant sur le boutton ci-dessous .</li></ol>',
|
||||
*/
|
||||
sonomediatore: 'Lorsque vous êtes un MEDIATEUR, vous serez contacté par <strong>TUTOR AYNI</strong> via un message sur le Chat <strong>AYNI BOT</strong>.',
|
||||
superchat: 'Note : SEULEMENT si vous avez des problèmes de PAIEMENT, ou si vous voulez être REMPLACÉ, deux tuteurs vous attendent pour vous aider sur le Chat:<br><a href="{link_superchat}" target="_blank">Get into Gift Chat</a>.',
|
||||
sonodonatore: '<ol class="lista"><li>Quand vous êtes dans cette position, vous serez invité pour faire votre cadeau</li>'
|
||||
+ '<li>Vous aurez <strong>3 jours</strong> pour faire votre cadeau.<br></ol>',
|
||||
sonodonatore_seconda_tessitura: '<ol class="liste"><li>Ici vous êtes Médiateur et également Donateur, mais étant le deuxième Tissage, vous n’aurez pas besoin d’éffectuer de nouveau votre don<br></ol>',
|
||||
controlla_donatori: 'Vérifiez la liste des donateurs',
|
||||
link_chat: 'Link de Gift Chat Telegram',
|
||||
tragitto: 'Itinéraire',
|
||||
nave: 'Navire',
|
||||
data_partenza: 'Date<br>de Départ',
|
||||
doni_inviati: 'Regalo<br>Envoyés',
|
||||
nome_dei_passaggi: 'Nom<br>des passagers',
|
||||
donatori: 'Donateurs',
|
||||
donatore: 'Donateur',
|
||||
mediatore: 'Médiateur',
|
||||
sognatore: 'Rêveur',
|
||||
sognatori: 'RÊVEURS',
|
||||
intermedio: 'INTERMEDIAIRE',
|
||||
pos2: 'Interm. 2',
|
||||
pos3: 'Interm. 3',
|
||||
pos5: 'Interm. 5',
|
||||
pos6: 'Interm. 6',
|
||||
gift_chat: 'Pour entrer dans le Gift Chat, cliquez ici',
|
||||
quando_eff_il_tuo_dono: 'Quand faire le Regalo',
|
||||
entra_in_gift_chat: 'Entrez dans le "Gift Chat"',
|
||||
invia_link_chat: 'Envoyer le lien du Chat de cadeaux aux donateurs',
|
||||
inviare_msg_donatori: '5) Envoyer un message aux donateurs',
|
||||
msg_donatori_ok: 'Message envoyé aux donateurs',
|
||||
metodi_disponibili: 'Méthodes disponibles',
|
||||
importo: 'Montant',
|
||||
effettua_il_dono: 'Il est temps de faire votre propre regalo au Rêveur<br>👉 {sognatore} 👈 '
|
||||
+ 'Envoyez via <a href="https://www.paypal.com" target="_blank">PayPal</a> à : <strong>{email}</strong><br>'
|
||||
+ '<strong><span style="color:red">ATTENTION:</span> Choisissez l\'option "SENDING TO A FRIEND"</strong><br>',
|
||||
paypal_me: '<br>2) Méthode simplifiée<br><a href="{link_payment}" target="_blank">Cliquez directement ici</a><br>'
|
||||
+ 'ouvrira PayPal avec le montant et le destinataire déjà définis.<br>'
|
||||
+ 'Ajouter comme message : <strong>Regalo</strong><br>'
|
||||
+ '<strong><span style="color:red">WARNING:</span> NE COCHEZ PAS LA BOITE</strong> : Protection des achats par Paypal<br>'
|
||||
+ 'Si vous avez des doutes, regardez la vidéo ci-dessous pour voir comment:<br>'
|
||||
+ 'Enfin, cliquez sur "Envoyer de l\'argent maintenant"',
|
||||
qui_compariranno_le_info: 'Le jour du départ du navire, les informations du Dreamer apparaîtront',
|
||||
commento_al_sognatore: 'Ecrivez ici un commentaire pour le Rêveur:',
|
||||
posizione: 'Localisation',
|
||||
come_inviare_regalo_con_paypal: 'Comment envoyer le regalo via Paypal',
|
||||
ho_effettuato_il_dono: 'J\'ai effectué le Regalo',
|
||||
clicca_conferma_dono: 'Cliquez ici pour confirmer que vous avez fait votre regalo',
|
||||
fatto_dono: 'Vous avez confirmé que le Regalo a été envoyé',
|
||||
confermi_dono: 'Confirmez que vous avez envoyé votre Regalo de 33€',
|
||||
dono_ricevuto: 'Votre regalo a été reçu!',
|
||||
dono_ricevuto_2: 'Reçu',
|
||||
dono_ricevuto_3: 'Arrivé!',
|
||||
confermi_dono_ricevuto: 'Confirmez que vous avez reçu le regalo de 33 $ de {donatore}',
|
||||
confermi_dono_ricevuto_msg: 'Confirme la réception du regalo de 33€ de {donatore}',
|
||||
msg_bot_conferma: '{donatore} a confirmé qu\'il avait envoyé son cadeau de 33 € a {sognatore} (Commento: {commento})',
|
||||
ricevuto_dono_ok: 'Vous avez confirmé que le cadeau a été reçu',
|
||||
entra_in_lavagna: 'Montez sur votre tableau noir pour voir les navires au départ',
|
||||
doni_ricevuti: 'Regalo reçus',
|
||||
doni_inviati_da_confermare: 'Regalo envoyés (à confirmer)',
|
||||
doni_mancanti: 'Regalo manquants',
|
||||
temporanea: 'Temporaire',
|
||||
nave_provvisoria: 'On vous a attribué une <strong>NAVE TEMPORAIRE</strong>.<br>Il est normal que vous constatiez un changement de date de départ, en raison de la mise à jour du classement des passagers.',
|
||||
ritessitura: 'ÉCRITURE',
|
||||
},
|
||||
reg: {
|
||||
volta: 'fois',
|
||||
volte: 'fois',
|
||||
registered: 'Registrato',
|
||||
contacted: 'Contattato',
|
||||
name_complete: 'Nome Completo',
|
||||
num_invitati: 'Num.Invitati',
|
||||
is_in_whatsapp: 'In Whatsapp',
|
||||
is_in_telegram: 'In Telegram',
|
||||
cell_complete: 'Cellulare',
|
||||
failed: 'Fallito',
|
||||
ind_order: 'Num',
|
||||
ipaddr: 'IP',
|
||||
verified_email: 'Email Verified',
|
||||
reg_lista_prec: 'Veuillez entrer le prénom, le nom et le numéro de téléphone portable que vous avez laissé lors de votre inscription à la Chat ! <br>De cette façon, le système vous reconnaîtra et conservera la position de la liste',
|
||||
new_registrations: "S'il s'agit d'une NOUVELLE inscription, vous devez contacter la personne qui vous a INVITÉE, qui vous laissera le LIEN CORRECT pour effectuer l'inscription sous sa responsabilité",
|
||||
you: 'Vous',
|
||||
cancella_invitato: 'Supprimer invité',
|
||||
regala_invitato: 'Invited_gift',
|
||||
regala_invitante: 'présente invitant',
|
||||
messaggio_invito: "Message d'invitation",
|
||||
messaggio_invito_msg: 'Envoyez ce message à tous ceux à qui vous voulez partager ce Mouvement !',
|
||||
videointro: "Vidéo d'introduction",
|
||||
invitato_regalato: 'Cadeau invité',
|
||||
invitante_regalato: 'Cadeau Invitè',
|
||||
legenda: 'Légende',
|
||||
aportador_solidario: 'Qui vous a invité',
|
||||
username_regala_invitato: 'Nom d\'utilisateur du destinataire du cadeau',
|
||||
aportador_solidario_nome_completo: 'A.S. Nom',
|
||||
aportador_solidario_ind_order: 'A.S.Ind',
|
||||
reflink: 'Des liens à partager avec vos invités :',
|
||||
linkzoom: 'Lien pour entrer en Zoom',
|
||||
made_gift: 'Doné',
|
||||
note: 'Notes',
|
||||
incorso: 'Registrazione in corso...',
|
||||
richiesto: 'Champ obligatoire',
|
||||
email: 'Email',
|
||||
intcode_cell: 'Préfixe int.',
|
||||
cell: 'Téléphone Telegram',
|
||||
cellreg: 'Cellulare con cui ti eri registrato',
|
||||
nationality: 'Nationalité',
|
||||
email_paypal: 'Email Paypal',
|
||||
revolut: 'Revolut',
|
||||
link_payment: 'Liens Paypal.me',
|
||||
note_payment: 'Notes complémentaires',
|
||||
country_pay: 'Pays de destination Paiements',
|
||||
username_telegram: 'Nom d\'utilisateur du Telegram',
|
||||
telegram: 'Chat Telegram \'{botname}\'',
|
||||
teleg_id: 'Telegram ID',
|
||||
teleg_auth: 'Code d\'autorisation',
|
||||
click_per_copiare: 'Cliquez dessus pour le copier dans le presse-papiers',
|
||||
copia_messaggio: 'Copier le message',
|
||||
teleg_torna_sul_bot: '1) Copiez le code en cliquant sur le bouton ci-dessus<br>2) retournez à {botname} en cliquant sur 👇 et collez (ou écrivez) le code',
|
||||
teleg_checkcode: 'Code du Telegram',
|
||||
my_dream: 'Mon rêve',
|
||||
saw_and_accepted: 'Condizioni',
|
||||
saw_zoom_presentation: 'Ha visto Zoom',
|
||||
manage_telegram: 'Gestori Telegram',
|
||||
paymenttype: 'Méthodes de paiement disponibles (Revolut)',
|
||||
selected: 'sélectionné',
|
||||
img: 'Fichier image',
|
||||
date_reg: 'Date Inscript.',
|
||||
requirement: 'Exigences',
|
||||
perm: 'Autorisations',
|
||||
username: 'Username (Surnom)',
|
||||
username_short: 'Username',
|
||||
name: 'Nom',
|
||||
surname: 'Prénom',
|
||||
username_login: 'Nom d\'utilisateur ou email',
|
||||
password: 'mot de passe',
|
||||
repeatPassword: 'Répéter le mot de passe',
|
||||
terms: "J'accepte les conditions de confidentialité",
|
||||
onlyadult: 'Je confirme que je suis majeur',
|
||||
submit: "S'inscrire",
|
||||
title_verif_reg: "Vérifier l'inscription",
|
||||
reg_ok: 'Enregistrement réussi',
|
||||
verificato: 'Vérifié',
|
||||
non_verificato: 'Non vérifié',
|
||||
forgetpassword: 'Vous avez oublié votre mot de passe?',
|
||||
modificapassword: 'Changer le mot de passe',
|
||||
err: {
|
||||
required: 'c\'est nécessaire',
|
||||
email: 'Ce doit être un email valide.',
|
||||
errore_generico: 'S\'il vous plaît remplir les champs correctement',
|
||||
atleast: 'ça doit être au moins long',
|
||||
complexity: 'doit contenir au moins 1 minuscule, 1 majuscule, 1 chiffre',
|
||||
notmore: 'il ne doit pas être plus long que',
|
||||
char: 'caractères',
|
||||
terms: 'Vous devez accepter les conditions, pour continuer..',
|
||||
email_not_exist: 'L\'email n\'est pas présent dans l\'archive, vérifiez s\'il est correct',
|
||||
duplicate_email: 'L\'email a déjà été enregistré',
|
||||
user_already_exist: 'L\'enregistrement avec ces données (nom, prénom et téléphone portable) a déjà été effectué. Pour accéder au site, cliquez sur le bouton CONNEXION de la page d\'accueil.',
|
||||
user_extralist_not_found: 'Utilisateur dans les archives introuvable, insérez le nom, le prénom et le numéro de téléphone portable envoyés précédemment',
|
||||
user_not_this_aportador: 'Stai utilizzando un link di una persona diversa dal tuo invitato originale.',
|
||||
duplicate_username: 'Le nom d\'utilisateur a déjà été utilisé',
|
||||
username_not_valid: 'Username not valid',
|
||||
aportador_not_exist: 'Le nom d\'utilisateur de la personne qui vous a invité n\'est pas présent. Contactez-nous.',
|
||||
aportador_regalare_not_exist: 'Inserire l\'Username della persona che si vuole regalare l\'invitato',
|
||||
sameaspassword: 'Les mots de passe doivent être identiques',
|
||||
},
|
||||
tips: {
|
||||
email: 'inserisci la tua email',
|
||||
username: 'username lunga almeno 6 caratteri',
|
||||
password: 'deve contenere 1 minuscola, 1 maiuscola e 1 cifra',
|
||||
repeatpassword: 'ripetere la password',
|
||||
},
|
||||
},
|
||||
op: {
|
||||
qualification: 'Qualification',
|
||||
usertelegram: 'Username Telegram',
|
||||
disciplines: 'Disciplines',
|
||||
certifications: 'Certifications',
|
||||
intro: 'Introduction',
|
||||
info: 'Biographie',
|
||||
webpage: 'Page Web',
|
||||
days_working: 'Jours ouvrés',
|
||||
facebook: 'Page Facebook',
|
||||
},
|
||||
login: {
|
||||
page_title: 'Login',
|
||||
incorso: 'Connexion en cours',
|
||||
enter: 'Entrez',
|
||||
esci: 'Sortir',
|
||||
errato: "Nom d'utilisateur, email ou mot de passe incorrect. réessayer",
|
||||
subaccount: "Ce compte a été fusionné avec votre compte initial. Connectez-vous en utilisant le nom d'utilisateur (et l'adresse électronique) du compte FIRST.",
|
||||
completato: 'Connexion faite!',
|
||||
needlogin: 'Vous devez vous connecter avant de continuer',
|
||||
},
|
||||
reset: {
|
||||
title_reset_pwd: 'Réinitialiser votre mot de passe',
|
||||
send_reset_pwd: 'Envoyer un mot de passe de réinitialisation',
|
||||
incorso: 'Demander un nouvel email...',
|
||||
email_sent: 'Email envoyé',
|
||||
token_scaduto: 'Il token è scaduto oppure è stato già usato. Ripetere la procedura di reset password',
|
||||
check_email: 'Vérifiez votre email, vous recevrez un message avec un lien pour réinitialiser votre mot de passe. Ce lien, pour des raisons de sécurité, expirera au bout de 4 heures.',
|
||||
title_update_pwd: 'Mettez à jour votre mot de passe',
|
||||
update_password: 'Mettre à jour le mot de passe',
|
||||
},
|
||||
logout: {
|
||||
uscito: 'Vous êtes déconnecté',
|
||||
},
|
||||
errors: {
|
||||
graphql: {
|
||||
undefined: 'non défini',
|
||||
},
|
||||
},
|
||||
showbigmap: 'Montrer la plus grande carte',
|
||||
todo: {
|
||||
titleprioritymenu: 'Prioridad:',
|
||||
inserttop: 'Ingrese una nueva Tarea arriba',
|
||||
insertbottom: 'Ingrese una nueva Tarea abajo',
|
||||
edit: 'Descripción Tarea:',
|
||||
completed: 'Ultimos Completados',
|
||||
usernotdefined: 'Atención, debes iniciar sesión para agregar una Tarea',
|
||||
start_date: 'Fecha inicio',
|
||||
status: 'Estado',
|
||||
completed_at: 'Fecha de finalización',
|
||||
expiring_at: 'Fecha de Caducidad',
|
||||
phase: 'Fase',
|
||||
},
|
||||
notification: {
|
||||
status: 'Etat',
|
||||
ask: 'Activer les notifications',
|
||||
waitingconfirm: 'Confirmer la demande de notification.',
|
||||
confirmed: 'Notifications activées!',
|
||||
denied: 'Notifications désactivées! Attention, vous ne verrez pas les messages arriver. Réhabilitez-les pour les voir.',
|
||||
titlegranted: 'Notifications activées activées!',
|
||||
statusnot: 'Notifications d\'état',
|
||||
titledenied: 'Notifications autorisées désactivées!',
|
||||
title_subscribed: 'Abonnement au Site Web!',
|
||||
subscribed: 'Maintenant, vous pouvez recevoir des messages et des notifications.',
|
||||
newVersionAvailable: 'Mise à jour',
|
||||
},
|
||||
connection: 'Connexion',
|
||||
proj: {
|
||||
newproj: 'Título Projecto',
|
||||
newsubproj: 'Título Sub-Projecto',
|
||||
insertbottom: 'Añadir nuevo Proyecto',
|
||||
longdescr: 'Descripción',
|
||||
hoursplanned: 'Horas Estimadas',
|
||||
hoursleft: 'Horas Restantes',
|
||||
hoursadded: 'Horas Adicional',
|
||||
hoursworked: 'Horas Trabajadas',
|
||||
begin_development: 'Comienzo desarrollo',
|
||||
begin_test: 'Comienzo Prueba',
|
||||
progresstask: 'Progresion',
|
||||
actualphase: 'Fase Actual',
|
||||
hoursweeky_plannedtowork: 'Horarios semanales programados',
|
||||
endwork_estimate: 'Fecha estimada de finalización',
|
||||
privacyread: 'Quien puede verlo:',
|
||||
privacywrite: 'Quien puede modificarlo:',
|
||||
totalphases: 'Fases totales',
|
||||
themecolor: 'Tema Colores',
|
||||
themebgcolor: 'Tema Colores Fondo',
|
||||
},
|
||||
where: {
|
||||
code: 'Id',
|
||||
whereicon: 'icône',
|
||||
},
|
||||
col: {
|
||||
label: 'Etichetta',
|
||||
value: 'Valore',
|
||||
type: 'Tipo',
|
||||
},
|
||||
cal: {
|
||||
num: 'Nombre',
|
||||
booked: 'Réservé',
|
||||
booked_error: 'La réservation a échoué. Réessayez plus tard',
|
||||
sendmsg_error: 'Message non envoyé. Réessayez plus tard',
|
||||
sendmsg_sent: 'Message envoyé',
|
||||
booking: 'Réserver l\'événement',
|
||||
titlebooking: 'Réservation',
|
||||
modifybooking: 'changement de réservation',
|
||||
cancelbooking: 'Annuler la réservation',
|
||||
canceledbooking: 'Réservation annulée',
|
||||
cancelederrorbooking: 'Annulation non effectuée, réessayez plus tard',
|
||||
cancelevent: 'Cancella Evento',
|
||||
canceledevent: 'Evento Cancellato',
|
||||
cancelederrorevent: 'Cancellazione Evento non effettuata, Riprovare',
|
||||
event: 'événement',
|
||||
starttime: 'Accueil',
|
||||
nextevent: 'Prochain événement',
|
||||
readall: 'Tout lire',
|
||||
enddate: 'au',
|
||||
endtime: 'fin',
|
||||
duration: 'Durée',
|
||||
hours: 'Le temps',
|
||||
when: 'Quand',
|
||||
where: 'Où',
|
||||
teacher: 'Dirigé par',
|
||||
enterdate: 'Entrez la date',
|
||||
details: 'Les détails',
|
||||
infoextra: 'Extras Date et heure:',
|
||||
alldayevent: 'Toute la journée',
|
||||
eventstartdatetime: 'début',
|
||||
enterEndDateTime: 'final',
|
||||
selnumpeople: 'Participants',
|
||||
selnumpeople_short: 'Num',
|
||||
msgbooking: 'Message à envoyer',
|
||||
showpdf: 'Voir PDF',
|
||||
bookingtextdefault: 'Je réserve',
|
||||
bookingtextdefault_of: 'du',
|
||||
data: 'Date',
|
||||
teachertitle: 'Professeur',
|
||||
peoplebooked: 'Réserv.',
|
||||
showlastschedule: 'Voir tout le calendrier',
|
||||
},
|
||||
msgs: {
|
||||
message: 'Message',
|
||||
messages: 'Messages',
|
||||
nomessage: 'Pas de message',
|
||||
},
|
||||
event: {
|
||||
_id: 'id',
|
||||
typol: 'Typologie',
|
||||
short_tit: 'Titre abrégé\'',
|
||||
title: 'Titre',
|
||||
details: 'Détails',
|
||||
bodytext: 'texte de l\'événement',
|
||||
dateTimeStart: 'Data Initiale',
|
||||
dateTimeEnd: 'Date de fin',
|
||||
bgcolor: 'Couleur de fond',
|
||||
days: 'Journées',
|
||||
icon: 'Icône',
|
||||
img: 'Image du nom de fichier',
|
||||
img_small: 'Image petite',
|
||||
where: 'Où',
|
||||
contribtype: 'Type de contribution',
|
||||
price: 'Prix',
|
||||
askinfo: 'Demander des infos',
|
||||
showpage: 'Voir la page',
|
||||
infoafterprice: 'Notes après le prix',
|
||||
teacher: 'Enseignant', // teacherid
|
||||
teacher2: 'Enseignant2', // teacherid2
|
||||
infoextra: 'Extra Info',
|
||||
linkpage: 'Site Web',
|
||||
linkpdf: 'Lien vers un PDF',
|
||||
nobookable: 'non réservable',
|
||||
news: 'Nouvelles',
|
||||
dupId: 'Id Double',
|
||||
canceled: 'Annulé',
|
||||
deleted: 'Supprimé',
|
||||
duplicate: 'Duplique',
|
||||
notempty: 'Le champ ne peut pas être vide',
|
||||
modified: 'modifié',
|
||||
showinhome: 'Montrer à la Home',
|
||||
showinnewsletter: 'Afficher dans la Newsletter',
|
||||
color: 'Couleur du titre',
|
||||
},
|
||||
disc: {
|
||||
typol_code: 'Type de code',
|
||||
order: 'Ordre',
|
||||
},
|
||||
newsletter: {
|
||||
title: 'Souhaitez-vous recevoir notre newsletter?',
|
||||
name: 'Ton nom',
|
||||
surname: 'Tu prénom',
|
||||
namehint: 'Nom',
|
||||
surnamehint: 'Prénom',
|
||||
email: 'votre e-mail',
|
||||
submit: 'S\'abonner',
|
||||
reset: 'Redémarrer',
|
||||
typesomething: 'Remplir le champ',
|
||||
acceptlicense: 'J\'accepte la licence et les termes',
|
||||
license: 'Vous devez d\'abord accepter la licence et les termes',
|
||||
submitted: 'Abonné',
|
||||
menu: 'Newsletter1',
|
||||
template: 'Modeles Email',
|
||||
sendemail: 'Envoyer',
|
||||
check: 'Chèque',
|
||||
sent: 'Dèjà envoyé',
|
||||
mailinglist: 'Leste de contacts',
|
||||
settings: 'Paramèters',
|
||||
serversettings: 'Serveur',
|
||||
others: 'Autres',
|
||||
templemail: 'Model Email',
|
||||
datetoSent: 'Date et heure d\'envoi',
|
||||
activate: 'Activé',
|
||||
numemail_tot: 'Total Email',
|
||||
numemail_sent: 'Emails envoyés',
|
||||
datestartJob: 'Inizio Invio',
|
||||
datefinishJob: 'Fin envoi',
|
||||
lastemailsent_Job: 'Dernier envoyé',
|
||||
starting_job: 'Envoyé',
|
||||
finish_job: 'Envoy Terminé',
|
||||
processing_job: 'travaux en cours',
|
||||
error_job: 'info d\'erreur',
|
||||
statesub: 'Abonné',
|
||||
wrongerr: 'Email inválido',
|
||||
},
|
||||
privacy_policy: 'Politique de confidentialité',
|
||||
cookies: 'Nous utilisons des cookies pour améliorer les performances Web.',
|
||||
},
|
||||
};
|
||||
|
||||
export default msg_fr;
|
||||
@@ -1,663 +0,0 @@
|
||||
const msg_it = {
|
||||
it: {
|
||||
words: {
|
||||
da: 'dal',
|
||||
a: 'al',
|
||||
},
|
||||
home: {
|
||||
guida: 'Guida',
|
||||
guida_passopasso: 'Guida Passo Passo',
|
||||
},
|
||||
grid: {
|
||||
editvalues: 'Modifica Valori',
|
||||
addrecord: 'Aggiungi Riga',
|
||||
showprevedit: 'Mostra Eventi Passati',
|
||||
columns: 'Colonne',
|
||||
tableslist: 'Tabelle',
|
||||
nodata: 'Nessun Dato',
|
||||
},
|
||||
gallery: {
|
||||
author_username: 'Utente',
|
||||
title: 'Titolo',
|
||||
directory: 'Directory',
|
||||
list: 'Lista',
|
||||
},
|
||||
profile: {
|
||||
chisei: 'Chi Sei? Raccontaci di te:',
|
||||
iltuoimpegno: 'Quale è stato il tuo impegno per salvare il pianeta ad oggi?',
|
||||
come_aiutare: 'Cosa vorresti fare per aiutare il pianeta?',
|
||||
},
|
||||
otherpages: {
|
||||
sito_offline: 'Sito in Aggiornamento',
|
||||
modifprof: 'Modifica Profilo',
|
||||
biografia: 'Biografia',
|
||||
update: 'Aggiornamento in Corso...',
|
||||
error404: 'error404',
|
||||
error404def: 'error404def',
|
||||
admin: {
|
||||
menu: 'Amministrazione',
|
||||
eventlist: 'Le tue Prenotazioni',
|
||||
usereventlist: 'Prenotazioni Utenti',
|
||||
userlist: 'Lista Utenti',
|
||||
zoomlist: 'Calendario Zoom',
|
||||
extralist: 'Lista Extra',
|
||||
dbop: 'Db Operations',
|
||||
tableslist: 'Lista Tabelle',
|
||||
navi: 'Navi',
|
||||
listadoni_navi: 'Lista Doni Navi',
|
||||
newsletter: 'Newsletter',
|
||||
pages: 'Pagine',
|
||||
media: 'Media',
|
||||
gallery: 'Gallerie',
|
||||
listaflotte: 'Flotte',
|
||||
},
|
||||
manage: {
|
||||
menu: 'Gestione',
|
||||
manager: 'Gestore',
|
||||
nessuno: 'Nessuno',
|
||||
sendpushnotif: 'Invia Msg Push',
|
||||
},
|
||||
messages: {
|
||||
menu: 'I tuoi Messaggi',
|
||||
},
|
||||
},
|
||||
sendmsg: {
|
||||
write: 'scrive',
|
||||
},
|
||||
stat: {
|
||||
imbarcati: 'Imbarcati',
|
||||
imbarcati_weekly: 'Imbarcati Settimanali',
|
||||
imbarcati_in_attesa: 'Imbarcati in Attesa',
|
||||
qualificati: 'Qualificati con almeno 2 invitati',
|
||||
requisiti: 'Utenti con i 7 Requisiti',
|
||||
zoom: 'Partecipato in Zoom',
|
||||
modalita_pagamento: 'Modalità di Pagamento Inseriti',
|
||||
accepted: 'Accettato Linee Guida + Video',
|
||||
dream: 'Hanno scritto il Sogno',
|
||||
email_not_verif: 'Email non Verificate',
|
||||
telegram_non_attivi: 'Telegram Non Attivi',
|
||||
telegram_pendenti: 'Telegram Pendenti',
|
||||
reg_daily: 'Registrazioni Giornaliere',
|
||||
reg_weekly: 'Registrazioni Settimanali',
|
||||
reg_total: 'Registrazioni Totali',
|
||||
},
|
||||
steps: {
|
||||
nuovo_imbarco: 'Prenota un altro Viaggio',
|
||||
vuoi_entrare_nuova_nave: 'Desideri aiutare il Movimento ad avanzare e intendi entrare in un\'altra Nave?<br>Effettuando un Nuovo Dono di 33€, potrai percorrere un altro viaggio ed avere un\'altra opportunità di diventare Sognatore!<br>'
|
||||
+ 'Se confermi verrai aggiunto alla lista d\'attesa per i prossimi imbarchi.',
|
||||
inserisci_invitante: 'Inserisci qui sotto l\'username della persona che vuoi aiutare, donandoti come suo Invitato:',
|
||||
vuoi_cancellare_imbarco: 'Sicuro di voler cancellare questo imbarco in Nave AYNI?',
|
||||
sei_stato_aggiunto: 'Sei stato aggiunto alla lista d\'imbarco! Nei prossimi giorni verrai aggiunto ad una Nuova Nave in partenza!',
|
||||
completed: 'Completati',
|
||||
passi_su: '{passo} passi su {totpassi}',
|
||||
video_intro_1: '1. Benvenuti in {sitename}',
|
||||
video_intro_2: '2. Nascita di {sitename}',
|
||||
read_guidelines: 'Ho letto ed Accetto queste condizioni scritte qui sopra',
|
||||
saw_video_intro: 'Dichiaro di aver visto i Video',
|
||||
paymenttype: 'Modalità di Pagamento (Revolut)',
|
||||
paymenttype_long: 'I <strong>metodi di Pagamento sono: <ul><li><strong style="font-size: 1.25rem; color: green; background-color: yellow;">Revolut</strong> (ALTAMENTE CONSIGLIATA):<br>la Carta Prepagata Revolut con IBAN Inglese, trasferimenti gratuiti, più libera e semplice da utilizzare. Disponibile l\'app per il cellulare.</li><br><li><strong>Paypal</strong> perchè è un sistema molto diffuso in tutta Europa (il trasferimento e gratuito) e si possono collegare le carte prepagate, le carte di credito e il conto corrente <strong>SENZA COMMISSIONI</strong>. In questo modo non dovrai condividere i numeri delle tue carte o del c/c ma solo la mail che avrai usato in fase di iscrizione su Paypal. Disponibile l\'app per il cellulare. <br><br><span style="font-style: italic; font-size: 1rem; color:red;"><strong>NOTA BENE</strong>: Ultimamente Paypal sta avendo problemi perchè tendono a bloccare i soldi sul conto del Sognatore per 6 mesi per controlli, quindi da utilizzare SOLO se impossiblitati ad aprire un conto con Revolut.</span></li></ul>',
|
||||
paymenttype_long2: 'Si consiglia di avere a disposizione <strong>almeno 2 Modalità di Pagamento</strong>, per scambiarsi i doni.',
|
||||
paymenttype_paypal: 'Come Aprire un conto Paypal (in 2 minuti)',
|
||||
paymenttype_paypal_carta_conto: 'Come associare una carta di Credito/Debito o un Conto Bancario su PayPal',
|
||||
paymenttype_paypal_link: 'Apri il Conto con Paypal',
|
||||
paymenttype_revolut: 'Come Aprire il conto con Revolut (in 2 minuti)',
|
||||
paymenttype_revolut_link: 'Apri il Conto con Revolut',
|
||||
entra_zoom: 'Entra in Zoom',
|
||||
linee_guida: 'Accetto le Linee Guida',
|
||||
video_intro: 'Vedo il Video',
|
||||
zoom: 'Partecipo ad almeno 1 Video-Conferenza',
|
||||
zoom_si_partecipato: 'Hai partecipato ad almeno 1 Video-Conferenza',
|
||||
zoom_partecipa: 'Partecipato ad almeno 1 Zoom',
|
||||
zoom_no_partecipato: 'Attualmente non hai ancora partecipato ad una Video-Conferenza (è un requisito per poter entrare)',
|
||||
zoom_long: 'Si richiede di partecipare ad almeno 1 Video-Conferenza, ma se sentirai che questi icontri sono anche un modo per condividere e stare in compagnia, allora potrai partecipare tutte le volte che lo desideri.<br><br><strong><br>Partecipando alle Video-Conferenze di Benvenuto lo Staff registrerà la vostra presenza <strong>ENTRO 24 ORE</strong>.</strong>',
|
||||
zoom_what: 'Tutorial come installare Zoom Cloud Meeting',
|
||||
// sharemovement_devi_invitare_almeno_2: 'Ancora non hai invitato 2 persone',
|
||||
// sharemovement_hai_invitato: 'Hai invitato almeno 2 persone',
|
||||
sharemovement_invitati_attivi_si: 'Hai almeno 2 persone invitate Attive',
|
||||
sharemovement_invitati_attivi_no: '<strong>Nota Bene:</strong>Le persone che hai invitato, per essere <strong>Attive</strong>, devono aver <strong>completato tutti i primi 7 Requisiti</strong> (vedi la tua <strong>Lavagna</strong> per capire cosa gli manca)',
|
||||
sharemovement: 'Condivido il Movimento',
|
||||
sharemovement_long: 'Condividi il Movimento {sitename} e invitali a partecipare agli Zoom di Benvenuto per entrare a far parte di questa grande Famiglia 😄 .<br>',
|
||||
inv_attivi_long: '',
|
||||
enter_prog_completa_requisiti: 'Completa tutti i requisiti richiesti, per poter entrare nella Lista d\'imbarco.',
|
||||
enter_prog_requisiti_ok: 'Hai completato tutti i 7 requisiti per entrare nella Lista d\'Imbarco.<br>',
|
||||
enter_prog_msg: 'Riceverai un messaggio nei prossimi giorni su AYNI BOT, appena la tua Nave sarà pronta!',
|
||||
enter_prog_msg_2: 'Ricorda che più persone inviti e più sali di Posizione, per accedere alla prossima Nave!',
|
||||
enter_nave_9req_ok: 'COMPLIMENTI! Hai Completato TUTTI i 9 Passi della Guida! Grazie per Aiutare {sitename} ad Espandersi!<br>Potrai molto presto partire con il tuo Viaggio, facendo il tuo dono e proseguendo verso il Sognatore',
|
||||
enter_nave_9req_ko: 'Ricorda che puoi Aiutare a far Crescere ed Espandere il Movimento, Condividendo con chiunque questo nostro viaggio!',
|
||||
enter_prog: 'Entro nella Lista d\'Imbarco',
|
||||
enter_prog_long: 'Ricorda che puoi Aiutare a far Crescere ed Espandere il Movimento, Condividendo con chiunque questo nostro viaggio!<br>',
|
||||
collaborate: 'Collaborazione',
|
||||
collaborate_long: 'Continuo a collaborare con i miei compagni per arrivare al giorno in cui salperà la mia Nave.',
|
||||
dream: 'Scrivo il mio Sogno',
|
||||
dream_long: 'Scrivi qui il Sogno per il quale sei entrato in {sitename} e che desideri realizzare.<br>Sarà condiviso a quello di tutti gli altri per sognare insieme !',
|
||||
dono: 'Dono',
|
||||
dono_long: 'Faccio il mio dono nella data di partenza della mia Nave',
|
||||
support: 'Sostengo il movimento',
|
||||
support_long: 'Sostengo il movimento portando Energia, partecipando e organizzando Zoom, aiutando e informando i nuovi arrivati continuando a diffondere la visione di {sitename}',
|
||||
ricevo_dono: 'Ricevo il mio dono e CELEBRO',
|
||||
ricevo_dono_long: 'Evviva!!!<br><strong>QUESTO MOVIMENTO È REALE E POSSIBILE SE LO FACCIAMO FUNZIONARE TUTTI INSIEME !</strong>',
|
||||
},
|
||||
dialog: {
|
||||
continue: 'Continuare',
|
||||
close: 'Chiudi',
|
||||
copyclipboard: 'Copiato negli appunti',
|
||||
ok: 'Ok',
|
||||
yes: 'Si',
|
||||
no: 'No',
|
||||
delete: 'Elimina',
|
||||
cancel: 'Annulla',
|
||||
update: 'Aggiorna',
|
||||
add: 'Aggiungi',
|
||||
today: 'Oggi',
|
||||
book: 'Prenota',
|
||||
avanti: 'Avanti',
|
||||
indietro: 'Indietro',
|
||||
finish: 'Fine',
|
||||
sendmsg: 'Invia Messaggio',
|
||||
sendonlymsg: 'Invia solo un Msg',
|
||||
msg: {
|
||||
titledeleteTask: 'Elimina Task',
|
||||
deleteTask: 'Vuoi Eliminare {mytodo}?',
|
||||
},
|
||||
},
|
||||
comp: {
|
||||
Conta: 'Conta',
|
||||
},
|
||||
db: {
|
||||
recupdated: 'Record Aggiornato',
|
||||
recfailed: 'Errore durante aggiornamento Record',
|
||||
reccanceled: 'Annullato Aggiornamento. Ripristinato valore precendente',
|
||||
deleterecord: 'Elimina Record',
|
||||
deletetherecord: 'Eliminare il Record?',
|
||||
deletedrecord: 'Record Cancellato',
|
||||
recdelfailed: 'Errore durante la cancellazione del Record',
|
||||
duplicatedrecord: 'Record Duplicato',
|
||||
recdupfailed: 'Errore durante la duplicazione del Record',
|
||||
},
|
||||
components: {
|
||||
authentication: {
|
||||
telegram: {
|
||||
open: 'Clicca qui per aprire il BOT Telegram e segui le istruzioni',
|
||||
ifclose: 'Se non si apre Telegram cliccando sul bottone oppure l\'avevi eliminato, vai su Telegram e cerca \'{botname}\' dall\'icona della lente, poi premi Start e segui le istruzioni.',
|
||||
openbot: 'Apri \'{botname}\' su Telegram',
|
||||
},
|
||||
login: {
|
||||
facebook: 'Facebook',
|
||||
},
|
||||
email_verification: {
|
||||
title: 'Inizia la tua registrazione',
|
||||
introduce_email: 'inserisci la tua email',
|
||||
email: 'Email',
|
||||
invalid_email: 'La tua email è invalida',
|
||||
verify_email: 'Verifica la tua email',
|
||||
go_login: 'Torna al Login',
|
||||
incorrect_input: 'Inserimento incorretto.',
|
||||
link_sent: 'Apri la tua casella di posta, trova la email "Confermare la Registrazione: {sitename}" e clicca su "Verifica Registrazione"',
|
||||
se_non_ricevo: 'Se non ricevi la email, prova a controllare nella spam, oppure contattaci',
|
||||
title_unsubscribe: 'Disiscrizione alla newsletter',
|
||||
title_unsubscribe_done: 'Disiscrizione completata correttamente',
|
||||
},
|
||||
},
|
||||
},
|
||||
fetch: {
|
||||
errore_generico: 'Errore Generico',
|
||||
errore_server: 'Impossibile accedere al Server. Riprovare Grazie',
|
||||
error_doppiologin: 'Rieseguire il Login. Accesso aperto da un altro dispositivo.',
|
||||
},
|
||||
user: {
|
||||
notregistered: 'Devi registrarti al servizio prima di porter memorizzare i dati',
|
||||
loggati: 'Utente non loggato',
|
||||
},
|
||||
templemail: {
|
||||
subject: 'Oggetto Email',
|
||||
testoheadermail: 'Intestazione Email',
|
||||
content: 'Contenuto',
|
||||
img: 'Immagine 1',
|
||||
img2: 'Immagine 2',
|
||||
content2: 'Contenuto 2',
|
||||
options: 'Opzioni',
|
||||
},
|
||||
dashboard: {
|
||||
data: 'Data',
|
||||
data_rich: 'Data Rich.',
|
||||
ritorno: 'Ritorno',
|
||||
invitante: 'Invitante',
|
||||
dono_da_effettuare: 'Dono che dovrai effettuare',
|
||||
num_tessitura: 'Numero di Tessitura:',
|
||||
attenzione: 'Attenzione',
|
||||
downline: 'Invitati',
|
||||
downnotreg: 'Invitati non Registrati',
|
||||
notreg: 'Non Registrato',
|
||||
inv_attivi: 'Invitati con i 7 Requisiti',
|
||||
numinvitati: 'Almeno 2 Invitati',
|
||||
telefono_wa: 'Contatta su Whatsapp',
|
||||
sendnotification: 'Invia Notifica al Destinatario su Telegram BOT',
|
||||
ricevuto_dono: '😍🎊 Hai ricevuto in Regalo un Invitato {invitato} da parte di {mittente} !',
|
||||
ricevuto_dono_invitante: '😍🎊 Hai ricevuto in Regalo un Invitante da parte di {mittente} !',
|
||||
nessun_invitante: 'Nessun Invitante',
|
||||
nessun_invitato: 'Nessun Invitato',
|
||||
legenda_title: 'Clicca sul nome dell\'invitato per vedere lo stato dei suoi Requisiti.',
|
||||
nave_in_partenza: 'La Nave salperà il',
|
||||
nave_in_chiusura: 'Chiusura Gift Chat',
|
||||
nave_partita: 'Partita il',
|
||||
tutor: 'Tutor',
|
||||
traduttrici: 'Traduttrici',
|
||||
/* sonomediatore: 'Quando diventi Meditore vieni contattato da un <strong>TUTOR</strong>, con lui devi:<br><ol class="lista">' +
|
||||
'<li>Aprire la tua <strong>Gift Chat</strong> (tu come proprietario e il Tutor ' +
|
||||
'come amministratore) con questo nome:<br><strong>{nomenave}</strong></li>' +
|
||||
'<li>Clicca sul nome della chat in alto -> Modifica -> Amministratori -> "Aggiungi Amministratore", seleziona il Tutor nell’elenco.</li>' +
|
||||
'<li>Devi configurare la chat in modo che chi entra vede anche i post precedenti (clicca sul nome della chat in alto, clicca su modifica, ' +
|
||||
'cambia la "cronologia per i nuovi membri" da nascosta a visibile.</li>' +
|
||||
'<li>Per trovare il <strong>link della Chat appena creata</strong>: clicca sul nome della chat in alto, clicca sulla Matita -> "Tipo di Gruppo" -> "invita nel gruppo tramite link", clicca su "copia link" e incollalo qui sotto, sulla casella <strong>"Link Gift Chat"</strong></li>' +
|
||||
'<li>Invia il Link della Gift Chat a tutti i Donatori, cliccando sul bottone qui sotto.</li></ol>',
|
||||
*/
|
||||
sonomediatore: 'Quando sei MEDIATORE verrai contattato dai <strong>TUTOR AYNI</strong> tramite un messaggio sulla Chat <strong>AYNI BOT</strong> !',
|
||||
superchat: 'Nota Bene: Non inviarci la ricevuta, non ci occorre. Attendi il messaggio di conferma da parte del Sognatore (sulla Chat AYNI BOT).<br>SOLO se hai problemi di PAGAMENTO, o ti manca la conferma del SOGNATORE (dopo aver atteso almeno 12 ore) o se vuoi essere SOSTITUITO, due Tutor ti aspettano per aiutarti sulla Chat:<br><a href="{link_superchat}" target="_blank">Entra nella Gift Chat</a>',
|
||||
sonodonatore: '<ol class="lista"><li>Quando sei in questa posizione, verrai invitato (tramite un messaggio su <strong>AYNI BOT</strong>) ad effettuare il Dono. Non sarà più necessario entrare in una Chat.</li>'
|
||||
+ '<li><strong>Avrai tempo 3 giorni per fare il Regalo</strong> (poi verrai sostituito), nella modalità di pagamento che troverai scritto sul messaggio in <strong>AYNI BOT</strong> .<br></ol>',
|
||||
sonodonatore_seconda_tessitura: '<ol class="lista"><li>Qui tu sei Mediatore e anche Donatore, ma essendo la seconda Tessitura (il Ritorno), non avrai bisogno di effettuare nuovamente il dono<br></ol>',
|
||||
controlla_donatori: 'Controlla Lista Donatori',
|
||||
link_chat: 'Link della Gift Chat Telegram',
|
||||
tragitto: 'Tragitto',
|
||||
nave: 'Nave',
|
||||
data_partenza: 'Data<br>Partenza',
|
||||
doni_inviati: 'Doni',
|
||||
nome_dei_passaggi: 'Nome<br>dei Passaggi',
|
||||
donatori: 'Donatori',
|
||||
donatore: 'Donatore',
|
||||
mediatore: 'Mediatore',
|
||||
sognatore: 'Sognatore',
|
||||
sognatori: 'SOGNATORI',
|
||||
intermedio: 'INTERMEDIO',
|
||||
pos2: 'Interm. 2',
|
||||
pos3: 'Interm. 3',
|
||||
pos5: 'Interm. 5',
|
||||
pos6: 'Interm. 6',
|
||||
gift_chat: 'Per entrare nella Gift Chat, clicca qui',
|
||||
quando_eff_il_tuo_dono: 'Quando effettuare il Regalo',
|
||||
entra_in_gift_chat: 'Entra in Gift Chat',
|
||||
invia_link_chat: 'Invia il Link della Gift Chat ai Donatori',
|
||||
inviare_msg_donatori: '5) Inviare messaggio ai Donatori',
|
||||
msg_donatori_ok: 'Inviato messaggio ai Donatori',
|
||||
metodi_disponibili: 'Metodi Disponibili',
|
||||
importo: 'Importo',
|
||||
effettua_il_dono: 'E\' arrivato il momento di Effettuare il proprio Dono al Sognatore<br><strong>👉 {sognatore} 👈</strong> !<br><br>'
|
||||
+ 'Inviare tramite <a href="https://www.paypal.com/" target="_blank">PayPal</a> a: <strong>{email}</strong><br>'
|
||||
+ 'Aggiungere come messaggio la dicitura: <strong>Regalo</strong><br>'
|
||||
+ '<strong><span style="color:red">ATTENZIONE IMPORTANTE:</span> Scegliere l\'opzione</strong><BR>"INVIO DI DENARO A UN AMICO"<br>Cosi non pagherai delle commissioni extra!',
|
||||
paypal_me: '<br>2) Metodo Semplificato<br><a href="{link_payment}" target="_blank">Cliccare direttamente qui</a><br>'
|
||||
+ 'si aprirà PayPal con l\'importo e il destinatario gia impostato.<br>'
|
||||
+ 'Aggiungere come messaggio la dicitura: <strong>Regalo</strong><br>'
|
||||
+ '<strong><span style="color:red">ATTENZIONE IMPORTANTE:</span> TOGLIERE LA SPUNTA SU</strong>: Devi pagare beni o servizi? ... (Protezione acquisti Paypal)<br>Altrimenti pagherai inutilmente delle commissioni extra.<br>'
|
||||
+ 'Se hai dubbi, guarda il video qui sotto per vedere come fare:<br>'
|
||||
+ 'infine Clicca su “Invia Denaro ora”.',
|
||||
commento_al_sognatore: 'Scrivi qui un commento per il Sognatore:',
|
||||
qui_compariranno_le_info: 'Nel giorno della partenza della Nave, compariranno le informazioni del Sognatore',
|
||||
posizione: 'Posizione',
|
||||
come_inviare_regalo_con_paypal: 'Come Inviare il regalo tramite Paypal',
|
||||
ho_effettuato_il_dono: 'Ho effettuato il Dono',
|
||||
clicca_conferma_dono: 'Una volta inviato il Dono, lascia un commento al Sognatore e Clicca qui sotto per confermare che hai effettuato il tuo dono',
|
||||
fatto_dono: 'Hai confermato che il dono è stato Inviato',
|
||||
confermi_dono: 'Confermi che hai inviato il tuo Dono di 33€',
|
||||
dono_ricevuto: 'Il tuo Dono è stato Ricevuto!',
|
||||
dono_ricevuto_2: 'Ricevuto',
|
||||
dono_ricevuto_3: 'Arrivato!',
|
||||
confermi_dono_ricevuto: 'Confermi di aver ricevuto il Dono di 33€ da parte di {donatore}',
|
||||
confermi_dono_ricevuto_msg: 'Confermato di aver ricevuto il Dono di 33€ da parte di {donatore}',
|
||||
msg_bot_conferma: '{donatore} ha confermato di aver inviato il suo Dono di 33€ a {sognatore} (Commento: {commento})',
|
||||
ricevuto_dono_ok: 'Hai confermato che il dono è stato Ricevuto',
|
||||
entra_in_lavagna: 'Entra sulla Tua Lavagna per vedere le Navi in Partenza',
|
||||
doni_ricevuti: 'Doni Ricevuti',
|
||||
doni_inviati_da_confermare: 'Doni Inviati (da confermare)',
|
||||
doni_mancanti: 'Doni Mancanti',
|
||||
temporanea: 'Temporanea',
|
||||
nave_provvisoria: 'Ti è stata assegnata una <strong>Nave TEMPORANEA</strong>.<br>E\'normale che vedrai variare la data di partenza, dovuto all\'aggiornamento della graduatoria dei passeggeri.',
|
||||
ritessitura: 'RITESSITURA',
|
||||
},
|
||||
reg: {
|
||||
volta: 'volta',
|
||||
volte: 'volte',
|
||||
registered: 'Registrato',
|
||||
contacted: 'Contattato',
|
||||
name_complete: 'Nome Completo',
|
||||
num_invitati: 'Num.Invitati',
|
||||
is_in_whatsapp: 'In Whatsapp',
|
||||
is_in_telegram: 'In Telegram',
|
||||
cell_complete: 'Cellulare',
|
||||
failed: 'Fallito',
|
||||
ind_order: 'Num',
|
||||
ipaddr: 'IP',
|
||||
verified_email: 'Email Verificata',
|
||||
reg_lista_prec: 'Inserire il Nome, Cognome e numero di cellulare che avete lasciato in passato quando vi siete iscritti alla Chat!<br>In questo modo il sistema vi riconosce e vi mantiene la posizione della lista.',
|
||||
nuove_registrazioni: 'Se questa è una NUOVA registrazione, dovete contattare la persona che vi ha INVITATO, che vi lascerà il LINK CORRETTO per fare la Registrazione sotto di lui/lei',
|
||||
you: 'Tu',
|
||||
cancella_invitato: 'Elimina Invitato',
|
||||
cancella_account: 'Elimina Profilo',
|
||||
cancellami: 'Sei sicuro di voler Eliminare completamente la tua Registrazione su {sitename}, uscendo così dal movimento? Non potrai piu\' accedere al sito tramite i tuoi dati, Perderai la tua POSIZIONE e i Tuoi Invitati verranno REGALATI a chi ti ha invitato.',
|
||||
cancellami_2: 'ULTIMO AVVISO! Vuoi uscire Definitivamente da {sitename} ?',
|
||||
account_cancellato: 'Il tuo Profilo è stato cancellato correttamente',
|
||||
regala_invitato: 'Regala Invitato',
|
||||
regala_invitante: 'Imposta Invitante',
|
||||
messaggio_invito: 'Messaggio di Invito',
|
||||
messaggio_invito_msg: 'Invia questo messaggio a tutti coloro a cui vuoi condividere questo Movimento !',
|
||||
videointro: 'Video Introduttivo',
|
||||
invitato_regalato: 'Invitato Regalato',
|
||||
invitante_regalato: 'Invitante Regalato',
|
||||
legenda: 'Legenda',
|
||||
aportador_solidario: 'Chi ti ha Invitato',
|
||||
username_regala_invitato: 'Username del Destinatario del regalo',
|
||||
aportador_solidario_nome_completo: 'Nominativo Invitante',
|
||||
aportador_solidario_nome_completo_orig: 'Invitante Originario',
|
||||
aportador_solidario_ind_order: 'Num Invitante',
|
||||
reflink: 'Link da condividere ai tuoi invitati:',
|
||||
linkzoom: 'Link per entrare in Zoom:',
|
||||
page_title: 'Registrazione',
|
||||
made_gift: 'Dono',
|
||||
note: 'Note',
|
||||
incorso: 'Registrazione in corso...',
|
||||
richiesto: 'Campo Richiesto',
|
||||
email: 'Email',
|
||||
intcode_cell: 'Prefisso Int.',
|
||||
cell: 'Cellulare Telegram',
|
||||
cellreg: 'Cellulare con cui ti eri registrato',
|
||||
nationality: 'Nazionalità',
|
||||
email_paypal: 'Email Paypal',
|
||||
revolut: 'Revolut',
|
||||
link_payment: 'Link Paypal.me',
|
||||
note_payment: 'Note Aggiuntive',
|
||||
country_pay: 'Paese di Destinazione Pagamenti',
|
||||
username_telegram: 'Username Telegram',
|
||||
telegram: 'Chat Telegram \'{botname}\'',
|
||||
teleg_id: 'Telegram ID',
|
||||
teleg_id_old: 'OLD Tel ID',
|
||||
teleg_auth: 'Codice Autorizzazione',
|
||||
click_per_copiare: 'Cliccaci sopra per copiarlo sugli appunti',
|
||||
copia_messaggio: 'Copia Messaggio',
|
||||
teleg_torna_sul_bot: '1) Copia il codice cliccando sul bottone qui sopra<br>2) torna su {botname} cliccando qui sotto 👇 ed incolla (o scrivi) il codice',
|
||||
teleg_checkcode: 'Codice Telegram',
|
||||
my_dream: 'Il mio Sogno',
|
||||
saw_and_accepted: 'Condizioni',
|
||||
saw_zoom_presentation: 'Ha visto Zoom',
|
||||
manage_telegram: 'Gestori Telegram',
|
||||
paymenttype: 'Modalità di Pagamenti Disponbili (Revolut)',
|
||||
selected: 'Selezionati',
|
||||
img: 'Immagine',
|
||||
date_reg: 'Data Reg.',
|
||||
requirement: 'Requisiti',
|
||||
perm: 'Permessi',
|
||||
elimina: 'Elimina',
|
||||
deleted: 'Nascosto',
|
||||
sospeso: 'Sospeso',
|
||||
username: 'Username (Pseudonimo)',
|
||||
username_short: 'Username',
|
||||
name: 'Nome',
|
||||
surname: 'Cognome',
|
||||
username_login: 'Username o email',
|
||||
password: 'Password',
|
||||
repeatPassword: 'Ripeti password',
|
||||
terms: 'Accetto i termini della privacy',
|
||||
onlyadult: 'Confermo di essere Maggiorenne',
|
||||
submit: 'Registrati',
|
||||
title_verif_reg: 'Verifica Registrazione',
|
||||
reg_ok: 'Registrazione Effettuata con Successo',
|
||||
verificato: 'Verificato',
|
||||
non_verificato: 'Non Verificato',
|
||||
forgetpassword: 'Password dimenticata?',
|
||||
modificapassword: 'Modifica Password',
|
||||
err: {
|
||||
required: 'è richiesto',
|
||||
email: 'inserire una email valida',
|
||||
errore_generico: 'Si prega di compilare correttamente i campi',
|
||||
atleast: 'dev\'essere lungo almeno di',
|
||||
complexity: 'deve contenere almeno 1 minuscola, 1 maiuscola, 1 cifra',
|
||||
notmore: 'non dev\'essere lungo più di',
|
||||
char: 'caratteri',
|
||||
terms: 'Devi accettare le condizioni, per continuare.',
|
||||
email_not_exist: 'l\'Email non è presente in archivio, verificare se è corretta',
|
||||
duplicate_email: 'l\'Email è già stata registrata',
|
||||
user_already_exist: 'La registrazione con questi dati (nome, cognome e cellulare) è stata già effettuata. Per accedere al sito, cliccare sul bottone LOGIN dalla HomePage.',
|
||||
user_extralist_not_found: 'Utente in archivio non trovato, inserire il Nome, Cognome e numero di cellulare comunicato nella lista nel 2019. Se questa è una nuova registrazione, dovete registrarvi tramite il LINK di chi vi sta invitando.',
|
||||
user_not_this_aportador: 'Stai utilizzando un link di una persona diversa dal tuo invitato originale.',
|
||||
duplicate_username: 'L\'Username è stato già utilizzato',
|
||||
username_not_valid: 'L\'Username non é valido',
|
||||
aportador_not_exist: 'L\'Username di chi ti ha invitato non è presente. Contattaci.',
|
||||
aportador_regalare_not_exist: 'Inserire l\'Username della persona che si vuole regalare l\'invitato',
|
||||
invitante_username_not_exist: 'Inserire l\'Username della persona che fa da invitante',
|
||||
sameaspassword: 'Le password devono essere identiche',
|
||||
},
|
||||
tips: {
|
||||
email: 'inserisci la tua email',
|
||||
username: 'username lunga almeno 6 caratteri',
|
||||
password: 'deve contenere 1 minuscola, 1 maiuscola e 1 cifra',
|
||||
repeatpassword: 'ripetere la password',
|
||||
|
||||
},
|
||||
},
|
||||
op: {
|
||||
qualification: 'Qualifica',
|
||||
usertelegram: 'Username Telegram',
|
||||
disciplines: 'Discipline',
|
||||
certifications: 'Certificazioni',
|
||||
intro: 'Introduzione',
|
||||
info: 'Biografia',
|
||||
webpage: 'Pagina Web',
|
||||
days_working: 'Giorni Lavorativi',
|
||||
facebook: 'Pagina Facebook',
|
||||
},
|
||||
login: {
|
||||
page_title: 'Login',
|
||||
incorso: 'Login in corso',
|
||||
enter: 'Accedi',
|
||||
esci: 'Esci',
|
||||
errato: 'Username o password errata. Riprovare',
|
||||
subaccount: "Questo account è stato accorpato con il vostro Principale. Eseguire l'accesso utilizzando l'username (o email) del PRIMO account.",
|
||||
completato: 'Login effettuato!',
|
||||
needlogin: 'E\' necessario effettuare il login prima di continuare',
|
||||
},
|
||||
reset: {
|
||||
title_reset_pwd: 'Reimposta la tua Password',
|
||||
send_reset_pwd: 'Invia Reimposta la password',
|
||||
incorso: 'Richiesta Nuova Email...',
|
||||
email_sent: 'Email inviata',
|
||||
check_email: 'Controlla la tua email, ti arriverà un messaggio con un link per reimpostare la tua password. Questo link, per sicurezza, scadrà dopo 4 ore.',
|
||||
token_scaduto: 'Il token è scaduto oppure è stato già usato. Ripetere la procedura di reset password',
|
||||
title_update_pwd: 'Aggiorna la tua password',
|
||||
update_password: 'Aggiorna Password',
|
||||
},
|
||||
logout: {
|
||||
uscito: 'Sei Uscito',
|
||||
},
|
||||
errors: {
|
||||
graphql: {
|
||||
undefined: 'non definito',
|
||||
},
|
||||
},
|
||||
showbigmap: 'Mostra la mappa più grande',
|
||||
todo: {
|
||||
titleprioritymenu: 'Priorità:',
|
||||
inserttop: 'Inserisci il Task in cima',
|
||||
insertbottom: 'Inserisci il Task in basso',
|
||||
edit: 'Descrizione Task:',
|
||||
completed: 'Ultimi Completati',
|
||||
usernotdefined: 'Attenzione, occorre essere Loggati per poter aggiungere un Todo',
|
||||
start_date: 'Data Inizio',
|
||||
status: 'Stato',
|
||||
completed_at: 'Data Completamento',
|
||||
expiring_at: 'Data Scadenza',
|
||||
phase: 'Fase',
|
||||
},
|
||||
notification: {
|
||||
status: 'Stato',
|
||||
ask: 'Attiva le Notifiche',
|
||||
waitingconfirm: 'Conferma la richiesta di Notifica',
|
||||
confirmed: 'Notifiche Attivate!',
|
||||
denied: 'Notifiche Disabilitate! Attenzione così non vedrai arrivarti i messaggi. Riabilitali per vederli.',
|
||||
titlegranted: 'Permesso Notifiche Abilitato!',
|
||||
statusnot: 'Stato Notifiche',
|
||||
titledenied: 'Permesso Notifiche Disabilitato!',
|
||||
title_subscribed: 'Sottoscrizione a {sitename}!',
|
||||
subscribed: 'Ora potrai ricevere i messaggi e le notifiche.',
|
||||
newVersionAvailable: 'Aggiorna',
|
||||
},
|
||||
connection: 'Connessione',
|
||||
proj: {
|
||||
newproj: 'Titolo Progetto',
|
||||
newsubproj: 'Titolo Sotto-Progetto',
|
||||
insertbottom: 'Inserisci Nuovo Project',
|
||||
longdescr: 'Descrizione',
|
||||
hoursplanned: 'Ore Preventivate',
|
||||
hoursadded: 'Ore Aggiuntive',
|
||||
hoursworked: 'Ore Lavorate',
|
||||
begin_development: 'Inizio Sviluppo',
|
||||
begin_test: 'Inizio Test',
|
||||
progresstask: 'Progressione',
|
||||
actualphase: 'Fase Attuale',
|
||||
hoursweeky_plannedtowork: 'Ore settimanali previste',
|
||||
endwork_estimate: 'Data fine lavori stimata',
|
||||
privacyread: 'Chi lo puo vedere:',
|
||||
privacywrite: 'Chi lo puo modificare:',
|
||||
totalphases: 'Totale Fasi',
|
||||
themecolor: 'Tema Colore',
|
||||
themebgcolor: 'Tema Colore Sfondo',
|
||||
},
|
||||
where: {
|
||||
code: 'Id',
|
||||
whereicon: 'Icona',
|
||||
},
|
||||
col: {
|
||||
label: 'Etichetta',
|
||||
value: 'Valore',
|
||||
type: 'Tipo',
|
||||
},
|
||||
cal: {
|
||||
num: 'Numero',
|
||||
booked: 'Prenotato',
|
||||
booked_error: 'Prenotazione non avvenuta. Riprovare più tardi',
|
||||
sendmsg_error: 'Messaggio non inviato. Riprovare più tardi',
|
||||
sendmsg_sent: 'Messaggio Inviato',
|
||||
booking: 'Prenota Evento',
|
||||
titlebooking: 'Prenotazione',
|
||||
modifybooking: 'Modifica Prenotazione',
|
||||
cancelbooking: 'Cancella Prenotazione',
|
||||
canceledbooking: 'Prenotazione Cancellata',
|
||||
cancelederrorbooking: 'Cancellazione non effettuata, Riprovare più tardi',
|
||||
cancelevent: 'Cancella Evento',
|
||||
canceledevent: 'Evento Cancellato',
|
||||
cancelederrorevent: 'Cancellazione Evento non effettuata, Riprovare',
|
||||
event: 'Evento',
|
||||
starttime: 'Dalle',
|
||||
nextevent: 'Prossimo Evento',
|
||||
readall: 'Leggi tutto',
|
||||
enddate: 'al',
|
||||
endtime: 'alle',
|
||||
duration: 'Durata',
|
||||
hours: 'Orario',
|
||||
when: 'Quando',
|
||||
where: 'Dove',
|
||||
teacher: 'Condotto da',
|
||||
enterdate: 'Inserisci data',
|
||||
details: 'Dettagli',
|
||||
infoextra: 'Date e Ora Extra:',
|
||||
alldayevent: 'Tutto il giorno',
|
||||
eventstartdatetime: 'Inizio',
|
||||
enterEndDateTime: 'Fine',
|
||||
selnumpeople: 'Partecipanti',
|
||||
selnumpeople_short: 'Num',
|
||||
msgbooking: 'Messaggio da inviare',
|
||||
showpdf: 'Vedi PDF',
|
||||
bookingtextdefault: 'Prenoto per',
|
||||
bookingtextdefault_of: 'di',
|
||||
data: 'Data',
|
||||
teachertitle: 'Insegnante',
|
||||
peoplebooked: 'Prenotaz.',
|
||||
showlastschedule: 'Vedi tutto il Calendario',
|
||||
},
|
||||
msgs: {
|
||||
message: 'Messaggio',
|
||||
messages: 'Messaggi',
|
||||
nomessage: 'Nessun Messaggio',
|
||||
},
|
||||
event: {
|
||||
_id: 'id',
|
||||
typol: 'Typology',
|
||||
short_tit: 'Titolo Breve',
|
||||
title: 'Titolo',
|
||||
details: 'Dettagli',
|
||||
bodytext: 'Testo Evento',
|
||||
dateTimeStart: 'Data Inizio',
|
||||
dateTimeEnd: 'Data Fine',
|
||||
bgcolor: 'Colore Sfondo',
|
||||
days: 'Giorni',
|
||||
icon: 'Icona',
|
||||
img: 'Nomefile Immagine',
|
||||
img_small: 'Img Piccola',
|
||||
where: 'Dove',
|
||||
contribtype: 'Tipo Contributo',
|
||||
price: 'Contributo',
|
||||
askinfo: 'Chiedi Info',
|
||||
showpage: 'Vedi Pagina',
|
||||
infoafterprice: 'Note dopo la Quota',
|
||||
teacher: 'Insegnante', // teacherid
|
||||
teacher2: 'Insegnante2', // teacherid2
|
||||
infoextra: 'InfoExtra',
|
||||
linkpage: 'WebSite',
|
||||
linkpdf: 'Link ad un PDF',
|
||||
nobookable: 'Non Prenotabile',
|
||||
news: 'Novità',
|
||||
dupId: 'Id Duplicato',
|
||||
canceled: 'Cancellato',
|
||||
deleted: 'Eliminato',
|
||||
duplicate: 'Duplica',
|
||||
notempty: 'Il campo non può essere vuoto',
|
||||
modified: 'Modificato',
|
||||
showinhome: 'Mostra nella Home',
|
||||
showinnewsletter: 'Mostra nella Newsletter',
|
||||
color: 'Colore del titolo',
|
||||
},
|
||||
disc: {
|
||||
typol_code: 'Codice Tipologia',
|
||||
order: 'Ordinamento',
|
||||
},
|
||||
newsletter: {
|
||||
title: 'Desideri ricevere la nostra Newsletter?',
|
||||
name: 'Il tuo Nome',
|
||||
surname: 'Il tuo Cognome',
|
||||
namehint: 'Nome',
|
||||
surnamehint: 'Cognome',
|
||||
email: 'La tua Email',
|
||||
submit: 'Iscriviti',
|
||||
reset: 'Cancella',
|
||||
typesomething: 'Compilare correttamente il campo',
|
||||
acceptlicense: 'Accetto la licenza e i termini',
|
||||
license: 'Devi prima accettare la licenza e i termini',
|
||||
submitted: 'Iscritto',
|
||||
menu: 'Newsletter1',
|
||||
template: 'Modelli Email',
|
||||
sendemail: 'Invia',
|
||||
check: 'Controlla',
|
||||
sent: 'Già Inviate',
|
||||
mailinglist: 'Lista Contatti',
|
||||
settings: 'Impostazioni',
|
||||
serversettings: 'Server',
|
||||
others: 'Altro',
|
||||
templemail: 'Modello Email',
|
||||
datetoSent: 'DataOra Invio',
|
||||
activate: 'Attivato',
|
||||
numemail_tot: 'Email Totali',
|
||||
numemail_sent: 'Email Inviate',
|
||||
datestartJob: 'Inizio Invio',
|
||||
datefinishJob: 'Fine Invio',
|
||||
lastemailsent_Job: 'Ultima Inviata',
|
||||
starting_job: 'Invio Iniziato',
|
||||
finish_job: 'Invio Terminato',
|
||||
processing_job: 'Lavoro in corso',
|
||||
error_job: 'Info Errori',
|
||||
statesub: 'Sottoscritto',
|
||||
wrongerr: 'Email non valida',
|
||||
},
|
||||
privacy_policy: 'Privacy Policy',
|
||||
cookies: 'Usiamo i Cookie per una migliore prestazione web.',
|
||||
},
|
||||
};
|
||||
|
||||
export default msg_it;
|
||||
@@ -1,638 +0,0 @@
|
||||
const msg_pt = {
|
||||
pt: {
|
||||
words: {
|
||||
da: 'od',
|
||||
a: 'do',
|
||||
},
|
||||
home: {
|
||||
guida: 'Guia',
|
||||
guida_passopasso: 'Guia Passo a Passo',
|
||||
},
|
||||
grid: {
|
||||
editvalues: 'Modifica Valori',
|
||||
addrecord: 'Aggiungi Riga',
|
||||
showprevedit: 'Mostra Eventi Passati',
|
||||
columns: 'Colonne',
|
||||
tableslist: 'Tabelle',
|
||||
nodata: 'Sem Dados',
|
||||
},
|
||||
gallery: {
|
||||
author_username: 'Utente',
|
||||
title: 'Titolo',
|
||||
directory: 'Directory',
|
||||
list: 'Lista',
|
||||
},
|
||||
otherpages: {
|
||||
sito_offline: 'Site em actualização',
|
||||
modifprof: 'Editar Perfil',
|
||||
biografia: 'Biografia',
|
||||
error404: 'error404',
|
||||
error404def: 'error404def',
|
||||
admin: {
|
||||
menu: 'Amministrazione',
|
||||
eventlist: 'Le tue Prenotazioni',
|
||||
usereventlist: 'Prenotazioni Utenti',
|
||||
userlist: 'Lista Utenti',
|
||||
zoomlist: 'Calendario Zoom',
|
||||
extralist: 'Lista Extra',
|
||||
dbop: 'Db Operations',
|
||||
tableslist: 'Lista Tabelle',
|
||||
navi: 'Navios',
|
||||
newsletter: 'Newsletter',
|
||||
pages: 'Pagine',
|
||||
media: 'Media',
|
||||
gallery: 'Gallerie',
|
||||
},
|
||||
manage: {
|
||||
menu: 'Gestione',
|
||||
manager: 'Gestore',
|
||||
nessuno: 'Nessuno',
|
||||
},
|
||||
messages: {
|
||||
menu: 'I tuoi Messaggi',
|
||||
},
|
||||
},
|
||||
sendmsg: {
|
||||
write: 'scrive',
|
||||
},
|
||||
stat: {
|
||||
imbarcati: 'Abordados',
|
||||
imbarcati_weekly: 'Abordados semanalmente',
|
||||
imbarcati_in_attesa: 'abordados em espera',
|
||||
qualificati: 'Qualificado com pelo menos 2 convidados',
|
||||
requisiti: 'Utilizadores com os 7 Requisitos',
|
||||
zoom: 'Participar no Zoom',
|
||||
Payment_Mode: 'Payment Methods INSERT',
|
||||
accepted: 'Directrizes + Vídeo aceite',
|
||||
dream: 'Eles escreveram o Sonho',
|
||||
email_not_verif: 'Email não verificado',
|
||||
telegram_non_attivi: 'Telegrama Não Activo',
|
||||
telegram_pendenti: 'Telegram Pendants',
|
||||
reg_daily: 'Inscrições diárias',
|
||||
reg_weekly: 'Inscripciones semanales',
|
||||
reg_total: 'Inscrições Total',
|
||||
},
|
||||
steps: {
|
||||
nuovo_imbarco: 'Reservar outra Viagem',
|
||||
vuoi_entrare_nuova_nave: 'Deseja ajudar o Movimento a avançar e pretende entrar noutro Navio?<br>Ao fazer um Novo Presente de 33 euros, poderá viajar outra viagem e ter outra oportunidade de se tornar um Sonhador!<br>'
|
||||
+ 'Se confirmar, será acrescentado à lista de espera para o próximo embarque.',
|
||||
vuoi_cancellare_imbarco: 'Tem a certeza de que quer cancelar este embarque no navio AYNI?',
|
||||
completed: 'Completado',
|
||||
passi_su: '{passo} passos em {totpassi}',
|
||||
video_intro_1: '1. Bem-vindo ao {sitename}',
|
||||
video_intro_2: '2. Nascimento do {sitename}',
|
||||
read_guidelines: 'Eu li e concordo com estes termos escritos acima',
|
||||
saw_video_intro: 'Declaro ter visto o vídeo',
|
||||
paymenttype: 'Formas de Pagamento (Revolut)',
|
||||
paymenttype_long: 'Escolha <strong> pelo menos 2 Métodos de pagamento</strong>, para trocar presentes.<br>As formas de pagamento são: <ul><li><strong>Revolut</strong>: o Revolut Prepaid Card com IBAN inglês (fora da UE) completamente gratuito, mais gratuito e fácil de usar. Disponível o aplicativo para mobile.</li><li><strong>Paypal</strong> porque é um sistema muito popular em toda a Europa (a transferência é gratuita) e você pode conectar cartões pré-pagos, cartões de crédito e conta bancária <strong> SEM COMISSÕES</strong>. Desta forma não terá de partilhar o seu cartão ou números de c/c, mas apenas o e-mail que utilizou durante o registo no Paypal. Disponível o aplicativo para o seu celular.</li><br>',
|
||||
paymenttype_paypal: 'Como abrir uma conta Paypal (em 2 minutos)',
|
||||
paymenttype_paypal_carta_conto: 'Como associar um cartão de crédito/débito ou conta bancária no PayPal',
|
||||
paymenttype_paypal_link: 'Abra uma conta no Paypal',
|
||||
paymenttype_revolut: 'Como abrir a conta com Revolut (em 2 minutos)',
|
||||
paymenttype_revolut_link: 'Abrir conta com Revolut',
|
||||
entra_zoom: 'Haz un Zoom',
|
||||
linee_guida: 'Eu aceito as directrizes',
|
||||
video_intro: 'Eu vejo o vídeo',
|
||||
zoom: 'Tenho pelo menos 1 Zoom in',
|
||||
zoom_si_partecipato: 'Você participou de pelo menos 1 Zoom',
|
||||
zoom_partecipa: 'Participou em pelo menos 1 Zoom',
|
||||
zoom_no_partecipato: 'Você ainda não participou de um Zoom (é um requisito para entrar)',
|
||||
zoom_long: 'É necessário participar em pelo menos 1 Zoom, mas é recomendável participar mais activamente no movimento.<br><br><strong> Ao participar nos Zooms o Staff registará a assistência e você estará habilitado.</strong>',
|
||||
zoom_what: 'Tutorial de como instalar o Zoom Cloud Meeting',
|
||||
// sharemovement_devi_invitare_almeno_2: 'Você ainda não convidou 2 pessoas',
|
||||
// sharemovement_hai_invitato: 'Você convidou pelo menos 2 pessoas',
|
||||
sharemovement_invitati_attivi_si: 'Você tem pelo menos 2 pessoas convidadas Ativo',
|
||||
sharemovement_invitati_attivi_no: '<strong>Nota:</strong>As pessoas que convidaste, para serem <strong>Active</strong>, têm de ter <strong>concluído todos os primeiros 7 Requisitos</strong> (ver o teu <strong>Lavagna</strong> para ver o que lhes falta)',
|
||||
sharemovement: 'Convite a pelo menos 2 pessoas',
|
||||
sharemovement_long: 'Partilhe o Movimento {sitename} e convide-os a participar nos Zooms de Boas-vindas para fazer parte desta grande Família 😄 .<br>',
|
||||
inv_attivi_long: '',
|
||||
enter_prog_completa_requisiti: 'Preencher todos os requisitos para entrar na lista de embarque.',
|
||||
enter_prog_requisiti_ok: 'O usuário completou todos os 7 requisitos para entrar na lista de embarque.<br>',
|
||||
enter_prog_msg: 'Você receberá uma mensagem nos próximos dias, assim que o seu navio estiver pronto!',
|
||||
enter_prog_msg_2: '',
|
||||
enter_nave_9req_ok: 'PARABÉNS! Você completou TODOS os 9 passos do Guia! Obrigado por ajudar a {sitename} a Expandir! <br>Você poderá partir muito em breve com a sua Jornada, fazendo o seu presente e continuando para o Sonhador.',
|
||||
enter_nave_9req_ko: 'Lembre-se que você pode ajudar o Movimento a crescer e expandir, compartilhando nossa jornada com todos!',
|
||||
enter_prog: 'Vou em Lista Programação',
|
||||
enter_prog_long: 'Satisfeito os requisitos para entrar no Programa, você será adicionado ao Ticket e ao chat do grupo correspondente.<br>',
|
||||
collaborate: 'Colaboração',
|
||||
collaborate_long: 'Continuo a trabalhar com os meus companheiros para chegar ao dia em que o meu navio vai zarpar.',
|
||||
dream: 'Eu escrevo o meu sonho',
|
||||
dream_long: 'Escreva aqui o Sonho pelo qual você entrou no {sitename} e que deseja realizar.<br>Será compartilhado com todos os outros para sonharem juntos !',
|
||||
dono: 'Presente',
|
||||
dono_long: 'Eu faço o meu presente na data de partida do meu navio',
|
||||
support: 'Eu apoio o movimento',
|
||||
support_long: 'Eu apoio o movimento trazendo energia, participando e organizando o Zoom, ajudando e informando os recém-chegados e continuando a espalhar a visão de {sitename}.',
|
||||
ricevo_dono: 'Eu recebo meu presente e CELEBRATO',
|
||||
ricevo_dono_long: 'Viva!!!! <br><strong> ESTE MOVIMENTO É REAL E POSSÍVEL SE FABRICARMOS TODOS JUNTOS!!</strong>',
|
||||
},
|
||||
dialog: {
|
||||
continue: 'Continuar',
|
||||
close: 'Fechar',
|
||||
copyclipboard: 'Copiado para a prancheta',
|
||||
ok: 'Ok',
|
||||
yes: 'Sim',
|
||||
no: 'Não',
|
||||
delete: 'Eliminar',
|
||||
cancel: 'Cancelar',
|
||||
update: 'Atualização',
|
||||
add: 'Adicione',
|
||||
today: 'Hoje',
|
||||
book: 'Livro',
|
||||
avanti: 'Avançar',
|
||||
indietro: 'Voltar',
|
||||
finish: 'Acabar',
|
||||
sendmsg: 'Enviar mensagem',
|
||||
sendonlymsg: 'Envie apenas uma Msg',
|
||||
msg: {
|
||||
titledeleteTask: 'Eliminar Tarefa',
|
||||
deleteTask: 'Eliminar {mytodo}?',
|
||||
},
|
||||
},
|
||||
comp: {
|
||||
Conta: 'Conta',
|
||||
},
|
||||
db: {
|
||||
recupdated: 'Record Aggiornato',
|
||||
recfailed: 'Errore durante aggiornamento Record',
|
||||
reccanceled: 'Annullato Aggiornamento. Ripristinato valore precendente',
|
||||
deleterecord: 'Elimina Record',
|
||||
deletetherecord: 'Eliminare il Record?',
|
||||
deletedrecord: 'Record Cancellato',
|
||||
recdelfailed: 'Errore durante la cancellazione del Record',
|
||||
duplicatedrecord: 'Record Duplicato',
|
||||
recdupfailed: 'Errore durante la duplicazione del Record',
|
||||
},
|
||||
components: {
|
||||
authentication: {
|
||||
telegram: {
|
||||
open: 'Clique aqui para abrir o Telegrama BOT e siga as instruções',
|
||||
ifclose: 'Se você não abrir o Telegrama clicando no botão ou o apagar, vá até Telegrama e procure {botname} BOTTOM no ícone da lente, então pressione Iniciar e siga as instruções',
|
||||
openbot: 'Abra {botname} no Telegrama',
|
||||
},
|
||||
login: {
|
||||
facebook: 'Facebook',
|
||||
},
|
||||
email_verification: {
|
||||
title: 'Comece a sua gravação',
|
||||
introduce_email: 'insira o seu e-mail',
|
||||
email: 'Email',
|
||||
invalid_email: 'O seu e-mail é inválido',
|
||||
verify_email: 'Verifique o seu e-mail',
|
||||
go_login: 'Back to Login',
|
||||
incorrect_input: 'Incorrect_input.',
|
||||
link_sent: 'Abra a sua caixa de entrada, encontre o e-mail "Confirmar Registo para {sitename}" e clique em "Verificar Registo"',
|
||||
se_non_ricevo: 'Se você não receber o e-mail, tente checar spam, ou entre em contato conosco',
|
||||
title_unsubscribe: 'Subscribe to the newsletter',
|
||||
title_unsubscribe_done: 'Desregisto completado corretamente',
|
||||
},
|
||||
},
|
||||
},
|
||||
fetch: {
|
||||
errore_generico: 'Erro genérico',
|
||||
errore_server: 'Não é possível aceder ao Servidor. Tente novamente Obrigado.',
|
||||
error_doppiologin: 'Faça o login novamente. Acesso aberto a partir de outro dispositivo.',
|
||||
},
|
||||
user: {
|
||||
notregistered: 'Você tem que se registrar para o serviço antes de trazer os dados',
|
||||
loggati: 'Usuário não logado',
|
||||
},
|
||||
templemail: {
|
||||
subject: 'Oggetto Email',
|
||||
testoheadermail: 'Intestazione Email',
|
||||
content: 'Contenuto',
|
||||
img: 'Immagine 1',
|
||||
img2: 'Immagine 2',
|
||||
content2: 'Contenuto 2',
|
||||
options: 'Opzioni',
|
||||
},
|
||||
dashboard: {
|
||||
data: 'Datum',
|
||||
data_rich: 'Data Pedido',
|
||||
ritorno: 'Regresso',
|
||||
invitante: 'Convidados',
|
||||
num_tessitura: 'Numero di Tessitura:',
|
||||
attenzione: 'Atenção',
|
||||
downline: 'Convidados',
|
||||
downnotreg: 'Convidados não registados',
|
||||
notreg: 'Não Registado',
|
||||
inv_attivi: 'Convidado com os 7 Requisitos',
|
||||
numinvitati: 'Pelo menos 2 convidados',
|
||||
telefono_wa: 'Contato no Whatsapp',
|
||||
sendnotification: 'Enviar Notificação ao Destinatário no Telegrama BOT',
|
||||
ricevuto_dono: '😍🎊 Você recebeu um convite de presente {invitato} de {mittente} !',
|
||||
ricevuto_dono_invitante: '😍🎊 Você recebeu um Convidados de presente de {mittente} !',
|
||||
nessun_invitante: 'Sem Convite',
|
||||
nessun_invitato: 'Sem Convidados',
|
||||
legenda_title: 'Clique no nome do convidado para ver o status de seus Requisitos',
|
||||
nave_in_partenza: 'em Partida em',
|
||||
nave_in_chiusura: 'Encerramento Gift Chat',
|
||||
nave_partita: 'que partiu em',
|
||||
tutor: 'Tutor',
|
||||
/* Quando você se torna um mediador, um <strong>TUTOR</strong> entra em contato com você, e deve:<br>' +
|
||||
'<ol class="lista"><li>Abrir seu <strong>bate-papo</strong> do presente (você como proprietário e o tutor como administrador) com este nome: <br><strong>{nomenave}</strong></li>' +
|
||||
'<li>Clique no nome do bate-papo na parte superior - > Editar -> Administradores -> "Adicionar administrador", selecione o Tutor na lista.</li>' +
|
||||
'<li>Você deve configurar o bate-papo de forma que quem entra depois também veja as postagens anteriores (clique no nome do bate-papo na parte superior, clique em editar' +
|
||||
' altere o "histórico de novos membros" de oculto para visível.</li>' +
|
||||
'<li>Para encontrar o link Bate-papo Recém-criado: Clique no nome do bate-papo na parte superior, clique no lápis -> "Tipo de grupo" -> "Convidar grupo via link", clique em "Copiar link" e cole-o abaixo' +
|
||||
', na caixa "Link do bate-papo para presente"'+
|
||||
'Envie o link do bate-papo para presente a todos os doadores, clicando no botão abaixo.</li></ol>',
|
||||
*/
|
||||
sonomediatore: 'Quando você for um MEDIATOR será contactado por <strong>TUTOR AYNI</strong> através de uma mensagem no Chat <strong>AYNI BOT</strong>.',
|
||||
superchat: 'Nota: SOMENTE se tiver problemas de PAGAMENTO, ou se quiser ser REPRESENTADO, dois Tutores estão à espera para o ajudar no Chat:<br>a href="{link_superchat}" target="_blank">Entre no Gift Chat</a>.',
|
||||
sonodonatore: '<ol class="lista"><li>Quando você estiver nessa posição, você será convidado (por meio de uma mensagem em <strong>AYNI BOT</strong>) a entrar em um bate-papo de presentes (Telegram) e aqui também encontrará os outros 7 doadores, o mediador, o sonhador e um representante da equipe.</li>'
|
||||
+ '<li>Você terá 3 dias para entrar no bate-papo para fazer seu presente.<br></ol>',
|
||||
soydonante_secundo_tejido: '<ol class="lista"><li>Aqui você é Mediador e também Doador, mas sendo o segundo Tecido, você não terá que fazer seu presente novamente<br></ol>',
|
||||
controlla_donatori: 'Verifique a Lista de Doadores',
|
||||
link_chat: 'Links de telegramas para o Gift Chat',
|
||||
tragitto: 'Rota',
|
||||
nave: 'Navio',
|
||||
data_partenza: 'Data<br>de saída',
|
||||
doni_inviati: 'Donativos <br>enviados',
|
||||
nome_dei_passaggi: 'Nomes<br>de Passos',
|
||||
donatori: 'Doadores',
|
||||
donatore: 'Doadore',
|
||||
mediatore: 'Ombudsman',
|
||||
sognatore: 'Sonhador',
|
||||
sognatori: 'Sonhadores',
|
||||
intermedio: 'INTERMEDIAR',
|
||||
pos2: 'Interm. 2',
|
||||
pos3: 'Interm. 3',
|
||||
pos5: 'Interm. 5',
|
||||
pos6: 'Interm. 6',
|
||||
gift_chat: 'Para entrar no Gift Chat, clique aqui',
|
||||
quando_eff_il_tuo_dono: 'Quando dar o Presente',
|
||||
entra_in_gift_chat: 'Entre no Gift Chat',
|
||||
invia_link_chat: 'Enviar link para o Gift Chat aos Doadores',
|
||||
inviare_msg_donatori: '5) Enviar mensagem aos doadores',
|
||||
msg_donatori_ok: 'Mensagem enviada aos Doadores',
|
||||
metodi_disponibili: 'Métodos disponíveis',
|
||||
importo: 'Importo',
|
||||
effettua_il_dono: 'Chegou o momento de fazer o seu Presente o Sonhador<br>👉 {sognatore} 👈 !<br>'
|
||||
+ 'Enviar via <a href="https://www.paypal.com" target="_blank">PayPal</a> para: <strong>{email}</strong><br>'
|
||||
+ '<strong><span style="color:red">AVISO:</span> Escolha a opção "SENDING TO A FRIEND".)</strong><br>',
|
||||
paypal_me: '<br>2) Método Simplificado<br><a href="{link_payment}" target="_blank">Click directamente aqui</a>>br>'
|
||||
+ 'abrirá o PayPal com o montante e o destinatário já definidos.<br>'
|
||||
+ 'Adicionar como mensagem: <strong>Presente</strong>>br>'
|
||||
+ '<strong><span style="color:red">AVISO:</span> NÃO SELECCIONAR A CAIXA</strong>: Protecção de compras Paypal<br>'
|
||||
+ 'Se tiver alguma dúvida, veja o vídeo abaixo para ver como:<br>'
|
||||
+ 'Finalmente clique em "Enviar dinheiro agora"',
|
||||
qui_compariranno_le_info: 'No dia da partida do Navio, a informação do Sonhador aparecerá',
|
||||
commento_al_sognatore: 'Escreva aqui um comentário para o Sonhador:',
|
||||
posizione: 'Localização',
|
||||
come_inviare_regalo_con_paypal: 'Como enviar o presente via Paypal',
|
||||
ho_effettuato_il_dono: 'Eu fiz o Presente',
|
||||
clicca_conferma_dono: 'Clique aqui para confirmar que você fez o seu presente',
|
||||
fatto_dono: 'Você confirmou que o presente foi enviado',
|
||||
confermi_dono: 'Confirme que você enviou o seu Presente de 33€',
|
||||
dono_ricevuto: 'O seu Presente foi Recebido!',
|
||||
dono_ricevuto_2: 'Recebido',
|
||||
dono_ricevuto_3: 'Chegou!',
|
||||
confermi_dono_ricevuto: 'Por favor, confirme que você recebeu o presente de 33€ de {donatore}',
|
||||
confermi_dono_ricevuto_msg: 'Confirmado de que você recebeu o Presente de 33€ de {donatore}',
|
||||
msg_bot_conferma: '{donatore} confirmou que ele enviou o seu Presente de 33€ a {sognatore} (Commento: {commento})',
|
||||
ricevuto_dono_ok: 'Você confirmou que o presente foi recebido',
|
||||
entra_in_lavagna: 'Entre no seu quadro negro para ver os navios que partem',
|
||||
doni_ricevuti: 'Presentes Recebidos',
|
||||
doni_inviati_da_confermare: 'Presentes enviados (a serem confirmados)',
|
||||
doni_mancanti: 'Presentes em falta',
|
||||
temporanea: 'Temporário',
|
||||
nave_provvisoria: 'Foi-lhe atribuído um <strong>NAVIO TEMPORÁRIO</strong>.<br>É normal que veja uma alteração na data de partida, devido à actualização da classificação dos passageiros',
|
||||
ritessitura: 'ESCRITENDO',
|
||||
},
|
||||
reg: {
|
||||
volta: 'vez',
|
||||
volte: 'vezes',
|
||||
registered: 'Registrato',
|
||||
contacted: 'Contattato',
|
||||
name_complete: 'Nome Completo',
|
||||
num_invitati: 'Num.Invitati',
|
||||
is_in_whatsapp: 'In Whatsapp',
|
||||
is_in_telegram: 'In Telegram',
|
||||
cell_complete: 'Cellulare',
|
||||
failed: 'Fallito',
|
||||
ind_order: 'Num',
|
||||
ipaddr: 'IP',
|
||||
verified_email: 'E-mail verificado',
|
||||
you: 'Tu',
|
||||
cancella_invitato: 'Eliminar Convidado',
|
||||
regala_invitato: 'Presente Convidado',
|
||||
regala_invitante: 'Presente Convite',
|
||||
messaggio_invito: 'Mensagem de Convite',
|
||||
messaggio_invito_msg: 'Envie esta mensagem a todos aqueles para quem você quer compartilhar este Movimento !',
|
||||
videointro: 'Vídeo Introdutório',
|
||||
invitato_regalato: 'Presente Convidado',
|
||||
invitante_regalato: 'Convite Convidado',
|
||||
legenda: 'Lenda',
|
||||
aportador_solidario: 'Quem o convidou',
|
||||
username_regala_invitato: 'Nome de utilizador do destinatário do presente',
|
||||
aportador_solidario_nome_completo: 'Nominativo Invitante',
|
||||
aportador_solidario_nome_completo_orig: 'Invitante Originario',
|
||||
aportador_solidario_ind_order: 'Num Invitante',
|
||||
already_registered: '',
|
||||
reflink: 'Links para partilhar com os seus convidados:',
|
||||
linkzoom: 'Ligações para Zoom in:',
|
||||
page_title: 'Inscrição',
|
||||
made_gift: 'Presente',
|
||||
note: 'Note',
|
||||
incorso: 'Inscrição em curso...',
|
||||
richiesto: 'Campo Requerido',
|
||||
email: 'Email',
|
||||
intcode_cell: 'Int. prefixo',
|
||||
cell: 'Celular',
|
||||
cellreg: 'Cellulare con cui ti eri registrato',
|
||||
nationality: 'Nacionalidade',
|
||||
email_paypal: 'Email Paypal',
|
||||
revolut: 'Revolut',
|
||||
link_payment: 'Ligações Paypal.me',
|
||||
note_payment: 'Notas Adicionais',
|
||||
country_pay: 'País de destino dos pagamentos',
|
||||
username_telegram: 'Username Telegram',
|
||||
telegram: 'Chat Telegram \'{botname}\'',
|
||||
teleg_id: 'Telegram ID',
|
||||
teleg_id_old: 'OLD Tel ID',
|
||||
teleg_auth: 'Código de Autorização',
|
||||
click_per_copiare: 'Clique sobre ele para copiá-lo para a área de transferência',
|
||||
copia_messaggio: 'Copiar Mensagem',
|
||||
teleg_torna_sul_bot: '1) Copie o código clicando no botão acima<br>2) retorne ao {botname} clicando em 👇 e cole (ou escreva) o código',
|
||||
teleg_checkcode: 'Código Telegram',
|
||||
my_dream: 'O Meu Sonho',
|
||||
saw_and_accepted: 'Condizioni',
|
||||
saw_zoom_presentation: 'Ha visto Zoom',
|
||||
manage_telegram: 'Gestori Telegram',
|
||||
paymenttype: 'Formas de Pagamento disponíveis (Revolut)',
|
||||
selected: 'Selezionati',
|
||||
img: 'Immagine',
|
||||
date_reg: 'Data Reg.',
|
||||
requirement: 'Requisitos',
|
||||
perm: 'Permissão',
|
||||
username: 'Username (Pseudônimo)',
|
||||
username_short: 'Username',
|
||||
name: 'Nome',
|
||||
surname: 'Apelido',
|
||||
username_login: 'Username ou email',
|
||||
password: 'Senha',
|
||||
repeatPassword: 'Repita a senha',
|
||||
terms: 'Eu aceito os termos de privacidade',
|
||||
onlyadult: 'Confirmo que sou maior de idade',
|
||||
submit: 'Registar',
|
||||
title_verif_reg: 'Verificação de Registro',
|
||||
reg_ok: 'Registo efectuado com sucesso',
|
||||
verificato: 'Verificado',
|
||||
non_verificato: 'Não verificado',
|
||||
forgetpassword: 'Esqueceu sua senha?',
|
||||
modificapassword: 'Alterar Palavra-passe',
|
||||
err: {
|
||||
required: 'é obrigatório',
|
||||
email: 'digite um e-mail válido',
|
||||
errore_generico: 'Por favor preencha os campos corretamente',
|
||||
atleast: 'deve ser pelo menos',
|
||||
complexity: 'deve conter pelo menos 1 letra minúscula, 1 capital, 1 dígito',
|
||||
notmore: 'não deve ser maior do que',
|
||||
char: 'caracteres',
|
||||
terms: 'Você deve aceitar as condições, para continuar',
|
||||
email_not_exist: 'o Email não está presente no arquivo, verifique se está correcto',
|
||||
duplicate_email: 'o e-mail já foi registrado',
|
||||
user_already_exist: 'O registo com estes dados (nome, apelido e telemóvel) já foi feito. Para acessar o site, clique no botão LOGIN da HomePage.',
|
||||
user_extralist_not_found: 'Utilizador no arquivo não encontrado, introduza o Nome, Apelido e número de telemóvel comunicado na lista em 2019. Se este for um novo registo, deve registar-se através do LINK de quem o está a convidar.',
|
||||
user_not_this_aportador: 'Estás a usar um link de alguém que não o teu convidado original',
|
||||
duplicate_username: 'O nome de usuário já foi usado',
|
||||
username_not_valid: 'Username not valid',
|
||||
aportador_not_exist: 'O nome de usuário da pessoa que o convidou não está presente. Por favor, contacte-nos.',
|
||||
aportador_regalare_not_exist: 'Digite o nome de usuário da pessoa que você quer dar ao convidado como presente',
|
||||
sameaspassword: 'As senhas devem ser idênticas',
|
||||
},
|
||||
tips: {
|
||||
email: 'insira o seu e-mail',
|
||||
username: 'nome de usuário com pelo menos 6 caracteres',
|
||||
password: 'deve conter 1 letra minúscula, 1 capital e 1 dígito',
|
||||
repeatpassword: 'senha de repetição',
|
||||
},
|
||||
},
|
||||
op: {
|
||||
qualification: 'Qualifica',
|
||||
usertelegram: 'Username Telegram',
|
||||
disciplines: 'Discipline',
|
||||
certifications: 'Certificazioni',
|
||||
intro: 'Introduzione',
|
||||
info: 'Biografia',
|
||||
webpage: 'Pagina Web',
|
||||
days_working: 'Giorni Lavorativi',
|
||||
facebook: 'Pagina Facebook',
|
||||
},
|
||||
login: {
|
||||
page_title: 'Login',
|
||||
incorso: 'Iniciar Sessão',
|
||||
enter: 'Entrar',
|
||||
esci: 'Saia',
|
||||
errato: 'Username ou senha errados". Por favor, tente novamente',
|
||||
subaccount: 'Esta conta foi fundida com a sua conta inicial. Entre utilizando o nome de utilizador (e e-mail) da conta FIRST.',
|
||||
completato: 'Login concluído!',
|
||||
needlogin: 'Você deve fazer o login antes de continuar',
|
||||
},
|
||||
reset: {
|
||||
title_reset_pwd: 'Redefinir sua senha',
|
||||
send_reset_pwd: 'Enviar senha de reinicialização',
|
||||
incorso: 'pedido de um novo e-mail',
|
||||
email_sent: 'Email enviado',
|
||||
check_email: 'Verifique seu e-mail, você receberá uma mensagem com um link para redefinir sua senha. Esta ligação, por segurança, expirará após 4 horas.',
|
||||
token_scaduto: 'O token expirou ou já foi usado. Repita o procedimento de redefinição de senha',
|
||||
title_update_pwd: 'Atualize sua senha',
|
||||
update_password: 'Actualizar Palavra-passe',
|
||||
},
|
||||
logout: {
|
||||
uscito: 'Você está fora',
|
||||
},
|
||||
errors: {
|
||||
graphql: {
|
||||
undefined: 'non definito',
|
||||
},
|
||||
},
|
||||
showbigmap: 'Mostra la mappa più grande',
|
||||
todo: {
|
||||
titleprioritymenu: 'Priorità:',
|
||||
inserttop: 'Inserisci il Task in cima',
|
||||
insertbottom: 'Inserisci il Task in basso',
|
||||
edit: 'Descrizione Task:',
|
||||
completed: 'Ultimi Completati',
|
||||
usernotdefined: 'Attenzione, occorre essere Loggati per poter aggiungere un Todo',
|
||||
start_date: 'Data Inizio',
|
||||
status: 'Stato',
|
||||
completed_at: 'Data Completamento',
|
||||
expiring_at: 'Data Scadenza',
|
||||
phase: 'Fase',
|
||||
},
|
||||
notification: {
|
||||
status: 'Stato',
|
||||
ask: 'Attiva le Notifiche',
|
||||
waitingconfirm: 'Conferma la richiesta di Notifica',
|
||||
confirmed: 'Notifiche Attivate!',
|
||||
denied: 'Notifiche Disabilitate! Attenzione così non vedrai arrivarti i messaggi. Riabilitali per vederli.',
|
||||
titlegranted: 'Permesso Notifiche Abilitato!',
|
||||
statusnot: 'Stato Notifiche',
|
||||
titledenied: 'Permesso Notifiche Disabilitato!',
|
||||
title_subscribed: 'Sottoscrizione a FreePlanet.app!',
|
||||
subscribed: 'Ora potrai ricevere i messaggi e le notifiche.',
|
||||
newVersionAvailable: 'Aggiorna',
|
||||
},
|
||||
connection: 'Connessione',
|
||||
proj: {
|
||||
newproj: 'Titolo Progetto',
|
||||
newsubproj: 'Titolo Sotto-Progetto',
|
||||
insertbottom: 'Inserisci Nuovo Project',
|
||||
longdescr: 'Descrizione',
|
||||
hoursplanned: 'Ore Preventivate',
|
||||
hoursadded: 'Ore Aggiuntive',
|
||||
hoursworked: 'Ore Lavorate',
|
||||
begin_development: 'Inizio Sviluppo',
|
||||
begin_test: 'Inizio Test',
|
||||
progresstask: 'Progressione',
|
||||
actualphase: 'Fase Attuale',
|
||||
hoursweeky_plannedtowork: 'Ore settimanali previste',
|
||||
endwork_estimate: 'Data fine lavori stimata',
|
||||
privacyread: 'Chi lo puo vedere:',
|
||||
privacywrite: 'Chi lo puo modificare:',
|
||||
totalphases: 'Totale Fasi',
|
||||
themecolor: 'Tema Colore',
|
||||
themebgcolor: 'Tema Colore Sfondo',
|
||||
},
|
||||
where: {
|
||||
code: 'Id',
|
||||
whereicon: 'Icona',
|
||||
},
|
||||
col: {
|
||||
label: 'Etichetta',
|
||||
value: 'Valore',
|
||||
type: 'Tipo',
|
||||
},
|
||||
cal: {
|
||||
num: 'Numero',
|
||||
booked: 'Prenotato',
|
||||
booked_error: 'Prenotazione non avvenuta. Riprovare più tardi',
|
||||
sendmsg_error: 'Messaggio non inviato. Riprovare più tardi',
|
||||
sendmsg_sent: 'Messaggio Inviato',
|
||||
booking: 'Prenota Evento',
|
||||
titlebooking: 'Prenotazione',
|
||||
modifybooking: 'Modifica Prenotazione',
|
||||
cancelbooking: 'Cancella Prenotazione',
|
||||
canceledbooking: 'Prenotazione Cancellata',
|
||||
cancelederrorbooking: 'Cancellazione non effettuata, Riprovare più tardi',
|
||||
cancelevent: 'Cancella Evento',
|
||||
canceledevent: 'Evento Cancellato',
|
||||
cancelederrorevent: 'Cancellazione Evento non effettuata, Riprovare',
|
||||
event: 'Evento',
|
||||
starttime: 'Dalle',
|
||||
nextevent: 'Prossimo Evento',
|
||||
readall: 'Leggi tutto',
|
||||
enddate: 'al',
|
||||
endtime: 'alle',
|
||||
duration: 'Durata',
|
||||
hours: 'Orario',
|
||||
when: 'Quando',
|
||||
where: 'Dove',
|
||||
teacher: 'Condotto da',
|
||||
enterdate: 'Inserisci data',
|
||||
details: 'Dettagli',
|
||||
infoextra: 'Date e Ora Extra:',
|
||||
alldayevent: 'Tutto il giorno',
|
||||
eventstartdatetime: 'Inizio',
|
||||
enterEndDateTime: 'Fine',
|
||||
selnumpeople: 'Partecipanti',
|
||||
selnumpeople_short: 'Num',
|
||||
msgbooking: 'Messaggio da inviare',
|
||||
showpdf: 'Vedi PDF',
|
||||
bookingtextdefault: 'Prenoto per',
|
||||
bookingtextdefault_of: 'di',
|
||||
data: 'Data',
|
||||
teachertitle: 'Insegnante',
|
||||
peoplebooked: 'Prenotaz.',
|
||||
showlastschedule: 'Vedi tutto il Calendario',
|
||||
},
|
||||
msgs: {
|
||||
message: 'Messaggio',
|
||||
messages: 'Messaggi',
|
||||
nomessage: 'Nessun Messaggio',
|
||||
},
|
||||
event: {
|
||||
_id: 'id',
|
||||
typol: 'Typology',
|
||||
short_tit: 'Titolo Breve',
|
||||
title: 'Titolo',
|
||||
details: 'Dettagli',
|
||||
bodytext: 'Testo Evento',
|
||||
dateTimeStart: 'Data Inicial',
|
||||
dateTimeEnd: 'Data Fine',
|
||||
bgcolor: 'Colore Sfondo',
|
||||
days: 'Giorni',
|
||||
icon: 'Icona',
|
||||
img: 'Nomefile Immagine',
|
||||
img_small: 'Img Piccola',
|
||||
where: 'Dove',
|
||||
contribtype: 'Tipo Contributo',
|
||||
price: 'Contributo',
|
||||
askinfo: 'Chiedi Info',
|
||||
showpage: 'Vedi Pagina',
|
||||
infoafterprice: 'Note dopo la Quota',
|
||||
teacher: 'Insegnante', // teacherid
|
||||
teacher2: 'Insegnante2', // teacherid2
|
||||
infoextra: 'InfoExtra',
|
||||
linkpage: 'WebSite',
|
||||
linkpdf: 'Link ad un PDF',
|
||||
nobookable: 'Non Prenotabile',
|
||||
news: 'Novità',
|
||||
dupId: 'Id Duplicato',
|
||||
canceled: 'Cancellato',
|
||||
deleted: 'Eliminato',
|
||||
duplicate: 'Duplica',
|
||||
notempty: 'Il campo non può essere vuoto',
|
||||
modified: 'Modificato',
|
||||
showinhome: 'Mostra nella Home',
|
||||
showinnewsletter: 'Mostra nella Newsletter',
|
||||
color: 'Colore del titolo',
|
||||
},
|
||||
disc: {
|
||||
typol_code: 'Codice Tipologia',
|
||||
order: 'Ordinamento',
|
||||
},
|
||||
newsletter: {
|
||||
title: 'Desideri ricevere la nostra Newsletter?',
|
||||
name: 'Il tuo Nome',
|
||||
surname: 'Il tuo Cognome',
|
||||
namehint: 'Nome',
|
||||
surnamehint: 'Cognome',
|
||||
email: 'La tua Email',
|
||||
submit: 'Iscriviti',
|
||||
reset: 'Cancella',
|
||||
typesomething: 'Compilare correttamente il campo',
|
||||
acceptlicense: 'Accetto la licenza e i termini',
|
||||
license: 'Devi prima accettare la licenza e i termini',
|
||||
submitted: 'Iscritto',
|
||||
menu: 'Newsletter1',
|
||||
template: 'Modelli Email',
|
||||
sendemail: 'Invia',
|
||||
check: 'Controlla',
|
||||
sent: 'Già Inviate',
|
||||
mailinglist: 'Lista Contatti',
|
||||
settings: 'Impostazioni',
|
||||
serversettings: 'Server',
|
||||
others: 'Altro',
|
||||
templemail: 'Modello Email',
|
||||
datetoSent: 'DataOra Invio',
|
||||
activate: 'Attivato',
|
||||
numemail_tot: 'Email Totali',
|
||||
numemail_sent: 'Email Inviate',
|
||||
datestartJob: 'Inizio Invio',
|
||||
datefinishJob: 'Fine Invio',
|
||||
lastemailsent_Job: 'Ultima Inviata',
|
||||
starting_job: 'Invio Iniziato',
|
||||
finish_job: 'Invio Terminato',
|
||||
processing_job: 'Lavoro in corso',
|
||||
error_job: 'Info Errori',
|
||||
statesub: 'Sottoscritto',
|
||||
wrongerr: 'Email non valida',
|
||||
},
|
||||
privacy_policy: 'Política de Privacidade',
|
||||
cookies: 'Nós usamos Cookies para um melhor desempenho na web.',
|
||||
},
|
||||
};
|
||||
|
||||
export default msg_pt;
|
||||
@@ -1,533 +0,0 @@
|
||||
const msg_si = {
|
||||
si: {
|
||||
words: {
|
||||
da: 'da',
|
||||
a: 'a',
|
||||
},
|
||||
home: {
|
||||
guida: 'Vodnik',
|
||||
guida_passopasso: 'Vodnik po korakih',
|
||||
},
|
||||
grid: {
|
||||
editvalues: 'Modifica Valori',
|
||||
addrecord: 'Aggiungi Riga',
|
||||
showprevedit: 'Pokaži pretekle dogodke',
|
||||
columns: 'Vrstice',
|
||||
tableslist: 'Tabele',
|
||||
nodata: 'Noben podatek',
|
||||
},
|
||||
gallery: {
|
||||
author_username: 'Utente',
|
||||
title: 'Naziv',
|
||||
directory: 'Directory',
|
||||
list: 'Lista',
|
||||
},
|
||||
otherpages: {
|
||||
sito_offline: 'Spletno mesto se posodablja',
|
||||
modifprof: 'Uredi pProfil',
|
||||
biografia: 'Biografia',
|
||||
update: 'Posodobitev v teku...',
|
||||
error404: 'error404',
|
||||
error404def: 'error404def',
|
||||
admin: {
|
||||
menu: 'Administracija',
|
||||
eventlist: 'Vaše rezervacije',
|
||||
usereventlist: 'Uporabniške rezervacije',
|
||||
userlist: 'Seznam uporabnikov',
|
||||
zoomlist: 'Zoom koledar',
|
||||
extralist: 'Dodatni seznam',
|
||||
dbop: 'Operacije Db',
|
||||
tableslist: 'Seznam tabel',
|
||||
navi: 'Ladje',
|
||||
listadoni_navi: 'Seznam daril ladjic',
|
||||
newsletter: 'Novosti',
|
||||
pages: 'Strani',
|
||||
media: 'Mediji',
|
||||
gallery: 'Galerije',
|
||||
},
|
||||
manage: {
|
||||
menu: 'Upravljanje',
|
||||
manager: 'Upravitelj',
|
||||
nessuno: 'Noben',
|
||||
},
|
||||
messages: {
|
||||
menu: 'Vaša sporočila',
|
||||
},
|
||||
},
|
||||
sendmsg: {
|
||||
write: 'napiši',
|
||||
},
|
||||
stat: {
|
||||
imbarcati: 'Vkrcavanje',
|
||||
imbarcati_weekly: 'Vkrcavanje tedenske',
|
||||
imbarcati_in_attesa: 'Vkrcavanje čaka',
|
||||
qualificati: 'Kvalificirajte se z vsaj dvema gostoma',
|
||||
requisiti: 'Uporabniki s 7 zahtevami',
|
||||
zoom: 'Sodeloval pri Zoomu',
|
||||
modalita_pagamento: 'Vneseni načini plačila',
|
||||
accepted: 'Sprejete smernice + videoposnetki',
|
||||
dream: 'Napisali svoje Sanje',
|
||||
email_not_verif: 'Nepreverjena e-pošta',
|
||||
telegram_non_attivi: 'Telegram ni aktiven',
|
||||
telegram_pendenti: 'Čakajoči Telegram',
|
||||
reg_daily: 'Dnevne registracije',
|
||||
reg_weekly: 'Tedenske prijave',
|
||||
reg_total: 'Skupne registracije',
|
||||
},
|
||||
steps: {
|
||||
nuovo_imbarco: 'Rezerviraj še eno potovanje',
|
||||
vuoi_entrare_nuova_nave: 'Želis pomagati Gibanju, napredovati in vstopiti v še eno\novo Ladjico?<br>Z novim vplačilom 33€, lahko pričneš novo potovanje in tako dobiš še eno priložnost, da postaneš Sanjač!<br>'
|
||||
+ 'Če potrdiš boš dodan na seznam čakajočih za vkrcavanje.',
|
||||
vuoi_cancellare_imbarco: 'Ali ste prepričani, da želite izbrisati vaš vstop v Ladjo Ayni?',
|
||||
completed: 'zaključen',
|
||||
passi_su: '{passo} od {totpassi} koraki',
|
||||
video_intro_1: '1. Dobrodošli v {sitename}',
|
||||
video_intro_2: '2. Rojstvo {sitename}',
|
||||
read_guidelines: 'Sem prebral in sprejel napisal zgornje pogoje',
|
||||
saw_video_intro: 'Izjavljam, da sem pogledal videoposnetke',
|
||||
paymenttype: 'Načini plačila (Revolut)',
|
||||
paymenttype_long: '<strong> Načini plačila so: <ul> <li> <strong> Revolut </strong>: predplačniška kartica Revolut z angleškim IBAN (zunaj EU) popolnoma brezplačna, svobodnejša in enostavnejša za uporabo. Na voljo je aplikacija za mobilne naprave. </li><li> <strong> Paypal </strong> ker gre za zelo pogost sistem po vsej Evropi (prenos je brezplačen ) kjer lahko povežete predplačniške kartice, kreditne kartice ali tekoči račun <strong> BREZ KOMISIJ </strong>. Na ta način vam ne bo treba deliti številk svojih kartic ali c / c, ampak samo e-pošto, ki ste jo uporabili pri prijavi na Paypal. Mobilna aplikacija je na voljo. </li></ul>',
|
||||
paymenttype_long2: 'Paypal je potreben <br> Za izmenjavo daril priporočamo, da imate na voljo <strong> vsaj 2 načina plačila </strong>.',
|
||||
paymenttype_paypal: 'Kako odpreti Paypal račun (v 2 minutah)',
|
||||
paymenttype_paypal_carta_conto: 'Kako povezati kreditno / debetno kartico ali bančni račun na PayPal',
|
||||
paymenttype_paypal_link: 'Odprite račun s Paypalom',
|
||||
paymenttype_revolut: 'Kako odpreti račun z Revolutom (v 2 minutah)',
|
||||
paymenttype_revolut_link: 'Odprite račun z Revolutom',
|
||||
entra_zoom: 'Vstopi v Zoom',
|
||||
linee_guida: 'Sprejemam smernice',
|
||||
video_intro: 'Pogledam video',
|
||||
zoom: 'Sodelujem pri vsaj 1 zoomu',
|
||||
zoom_si_partecipato: 'Udeležili ste se vsaj 1-ga zooma',
|
||||
zoom_partecipa: 'Sodeloval je v vsaj 1-em Zoomu',
|
||||
zoom_no_partecipato: 'Še niste sodelovali pri zoomu (zahteva, da lahko vstopite)',
|
||||
zoom_long: 'Potrebno je sodelovati pri vsaj enem zoomu, vendar je priporočljivo, da se v gibanje vključite bolj aktivno. <br> <br>\n'
|
||||
+ '<strong> Osebje bo s sodelovanjem v zoomih beležilo udeležbe in vam bo omogočeno. </strong>',
|
||||
zoom_what: 'Navodila, kako namestiti Zoom Cloud Meeting',
|
||||
// sharemovement_devi_invitare_almeno_2: 'Nisi še vpisal 2-eh oseb',
|
||||
// sharemovement_hai_invitato: 'Si vpisaj vsaj 2 osebi',
|
||||
sharemovement_invitati_attivi_si: 'Imate vsaj 2 aktivna povabljena',
|
||||
sharemovement_invitati_attivi_no: '<strong> Opomba: </strong> Osebe, ki ste jih povabili, da so <strong> aktivni </strong>, morajo imeti <strong> izpolnjene vseh prvih 7 zahtev </strong> (glejte <strong> Belo tablo </strong> če želite razumeti, kaj manjka)',
|
||||
sharemovement: 'Delim gibanje',
|
||||
sharemovement_long: 'Delite gibanje {sitename} in jih povabite, da sodelujejo v zoomih dobrodošlice, da postanejo del te velike družine 😄 .<br>',
|
||||
inv_attivi_long: '',
|
||||
enter_prog_completa_requisiti: 'Izpolnite vse potrebne zahteve, da lahko vstopite na seznam za vstop.',
|
||||
enter_prog_requisiti_ok: 'Izpolnili ste vseh 7 zahtev za vpis na vstopni seznam. <br>',
|
||||
enter_prog_msg: 'V naslednjih dneh boste takoj, ko bo vaša ladja pripravljena, prejeli sporočilo!',
|
||||
enter_prog_msg_2: '',
|
||||
enter_nave_9req_ok: 'ČESTITKE! Izpolnili ste VSE 9 korakov! Hvala, ker ste pomagali {sitename} pri razširitvi! <br> Zelo kmalu boste lahko odšli na potovanje, si priskrbeli darilo in nadaljevali proti sanjaču ',
|
||||
enter_nave_9req_ko: 'Ne pozabite, da lahko pomagate rasti in razširiti gibanje, tako da svoje potovanje delite z drugimi!',
|
||||
enter_prog: 'Vpišem se na Seznam vkrcavanja',
|
||||
enter_prog_long: 'Ne pozabite, da lahko pomagate rasti in razširiti gibanje, tako da svoje potovanje delite z drugimi!<br>',
|
||||
collaborate: 'sodelovanje',
|
||||
collaborate_long: 'Še naprej sodelujem s spremljevalci, da bi prišel do dneva, ko bo moja ladja priplula.',
|
||||
dream: 'Pišem svoje sanje',
|
||||
dream_long: 'Tu napišite sanje, zaradi katerih ste vstopili v {sitename} in jih želite izpolniti. <br> Z drugimi bomo delili, da bomo sanjali skupaj !',
|
||||
dono: 'Darilo',
|
||||
dono_long: 'Darilo vročim na datum odhoda svoje ladje',
|
||||
support: 'Podpiram gibanje',
|
||||
support_long: 'Gibanje podpiram z vključevanjem energije, sodelovanjem in organiziranjem Zooma, pomaganjem in obveščam novincev z nadaljnjim širjenjem {sitename} vizije',
|
||||
ricevo_dono: 'Prejmem svoje darilo in POČAS',
|
||||
ricevo_dono_long: 'Ura !!! <br> <strong> TO GIBANJE JE resnično in možno, če vsi delamo SKUPAJ!</strong>',
|
||||
},
|
||||
dialog: {
|
||||
continue: 'Naprej',
|
||||
close: 'Zapri',
|
||||
copyclipboard: 'Kopirano v odložišče',
|
||||
ok: 'Ok',
|
||||
yes: 'Da',
|
||||
no: 'Ne',
|
||||
delete: 'Izbriši',
|
||||
cancel: 'Preklic',
|
||||
update: 'Osveži',
|
||||
add: 'Dodaj',
|
||||
today: 'Danes',
|
||||
book: 'Knjiga',
|
||||
avanti: 'Naslednja',
|
||||
indietro: 'Nazaj',
|
||||
finish: 'konec',
|
||||
sendmsg: 'Pošlji sporočilo',
|
||||
sendonlymsg: 'Pošlji samo eno sporočilo',
|
||||
msg: {
|
||||
titledeleteTask: 'Izbriši nalogo',
|
||||
deleteTask: 'Želite izbrisati {mytodo}?',
|
||||
},
|
||||
},
|
||||
comp: {
|
||||
Conta: 'CountPreštejte',
|
||||
},
|
||||
db: {
|
||||
recupdated: 'Posnetek posodobljen',
|
||||
recfailed: 'Napaka pri posodabljanju zapisa',
|
||||
reccanceled: 'Preklicana posodobitev. Obnovi prejšnjo vrednost',
|
||||
deleterecord: 'Izbriši zapis',
|
||||
deletetherecord: 'Želiš završti zapis?',
|
||||
deletedrecord: 'Zapis je izbrisan',
|
||||
recdelfailed: 'Napaka med brisanjem zapisa',
|
||||
duplicatedrecord: 'Podvojen zapis',
|
||||
recdupfailed: 'Napaka med podvajanjem zapisa',
|
||||
},
|
||||
components: {
|
||||
authentication: {
|
||||
telegram: {
|
||||
open: 'Kliknite tukaj, da odprete BOT Telegram in sledite navodilom',
|
||||
ifclose: 'Če se Telegram ne odpre s klikom na gumb ali ste ga izbrisali, pojdite na Telegram in poiščite \'{botname}\' na ikoni leče, nato pritisnite Start in sledite navodilom.',
|
||||
openbot: 'Odprite "{botname}" na Telegramu',
|
||||
},
|
||||
login: {
|
||||
facebook: 'Facebook',
|
||||
},
|
||||
email_verification: {
|
||||
title: 'tzačnite registracijo',
|
||||
introduce_email: 'vnesite svoj e-poštni naslov',
|
||||
email: 'E-pošta',
|
||||
invalid_email: 'Vaša e-pošta ni veljavna',
|
||||
verify_email: 'Preverite e-pošto',
|
||||
go_login: 'Vrnitev v prijavo',
|
||||
incorrect_input: 'Nepravilna vstavitev.',
|
||||
link_sent: 'Odprite nabiralnik, poiščite e-poštno sporočilo "Potrdi prijavo {sitename}" in kliknite "Preveri registracijo"',
|
||||
se_non_ricevo: 'Če ne prejmete e-pošte, poskusite preveriti v neželeni pošti ali nas kontaktirajte',
|
||||
title_unsubscribe: 'Odjavite se iz glasila',
|
||||
title_unsubscribe_done: 'Odjava se je uspešno zaključila',
|
||||
},
|
||||
},
|
||||
},
|
||||
fetch: {
|
||||
errore_generico: 'Splošna napaka',
|
||||
errore_server: 'Do strežnika ni mogoče dostopati. Poskusite znova. Hvala',
|
||||
error_doppiologin: 'Ponovno se prijavite. Dostop je bil odprt iz druge naprave.',
|
||||
},
|
||||
user: {
|
||||
notregistered: 'Preden lahko shranite svoje podatke, se morate registrirati za storitev',
|
||||
loggati: 'Uporabnik ni prijavljen',
|
||||
},
|
||||
dashboard: {
|
||||
data: 'Datum',
|
||||
data_rich: 'Zahtevani datum',
|
||||
ritorno: 'Vrnitev',
|
||||
invitante: 'povabljenca',
|
||||
num_tessitura: 'Numero di Tessitura:',
|
||||
attenzione: 'Pozornosti',
|
||||
downline: 'povabljen',
|
||||
downnotreg: 'Neregistrirani gostje',
|
||||
notreg: 'Ni registrirano',
|
||||
inv_attivi: 'Povabljeni s 7 zahtevami',
|
||||
numinvitati: 'Z vsaj 2-emi povabljenici',
|
||||
telefono_wa: 'Pišite na Whatsapp',
|
||||
sendnotification: 'Obvestilo pošljite prejemniku na Telegram BOT',
|
||||
ricevuto_dono: '😍🎊 Prejeli ste darilo {invitato} kot darilo od {mittente} !',
|
||||
ricevuto_dono_invitante: '😍🎊 Prejeli ste povabljenca kot darilo od {mittente} !',
|
||||
nessun_invitante: 'Nobenega povabljenega',
|
||||
nessun_invitato: 'Ni gostov',
|
||||
legenda_title: 'Kliknite na povabljeno ime, da si ogledate stanje njihovih zahtev.',
|
||||
nave_in_partenza: 'ladja v odhodu',
|
||||
nave_in_chiusura: 'Zapiranje Gift- Darilni klepet',
|
||||
nave_partita: 'levo naprej',
|
||||
tutor: 'Tutor',
|
||||
/* Ko postaneš Mediator te kontaktira en <strong>TUTOR</strong>, z njim moraš:<br><ol class="lista">' +
|
||||
'<li>Odpret svoj <strong>Gift- Darilni klepet</strong> (ti kot lastnik in Tutor ' +
|
||||
'kot administrator) s tem imenom:<br><strong>{nomenave}</strong></li>' +
|
||||
'<li>Klikni na ime klepeta na vrhu-> Popravi -> Administratorji -> "Dodaj Administratorja", izberi Tutorja v imeniku.</li>' +
|
||||
'<li>Moraš nastaviti klepet na način, da vsak, ki vstopi vidi predhodne objave(klikni na ime klepeta na vrhu, klikni na popravi, ' +
|
||||
'spremeni "zgodovina za nove člane" iz skrite v vidno.</li>' +
|
||||
'<li>Da najdeš <strong>link pravkar ustvarjenega klepeta </strong>: klikni na ime klepeta na vrhu, klikni na svinčnik -> "Vrsta Skupine" -> "z linkom povabi v skupino", klikni na"kopiraj link" in prilepi tu spodaj, v okvir<strong>"Link Gift Klepet"</strong></li>' +
|
||||
'<li>Pošlji Link Gift Klepeta vsem Donatorjem, tako, da klikneš na spodnji gumb.</li></ol>',
|
||||
*/
|
||||
sonomediatore: 'Ko ste MEDIATOR, vas bo <strong>TUTOR AYNI</strong> poklical preko sporočila na klepetu <strong>AYNI BOT</strong>',
|
||||
superchat: 'Pozorno preberi: SAMO če imaš težave s PLAČILOM, ali želiš biti ZAMENJAN, te dva Tutorja pričakujeta, da ti lahko pomagata v Klepetu:<br><a href="{link_superchat}" target="_blank">Vstopi v Super Klepet</a>',
|
||||
sonodonatore: '<ol class="lista"><li>Ko si na tej poziciji, boš povabljen, da vstopiš v <strong>Gift Klepet</strong> (Telegram) in tam boš našel še ostalih 7 Donatorjev, Mediatorja, Sanjača in enega predstavnika Tima.</li>'
|
||||
+ '<li>Imel boš 3 dni časa v za izpeljati vplačilo.<br></ol>',
|
||||
sonodonatore_seconda_tessitura: '<ol class="lista"><li>Tu si istočasno Mediator in Donator. Ker je to tvoj avtomatičen vpis, ti ni sedaj potrebno vplačati!<br></ol>',
|
||||
controlla_donatori: 'Preverite seznam donatorjev',
|
||||
link_chat: 'Povezava telegrama darilnega klepeta',
|
||||
tragitto: 'Potovanje',
|
||||
nave: 'Ladja',
|
||||
data_partenza: 'Datum<br>odhoda',
|
||||
doni_inviati: 'Darila<br>poslana',
|
||||
nome_dei_passaggi: 'Ime<br />prehodov',
|
||||
donatori: 'Donator',
|
||||
donatore: 'Donator',
|
||||
mediatore: 'Mediator',
|
||||
sognatore: 'Sanjač',
|
||||
sognatori: 'Sanjači',
|
||||
intermedio: 'POTNIK',
|
||||
pos2: 'Interm. 2',
|
||||
pos3: 'Interm. 3',
|
||||
pos5: 'Interm. 5',
|
||||
pos6: 'Interm. 6',
|
||||
gift_chat: 'Za vstop v Gift Klepet,klikni tu',
|
||||
quando_eff_il_tuo_dono: 'Ko izpelješ vplačilo',
|
||||
entra_in_gift_chat: 'Vstopi v Gift Klepet',
|
||||
invia_link_chat: 'Pošlji link Gift Klepeta Donatorjem',
|
||||
inviare_msg_donatori: '5) Pošlji sporočilo Donatorjem',
|
||||
msg_donatori_ok: 'Poslano sporočilo Donatorjem',
|
||||
metodi_disponibili: 'Načini na Voljo',
|
||||
importo: 'Uvoz',
|
||||
effettua_il_dono: 'Je prišel trenutek da Vplačaš svoje darilo Sanjarju<br>👉 {sognatore} 👈 !<br>'
|
||||
+ 'Vplačilo preko <a href="https://www.paypal.com" target="_blank">PayPal</a> na: {email}<br>'
|
||||
+ 'V sporocilo dopiši: Darilo<br>'
|
||||
+ '<strong><span style="color:red">POZOR POMEMBNO:</span> Zberi možnost<br>"SENDING TO A FRIEND"</strong><br>',
|
||||
paypal_me: '<br>2) Poenostavljena metoda<br><a href="{link_payment}" target="_blank">Klikneš direktno na link</a><br>'
|
||||
+ 'odpre se ti si PayPal z že vpisanim zneskom in postavljenim emailom osebe, ki ji vplačuješ<br>'
|
||||
+ 'V sporočilo dopiši: <strong>Darilo</strong><br>'
|
||||
+ '<strong><span style="color:red">POZOR POMEMBNO: ODMAKNI OZNAČBO NA </span></strong>: "Vplačujem storitve ali blago?" (Zaščita nakupa Paypal)<br>'
|
||||
+ 'Če imaš dvome, si oglej celoten postopek v spodnjem videu:<br>'
|
||||
+ 'Na koncu klikni “Pošlji denar -Vplačaj”',
|
||||
qui_compariranno_le_info: 'Na dan odhoda Ladje, prejmete vse potrebne informacije s strani Sanjača',
|
||||
commento_al_sognatore: 'Tu napišite komentar za Sanjač:',
|
||||
posizione: 'Pozicija',
|
||||
come_inviare_regalo_con_paypal: 'Kako vplačati preko',
|
||||
ho_effettuato_il_dono: 'POTRJUJEM VPLAČILO',
|
||||
clicca_conferma_dono: 'Klikni tu, da potrdiš izvedeno vplačilo',
|
||||
fatto_dono: 'Potrdil si, da je vplačilo bilo izvedeno',
|
||||
confermi_dono: 'Potrdi da si vplačal 33€',
|
||||
dono_ricevuto: 'Tvoje vplačilo je prejeto!',
|
||||
dono_ricevuto_2: 'Sprejeto',
|
||||
dono_ricevuto_3: 'Prispelo!',
|
||||
confermi_dono_ricevuto: 'Potrjujem, da sem sprejel darilo v znesku 33€ z strani {donatore}',
|
||||
confermi_dono_ricevuto_msg: 'Potrjena da je prejel Darilo 33€ iz strani {donatore}',
|
||||
msg_bot_conferma: '{donatore} je potrdil, da je poslal svoje Darilo v vrednosti 33€ {sognatore} (Commento: {commento})',
|
||||
ricevuto_dono_ok: 'Potrdil si da si darilo Sprejel',
|
||||
entra_in_lavagna: 'Vstopi v svojo Tablo, da pogledaš Ladje, ki bodo izplule',
|
||||
doni_ricevuti: 'Sprejeta Darila',
|
||||
doni_inviati_da_confermare: 'Poslana Darila (za potrditev)',
|
||||
doni_mancanti: 'Manjkajoča Darila',
|
||||
temporanea: 'Začasna',
|
||||
nave_provvisoria: 'Dodeljena ti je bila <strong>ZAČASNA ladja</strong>.<br>Normalno je, da boš zaradi posodobitve seznama potnikov videli spremenjen datum odhoda.',
|
||||
ritessitura: 'Avtomatičen Vpis',
|
||||
},
|
||||
reg: {
|
||||
volta: 'krat',
|
||||
volte: 'krat',
|
||||
registered: 'Registriran',
|
||||
contacted: 'Obveščen',
|
||||
name_complete: 'Popolno ime',
|
||||
num_invitati: 'Število povabljenih',
|
||||
is_in_whatsapp: 'v Whatsapp-u',
|
||||
is_in_telegram: 'V Telegram-u',
|
||||
cell_complete: 'Telefon',
|
||||
failed: 'Zgrešeno',
|
||||
ind_order: 'Num',
|
||||
ipaddr: 'IP',
|
||||
verified_email: 'Email Potrjena',
|
||||
reg_lista_prec: ' Vpiši Ime, Priimek in telefonsko številko, ki si vpisal prvič ob vstopu v Klepet!<br>Na ta način te sistem prepozna in obdržite pozicijo na listi.',
|
||||
nuove_registrazioni: 'Če je to NOVA registracija, moraš kontaktirati osebo, ki te je POVABILA, da ti posreduje PRAVILEN LINK za Registracijo pod njim/njo',
|
||||
you: 'Ti',
|
||||
cancella_invitato: 'Odstrani povabljenca',
|
||||
cancella_account: 'Zbriši registracijo',
|
||||
cancellami: 'Si siguren, da želiš popolnoma Izbrisati svojo Registracijo na {sitename} in tako izstopiti iz gibanja? Ne boš mogel več vstopiti na spletno stran s svojimi podatki, Izgubil Perderai boš svojo POZICIJO in tvoji povabljenci bodo PODARJENI osebi, ki te je povabila.',
|
||||
cancellami_2: 'ZADNJE OBVESTILO! Bi rad Definitivno izstopil iz {sitename} ?',
|
||||
account_cancellato: 'Tvoj profil je pravilno izbrisan',
|
||||
regala_invitato: 'Podari povabljenca',
|
||||
regala_invitante: 'Podari Povabljenega',
|
||||
messaggio_invito: 'Povabilno sporočilo',
|
||||
messaggio_invito_msg: 'Pošlji sporočilo vsem, s katerimi želiš deliti to Gibanje!',
|
||||
videointro: 'Predstavitveni Video',
|
||||
invitato_regalato: 'Povabljnec Podarjen',
|
||||
invitante_regalato: 'Povabljenega Podarjen',
|
||||
legenda: 'Zgodovina',
|
||||
aportador_solidario: 'Kdo te je Povabil',
|
||||
username_regala_invitato: 'Uporabniško ime Destinatorja darila',
|
||||
aportador_solidario_nome_completo: 'Polno ime povabljenca',
|
||||
aportador_solidario_nome_completo_orig: 'Originalen Povabljenec',
|
||||
aportador_solidario_ind_order: 'Številka Povabljenca',
|
||||
already_registered: 'Sem se že prijavil v klepet, pred 13 Januarjem',
|
||||
reflink: 'Link, ki ga deliš med svojimi povabljenci:',
|
||||
linkzoom: 'Link za vstop v Zoom:',
|
||||
page_title: 'Registracija',
|
||||
made_gift: 'Darilo',
|
||||
note: 'Zapis',
|
||||
incorso: 'Registracija v Teku...',
|
||||
richiesto: 'Obvezno Polje',
|
||||
email: 'Email',
|
||||
intcode_cell: 'Klicna številka.',
|
||||
cell: 'telefonska Telegram',
|
||||
cellreg: 'Telefonska s katero si se registriral',
|
||||
nationality: 'Nacionalnost',
|
||||
email_paypal: 'Email Paypal',
|
||||
revolut: 'Revolut',
|
||||
link_payment: 'Povezava paypal.me',
|
||||
note_payment: 'Dodatne opombe',
|
||||
country_pay: 'Država destinacije Vplačil',
|
||||
username_telegram: 'Uporabniško ime Telegram',
|
||||
telegram: 'Klepet Telegram \'{botname}\'',
|
||||
teleg_id: 'Telegram ID',
|
||||
teleg_id_old: 'STAR Tel ID',
|
||||
teleg_auth: 'Avtorizacijska koda',
|
||||
click_per_copiare: 'KLikni zgoraj, da kopiraš v odložišče',
|
||||
copia_messaggio: 'Kopiraj Sporočilo',
|
||||
teleg_torna_sul_bot: '1) Kopiraj kodo tako da klikneš na zgornji gumb<br>2) vrni se v {botname} s klikom tu spodaj 👇 in prilepi(ali napiši) kodo',
|
||||
teleg_checkcode: 'Koda Telegram',
|
||||
my_dream: 'Moje Sanje',
|
||||
saw_and_accepted: 'Pogoji',
|
||||
saw_zoom_presentation: 'Je bil prisoten na Zoom-u',
|
||||
manage_telegram: 'Skrbniki Telegram',
|
||||
paymenttype: 'Razpoložljivi načini Plačila (Revolut)',
|
||||
selected: 'Izbrani',
|
||||
img: 'Slika',
|
||||
date_reg: 'Datum Reg.',
|
||||
requirement: 'Zahteve',
|
||||
perm: 'Dovoljenja',
|
||||
username: 'Uporabniško ime (Pseudonimo)',
|
||||
username_short: 'Up.ime',
|
||||
name: 'Ime',
|
||||
surname: 'Priimek',
|
||||
username_login: 'Up. ime ali email',
|
||||
password: 'Geslo',
|
||||
repeatPassword: 'Ponovi geslo',
|
||||
terms: 'Sprejemam pogoje poslovanja',
|
||||
onlyadult: 'Potrjujem da sem Polnoleten',
|
||||
submit: 'Registriraj se',
|
||||
title_verif_reg: 'Preveri Registracijo',
|
||||
reg_ok: 'Uspešno si Registriran',
|
||||
verificato: 'Preverjeno',
|
||||
non_verificato: 'Ni Preverjeno',
|
||||
forgetpassword: 'Pozabljeno geslo?',
|
||||
modificapassword: 'Spremenite geslo',
|
||||
err: {
|
||||
required: 'je zahtevano',
|
||||
email: 'vpiši veljaven email',
|
||||
errore_generico: 'Prosimo, da pravilno izpolnete vsa polja',
|
||||
atleast: 'mora biti dolgo vsaj',
|
||||
complexity: 'ora vsebobati vsaj 1 malo črko, 1 veliko črko, 1 številko',
|
||||
notmore: 'ne sme biti dolgo več kot',
|
||||
char: 'karakterji',
|
||||
terms: 'Za nadaljevanje, moraš sprejeti pogoje poslovanja.',
|
||||
email_not_exist: 'E-naslov ni prisotna v arhivu, preveri, če je pravilna',
|
||||
duplicate_email: 'E-naslov je že bila registrirana',
|
||||
user_already_exist: 'Registracija s temi podatki (ime,priimek, telefonska)je že uporabljena.Za vstop na spletno stran, klikni na gumb LOGIN na Začetni Strani.',
|
||||
user_extralist_not_found: 'Uporabnik ni najden v arhivu, vpiši Ime,Priimek in telefonsko, ki si jo posredoval v listi leta 2019. Če je to nova registracija, se moraš prijaviti potom LINKA osebe, ki te vabi.',
|
||||
user_not_this_aportador: 'Uporabljaš link druge osebe, različen od tvojega originalnega povabljenca.',
|
||||
duplicate_username: 'To Uporabniško ime je že uporabljeno',
|
||||
username_not_valid: 'Username not valid',
|
||||
aportador_not_exist: 'To Uporabniško ime, ki te je povabilo, ni več prisotno.Kontaktiraj nas.',
|
||||
aportador_regalare_not_exist: 'Vpiši Uporabniško ime osebe, ki jo želiš podariti povabljencu',
|
||||
sameaspassword: 'Geslo mora biti enako',
|
||||
},
|
||||
tips: {
|
||||
email: 'vpiši svoj email',
|
||||
username: 'Uporabniško ime dolgo vsaj 6 karakterjev',
|
||||
password: 'mora vsebovati vsaj 1 majhno črko, 1 veliko črko in 1 številko',
|
||||
repeatpassword: 'ponovi geslo',
|
||||
|
||||
},
|
||||
},
|
||||
login: {
|
||||
page_title: 'Vpis',
|
||||
incorso: 'Vpis v teku',
|
||||
enter: 'Vstopi',
|
||||
esci: 'Izstopi',
|
||||
errato: 'Uporabniško ime ali geslo napačna.Poskusi ponovno',
|
||||
subaccount: 'Ta profil je bil združen z vašim prvim profilom. Izpelji dostop z vpisom uporabniskega imena(ali emaila) iz PRVEGA vpisa',
|
||||
completato: 'Uspešen vpis!',
|
||||
needlogin: 'Je potrebno izpeljati vpis preden nadaljuješ.',
|
||||
},
|
||||
reset: {
|
||||
title_reset_pwd: 'Ponastavi geslo',
|
||||
send_reset_pwd: 'Pošlji ponastavitev gesla',
|
||||
incorso: 'Zahteva Nova Email...',
|
||||
email_sent: 'Email poslana',
|
||||
check_email: 'Preveri svoje email, kjer boš prejel sporočilo z linkom za ponastaviti geslo.Zaradi varnostnih razlogov, bo ta link zapadel čez 4 ure.',
|
||||
token_scaduto: 'Geslo je izsteklo ali je že bilo uporabljeno.Ponovi postopek za ponastavitev gesla',
|
||||
title_update_pwd: 'Osveži svoje geslo',
|
||||
update_password: 'osveži Geslo',
|
||||
},
|
||||
logout: {
|
||||
izhod: 'Si izstopil',
|
||||
},
|
||||
errors: {
|
||||
graphql: {
|
||||
undefined: 'ne definiran',
|
||||
},
|
||||
},
|
||||
showbigmap: 'Pokaži večjo mapo',
|
||||
notification: {
|
||||
status: 'Status',
|
||||
ask: 'Aktiviraj Obveščanje',
|
||||
waitingconfirm: 'Potrdi prošnjo za Obveščanje',
|
||||
confirmed: 'Obveščanje Aktivirano!',
|
||||
denied: 'Obvestila Onemogočena! Pozor tako ne boš videl prihajajočih sporočil. Omogoči, da jih vidiš.',
|
||||
titlegranted: 'Dovoljenje Obveščanj Omogočeno!',
|
||||
statusnot: 'Status Obveščanj',
|
||||
titledenied: 'Dovoljenje Obveščanj Onemogočeno!',
|
||||
title_subscribed: 'Pod vpisi na spletno stran!',
|
||||
subscribed: 'Sedaj boš lahko sprejemal sporočila in obvestila.',
|
||||
newVersionAvailable: 'Osveži',
|
||||
},
|
||||
connection: 'Povezava',
|
||||
cal: {
|
||||
num: 'Število',
|
||||
booked: 'Rezervirano',
|
||||
booked_error: 'Rezervacija ni možna. Poskusi kasneje.',
|
||||
sendmsg_error: 'Sporočilo ni bilo poslano. Poskusi kasneje.',
|
||||
sendmsg_sent: 'Sporočilo Poslano',
|
||||
booking: 'Rezerviraj Dogodek',
|
||||
titlebooking: 'Rezervacija',
|
||||
modifybooking: 'Popravilo rezervacije',
|
||||
cancelbooking: 'Izbriši rezervacijo',
|
||||
canceledbooking: 'Rezervacija izbrisana',
|
||||
cancelederrorbooking: 'Brisanje ni izvedeno. Poskusi kasneje',
|
||||
cancelevent: 'Izbriši dogodek',
|
||||
canceledevent: 'Dogodek Izbrisan',
|
||||
cancelederrorevent: 'Izbris dogodka ni izveden, poskusi kasneje',
|
||||
event: 'Dogodek',
|
||||
starttime: 'Od',
|
||||
nextevent: 'Naslednji dogodek',
|
||||
readall: 'Preberi vse',
|
||||
enddate: 'v tem času',
|
||||
endtime: 'ob',
|
||||
duration: 'Trajanje',
|
||||
hours: 'Urnik',
|
||||
when: 'Kdaj',
|
||||
where: 'Kje',
|
||||
teacher: 'Vodi',
|
||||
enterdate: 'Vpiši datum',
|
||||
details: 'Podrobnosti',
|
||||
infoextra: 'Extra datum in ura:',
|
||||
alldayevent: 'Ves dan',
|
||||
eventstartdatetime: 'Pričetek',
|
||||
enterEndDateTime: 'Konec',
|
||||
selnumpeople: 'Sodelujoči',
|
||||
selnumpeople_short: 'Num',
|
||||
msgbooking: 'Sporočilo za pošiljati',
|
||||
showpdf: 'Poglej PDF',
|
||||
bookingtextdefault: 'Rezerviram za',
|
||||
bookingtextdefault_of: 'od',
|
||||
teachertitle: 'Učitelj',
|
||||
peoplebooked: 'Rezervacije.',
|
||||
showlastschedule: 'Poglej v kolendarju',
|
||||
},
|
||||
msgs: {
|
||||
message: 'Sporočilo',
|
||||
messages: 'Sporočila',
|
||||
nomessage: 'Nobenega Sporočila',
|
||||
},
|
||||
event: {
|
||||
dateTimeStart: 'Datum pričetka',
|
||||
dateTimeEnd: 'Datum zaključka',
|
||||
contribtype: 'Vrsta Prispevka',
|
||||
price: 'Prispevek',
|
||||
askinfo: 'Vprašaj Info',
|
||||
showpage: 'Poglej Stran',
|
||||
infoafterprice: 'Pojasnila po Kvoti',
|
||||
teacher: 'Učitelj', // teacherid
|
||||
teacher2: 'Učitelj2', // teacherid2
|
||||
infoextra: 'InfoExtra',
|
||||
linkpage: 'WebSite',
|
||||
linkpdf: 'Link za en PDF',
|
||||
nobookable: 'Ni možna rezervacija',
|
||||
news: 'Novosti',
|
||||
dupId: 'Id Podvojen',
|
||||
canceled: 'Izbrisan',
|
||||
deleted: 'Odstranjen',
|
||||
duplicate: 'Podvoji',
|
||||
notempty: 'Prostor ne sme biti prazen',
|
||||
modified: 'Popravljeno',
|
||||
showinhome: 'Pokaži na omači strani',
|
||||
showinnewsletter: 'Pokaži v Novostih',
|
||||
},
|
||||
privacy_policy: 'Pogoji Poslovanja',
|
||||
cookies: 'Uporabljamo piškotke za boljše delovanje na netu.',
|
||||
},
|
||||
};
|
||||
|
||||
export default msg_si;
|
||||
@@ -746,7 +746,24 @@ const msg_it = {
|
||||
},
|
||||
privacy_policy: 'Privacy Policy',
|
||||
cookies: 'Usiamo i Cookie per una migliore prestazione web.',
|
||||
sites: {
|
||||
active: 'Attivo',
|
||||
idapp: 'IdApp',
|
||||
name: 'Nome Sito',
|
||||
adminemail: 'Email Admin',
|
||||
manageremail: 'Email Gestione',
|
||||
replyTo: 'Reply To',
|
||||
host: 'Host',
|
||||
portapp: 'Porta',
|
||||
dir: 'Directory',
|
||||
email_from: 'Email From',
|
||||
email_pwd: 'Email Pwd',
|
||||
telegram_key: 'Chiave Bot Telegram',
|
||||
telegram_bot_name: 'Telegram BotName',
|
||||
pathreg_add: 'Suffisso',
|
||||
}
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
export default msg_it;
|
||||
|
||||
@@ -2191,6 +2191,11 @@ export const tools = {
|
||||
return userStore.isEditor
|
||||
},
|
||||
|
||||
isTeacher() {
|
||||
const userStore = useUserStore()
|
||||
return userStore.isTeacher
|
||||
},
|
||||
|
||||
getstrDate(mytimestamp: Date | number | string | undefined) {
|
||||
// console.log('getstrDate', mytimestamp)
|
||||
if (mytimestamp) return date.formatDate(mytimestamp, 'DD/MM/YYYY')
|
||||
|
||||
@@ -20,6 +20,7 @@ import bcrypt from 'bcryptjs'
|
||||
import { useTodoStore } from '@store/Todos'
|
||||
import { Router } from 'vue-router'
|
||||
import { useProjectStore } from '@store/Projects'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export const DefaultUser: IUserFields = {
|
||||
_id: '',
|
||||
@@ -101,6 +102,7 @@ export const useUserStore = defineStore('UserStore', {
|
||||
isZoomeri: false,
|
||||
isTratuttrici: false,
|
||||
isEditor: false,
|
||||
isTeacher: false,
|
||||
usersList: [],
|
||||
countusers: 0,
|
||||
lastparamquery: {},
|
||||
@@ -396,6 +398,19 @@ export const useUserStore = defineStore('UserStore', {
|
||||
if (!this.my.profile) {
|
||||
this.my.profile = DefaultProfile
|
||||
}
|
||||
|
||||
this.isAdmin = tools.isBitActive(this.my.perm, shared_consts.Permissions.Admin.value)
|
||||
this.isManager = tools.isBitActive(this.my.perm, shared_consts.Permissions.Manager.value)
|
||||
this.isTutor = tools.isBitActive(this.my.perm, shared_consts.Permissions.Tutor.value)
|
||||
this.isZoomeri = tools.isBitActive(this.my.perm, shared_consts.Permissions.Zoomeri.value)
|
||||
this.isDepartment = tools.isBitActive(this.my.perm, shared_consts.Permissions.Department.value)
|
||||
this.isTeacher = tools.isBitActive(this.my.perm, shared_consts.Permissions.Teacher.value)
|
||||
this.isEditor = tools.isBitActive(this.my.perm, shared_consts.Permissions.Editor.value)
|
||||
|
||||
this.my.tokens = []
|
||||
this.resetArrToken(this.my.tokens)
|
||||
this.my.tokens.push({ access: 'auth', token: this.x_auth_token, data_login: tools.getDateNow() })
|
||||
|
||||
},
|
||||
|
||||
updateLocalStorage(myuser: IUserFields) {
|
||||
|
||||
@@ -225,7 +225,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
|
||||
getrecSettingsByKey: (state: IGlobalState) => (key: any, serv: any): ISettings | undefined => {
|
||||
if (serv) return state.serv_settings.find((rec) => rec.key === key)
|
||||
const ris = state.settings.find((rec) => rec.key === key)
|
||||
console.log('getrecSettingsByKey=', ris)
|
||||
// console.log('getrecSettingsByKey=', ris)
|
||||
return ris
|
||||
},
|
||||
|
||||
@@ -253,13 +253,13 @@ export const useGlobalStore = defineStore('GlobalStore', {
|
||||
else if (myrec.type === costanti.FieldType.boolean) myrec.value_bool = value
|
||||
else myrec.value_str = value
|
||||
|
||||
console.log('setValueSettingsByKey value', value, 'myrec', myrec)
|
||||
// console.log('setValueSettingsByKey value', value, 'myrec', myrec)
|
||||
}
|
||||
},
|
||||
|
||||
getValueSettingsByKey(key: any, serv: any): any | undefined {
|
||||
const myrec = this.getrecSettingsByKey(key, serv)
|
||||
console.log('getValueSettingsByKey', myrec, 'key=', key, 'srv=', serv)
|
||||
// console.log('getValueSettingsByKey', myrec, 'key=', key, 'srv=', serv)
|
||||
if (myrec) {
|
||||
if ((myrec.type === costanti.FieldType.date) || (myrec.type === costanti.FieldType.onlydate)) return myrec.value_date
|
||||
if ((myrec.type === costanti.FieldType.number) || (myrec.type === costanti.FieldType.hours)) return myrec.value_num
|
||||
@@ -346,7 +346,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
|
||||
|
||||
// console.log('static_data.routes', static_data.routes)
|
||||
|
||||
console.log('$router', $router)
|
||||
// console.log('$router', $router)
|
||||
|
||||
if (tools.sito_online(false)) {
|
||||
arrpagesroute.forEach(function (route: any) {
|
||||
@@ -556,7 +556,7 @@ export const useGlobalStore = defineStore('GlobalStore', {
|
||||
},
|
||||
|
||||
async clearDataAfterLogout() {
|
||||
console.log('clearDataAfterLogout')
|
||||
// console.log('clearDataAfterLogout')
|
||||
|
||||
for (const table of ApiTables.allTables()) {
|
||||
await globalroutines('clearalldata', table, null)
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
ref="table"
|
||||
color="primary"
|
||||
title="Parametri di Configurazione Server"
|
||||
:data="serverData"
|
||||
:rows="serverData"
|
||||
:columns="columns"
|
||||
:filter="filter"
|
||||
selection="multiple"
|
||||
|
||||
@@ -15,33 +15,13 @@ interface IPageS {
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CfgServer',
|
||||
props: {
|
||||
loading: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
required: true,
|
||||
},
|
||||
paginationControl: {
|
||||
type: Object as PropType<IPageSrv>,
|
||||
required: true,
|
||||
/*default() {
|
||||
return { page: 1, rowsPerPage: 20 }
|
||||
},*/
|
||||
},
|
||||
pagination: {
|
||||
type: Object as PropType<IPageS>,
|
||||
required: true,
|
||||
default() {
|
||||
return { page: 1 }
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
setup() {
|
||||
const $q = useQuasar()
|
||||
const { t } = useI18n()
|
||||
const globalStore = useGlobalStore()
|
||||
|
||||
const provaval = ref(1)
|
||||
|
||||
const serverData = computed(() => globalStore.cfgServer.slice()) // [{ chiave: 'chiave1', valore: 'valore 1' }]
|
||||
const columns = ref([
|
||||
{
|
||||
@@ -80,7 +60,7 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
function SaveValue(newVal: any, valinitial: any) {
|
||||
// console.log('SaveValue', newVal, 'selected', this.selected)
|
||||
console.log('SaveValue', newVal)
|
||||
|
||||
const mydata: ICfgServer = {
|
||||
chiave: keysel.value,
|
||||
@@ -99,6 +79,7 @@ export default defineComponent({
|
||||
serverData,
|
||||
columns,
|
||||
filter,
|
||||
provaval,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<q-table
|
||||
:data="serverData"
|
||||
:rows="serverData"
|
||||
:columns="columns"
|
||||
:filter="filter"
|
||||
title="Configurazione Server"
|
||||
@@ -35,9 +35,15 @@
|
||||
<q-td key="valore" :props="props">
|
||||
{{ props.row.valore }}
|
||||
<q-popup-edit
|
||||
v-model="props.row.valore" title="Aggiorna Valore" buttons @save="SaveValue"
|
||||
v-model="props.row.valore"
|
||||
title="Aggiorna Valore"
|
||||
v-slot="scope"
|
||||
buttons
|
||||
@save="SaveValue"
|
||||
@show="selItem(props.row)">
|
||||
<q-input v-model="props.row.valore"/>
|
||||
<q-input
|
||||
v-model="scope.value"
|
||||
@keyup.enter="scope.set"/>
|
||||
</q-popup-edit>
|
||||
</q-td>
|
||||
</q-tr>
|
||||
|
||||
@@ -8,6 +8,7 @@ import { useI18n } from '@/boot/i18n'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { tools } from '@store/Modules/tools'
|
||||
import { costanti } from '@costanti'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'Dbop',
|
||||
@@ -75,6 +76,7 @@ export default defineComponent({
|
||||
return {
|
||||
EseguiFunz,
|
||||
tools,
|
||||
costanti,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
@@ -8,7 +8,6 @@
|
||||
:type="costanti.FieldType.string">
|
||||
</CMyFieldDb>
|
||||
|
||||
<!--
|
||||
<CTitleBanner
|
||||
class="q-pa-xs" :title="$t('pages.profile')" bgcolor="bg-primary" clcolor="text-white"
|
||||
myclass="myshad" :canopen="true">
|
||||
@@ -147,8 +146,6 @@
|
||||
</div>
|
||||
</CTitleBanner>
|
||||
|
||||
-->
|
||||
|
||||
<!--
|
||||
<CTitleBanner class="q-pa-xs" :title="$t('pages.payment')" bgcolor="bg-primary" clcolor="text-white"
|
||||
myclass="myshad" :canopen="true">
|
||||
|
||||
Reference in New Issue
Block a user