Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wotwizard-ui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
wotwizard-ui
Commits
393164ff
Commit
393164ff
authored
3 years ago
by
Pierre-Jean CHANCELLIER
Browse files
Options
Downloads
Patches
Plain Diff
replace input vy select for futures_sorties
parent
2a0ecdcb
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
i18n/locales/en.json
+2
-1
2 additions, 1 deletion
i18n/locales/en.json
i18n/locales/es.json
+2
-1
2 additions, 1 deletion
i18n/locales/es.json
i18n/locales/fr.json
+2
-1
2 additions, 1 deletion
i18n/locales/fr.json
pages/previsions/futures_sorties.vue
+8
-10
8 additions, 10 deletions
pages/previsions/futures_sorties.vue
with
14 additions
and
13 deletions
i18n/locales/en.json
+
2
−
1
View file @
393164ff
...
...
@@ -77,6 +77,7 @@
"infos"
:
"Informations"
,
"inout"
:
"Entries and exits of the web of trust for the last 2 days"
,
"inpreparation"
:
"In preparation"
,
"jours"
:
"0 days | 1 day | {n} days"
,
"lexique"
:
"Lexicon"
,
"limitDate"
:
"Deadline"
,
"membre"
:
{
...
...
@@ -158,7 +159,7 @@
"parmembre"
:
"Forecasts by members"
,
"period"
:
{
"title"
:
"Search period"
,
"desc"
:
"Select the desired number of days
between 1 and 30
"
"desc"
:
"Select the desired number of days"
},
"title"
:
"Forecasts"
},
...
...
This diff is collapsed.
Click to expand it.
i18n/locales/es.json
+
2
−
1
View file @
393164ff
...
...
@@ -77,6 +77,7 @@
"infos"
:
"Informaciones"
,
"inout"
:
"Entradas y salidas de la red de confianza en los últimos 2 días"
,
"inpreparation"
:
"En preparación"
,
"jours"
:
"0 días | 1 día | {n} días"
,
"lexique"
:
"Léxico"
,
"limitDate"
:
"Fecha límite"
,
"membre"
:
{
...
...
@@ -158,7 +159,7 @@
"parmembre"
:
"Previsiones por miembros"
,
"period"
:
{
"title"
:
"Período de búsqueda"
,
"desc"
:
"Seleccione el número de días deseado
entre 1 y 30
"
"desc"
:
"Seleccione el número de días deseado"
},
"title"
:
"Pronósticos"
},
...
...
This diff is collapsed.
Click to expand it.
i18n/locales/fr.json
+
2
−
1
View file @
393164ff
...
...
@@ -77,6 +77,7 @@
"infos"
:
"Informations"
,
"inout"
:
"Entrées et sorties de la toile de confiance des 2 derniers jours"
,
"inpreparation"
:
"En préparation"
,
"jours"
:
"0 jours | 1 jour | {n} jours"
,
"lexique"
:
"Lexique"
,
"limitDate"
:
"Date limite"
,
"membre"
:
{
...
...
@@ -158,7 +159,7 @@
"parmembre"
:
"Prévisions par membres"
,
"period"
:
{
"title"
:
"Période de recherche"
,
"desc"
:
"Sélectionnez le nombre de jours souhaités
entre 1 et 30
"
"desc"
:
"Sélectionnez le nombre de jours souhaités"
},
"title"
:
"Prévisions"
},
...
...
This diff is collapsed.
Click to expand it.
pages/previsions/futures_sorties.vue
+
8
−
10
View file @
393164ff
...
...
@@ -6,17 +6,18 @@
<label
for=
"period"
class=
"form-label"
>
{{
$t
(
"
previsions.period.title
"
)
}}
</label>
<input
type=
"number"
<select
class=
"form-control"
:class=
"
{ 'is-invalid': periodIsInvalid() }"
id=
"period"
aria-describedby=
"periodHelp"
v-model=
"period"
autocomplete="off"
min="1"
max="30"
@keyup="save" />
@
change=
"save"
>
<option
v-for=
"index in 30"
:key=
"index"
:value=
"index"
>
{{
$tc
(
"
jours
"
,
index
)
}}
</option>
</select>
<small
id=
"periodHelp"
class=
"form-text text-muted"
>
{{
$t
(
"
previsions.period.desc
"
)
}}
</small>
...
...
@@ -116,9 +117,6 @@ export default {
return
this
.
period
*
day
}
return
defaultPeriod
},
periodIsInvalid
()
{
return
this
.
period
!=
""
&&
(
this
.
period
<
1
||
this
.
period
>
30
)
}
},
apollo
:
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment