Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Application web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Agroclim
AgroMetInfo
Application web
Merge requests
!139
Resolve "Préciser la comparaison à la normale dans l'infobulle"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Préciser la comparaison à la normale dans l'infobulle"
108-preciser-la-comparaison-a-la-normale-dans-l-infobulle
into
main
Overview
0
Commits
1
Pipelines
2
Changes
3
Merged
Olivier Maury
requested to merge
108-preciser-la-comparaison-a-la-normale-dans-l-infobulle
into
main
3 months ago
Overview
0
Commits
1
Pipelines
2
Changes
3
Expand
Suite aux retours de la revue de sprint. Closes
#108 (closed)
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
76680575
1 commit,
3 months ago
3 files
+
35
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
www-client/src/main/java/fr/agrometinfo/www/client/i18n/MapMessages.java
+
19
−
0
Options
@@ -22,4 +22,23 @@ public interface MapMessages extends Messages {
*/
@DefaultMessage
(
"{0}: {1,number} {2}<br/>PRA: {3}<br/>Period: {4,date,medium} − {5,date,medium}"
)
String
popupContent
(
String
indicator
,
Double
value
,
String
unit
,
String
pra
,
Date
startDate
,
Date
endDate
);
/**
* @param indicator indicator name
* @param sign value sign
* @param value indicator value
* @param unit unit
* @param pra Petite région agricole
* @param startDate start date of period
* @param endDate date of last computation
* @return translation
*/
@DefaultMessage
(
"""
{0}<br/>
Comparison with the normal: {1}{2,number} {3}<br/>
PRA: {4}<br/>
Period: {5,date,medium} − {6,date,medium}
"""
)
String
popupContentWithNormal
(
String
indicator
,
String
sign
,
Double
value
,
String
unit
,
String
pra
,
Date
startDate
,
Date
endDate
);
}
Loading