Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
ogptoolbox-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
53
Issues
53
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
ogptoolbox
ogptoolbox-ui
Commits
1272cac2
Commit
1272cac2
authored
Feb 27, 2017
by
Emmanuel Raviart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve copyright line & contributors.
parent
2dab94c3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
76 additions
and
39 deletions
+76
-39
CONTRIBUTORS.md
CONTRIBUTORS.md
+4
-4
src/I18n.elm
src/I18n.elm
+0
-28
src/I18nHtml.elm
src/I18nHtml.elm
+69
-2
src/Root/View.elm
src/Root/View.elm
+3
-5
No files found.
CONTRIBUTORS.md
View file @
1272cac2
...
...
@@ -7,15 +7,15 @@ contributed from an organization can be listed under the organization
that actually holds the copyright for their contributions. Those
individuals should have their names indented and be marked with a '-'
*
[
Etalab
](
http://www.etalab.gouv.fr/
)
*
[
Etalab
](
http://www.etalab.gouv.fr/
)
(
2016
)
-
Christophe Benz
-
Angelo Chiacchio
-
Paula Forteza
-
Emmanuel Raviart
-
Johan Richer
*
[
OGPToolbox.org
](
https://ogptoolbox.org/
)
*
[
OGPToolbox.org
](
https://ogptoolbox.org/
)
(
2017
)
-
Paula Forteza
-
Emmanuel Raviart
-
Johan Richer
*
Milo van der Linden
*
Benjamin Ooghe Tabanou
*
Milo van der Linden
(2017)
*
Benjamin Ooghe Tabanou
(2017)
src/I18n.elm
View file @
1272cac2
...
...
@@ -74,7 +74,6 @@ type TranslationId
|
Compare
|
Contact
|
ContactContent
|
Copyright
|
CountVersionsAvailable
Int
|
Create
|
CreateAccountNow
...
...
@@ -2342,33 +2341,6 @@ getTranslationSet translationId =
,
swedish
=
todo
}
Copyright
->
{
bulgarian
=
todo
,
croatian
=
todo
,
czech
=
todo
,
danish
=
todo
,
dutch
=
s
"
© 2016 Etalab. Ontworpen door Nodesign.net"
,
english
=
s
"
© 2016 Etalab. Design by Nodesign.net"
,
estonian
=
todo
,
finnish
=
todo
,
french
=
s
"
© 2016 Etalab. Design par Nodesign.net"
,
german
=
todo
,
greek
=
todo
,
hungarian
=
todo
,
irish
=
todo
,
italian
=
todo
,
latvian
=
todo
,
lithuanian
=
todo
,
maltese
=
todo
,
polish
=
todo
,
portuguese
=
todo
,
romanian
=
todo
,
slovak
=
todo
,
slovenian
=
todo
,
spanish
=
todo
,
swedish
=
todo
}
CountVersionsAvailable
count
->
{
bulgarian
=
todo
,
croatian
=
todo
...
...
src/I18nHtml.elm
View file @
1272cac2
module
I18nHtml
exposing
(
..
)
import
Html
exposing
(
a
,
div
,
Html
,
li
,
p
,
text
,
ul
)
import
Html
exposing
(
a
,
div
,
Html
,
li
,
p
,
span
,
text
,
ul
)
import
Html
.
Attributes
exposing
(
class
,
href
,
target
)
import
I18n
exposing
(
Language
(
..
)
,
oneOfMaybes
,
s
,
todo
)
type
TranslationId
=
TheProjectPresentationParagraphs
=
CopyrightLine
|
TheProjectPresentationParagraphs
type
alias
TranslationSet
msg
=
...
...
@@ -40,6 +41,72 @@ type alias TranslationSet msg =
getTranslationSet
:
TranslationId
->
TranslationSet
msg
getTranslationSet
translationId
=
case
translationId
of
CopyrightLine
->
{
bulgarian
=
todo
,
croatian
=
todo
,
czech
=
todo
,
danish
=
todo
,
dutch
=
s
<|
span
[]
[
text
"
© 2016 "
,
a
[
href
"
http://www.etalab.gouv.fr/"
,
target
"
_blank"
]
[
text
"
Etalab"
]
,
text
"
— © 2017 "
,
a
[
href
"
https://framagit.org/ogptoolbox/ogptoolbox-ui/blob/master/CONTRIBUTORS.md"
,
target
"
_blank"
]
[
text
"
OGP Toolbox contributors"
]
,
text
"
— Ontworpen door "
,
a
[
href
"
http://www.nodesign.net/"
,
target
"
_blank"
]
[
text
"
Nodesign.net"
]
]
,
english
=
s
<|
p
[]
[
text
"
© 2016 "
,
a
[
href
"
http://www.etalab.gouv.fr/"
,
target
"
_blank"
]
[
text
"
Etalab"
]
,
text
"
— © 2017 "
,
a
[
href
"
https://framagit.org/ogptoolbox/ogptoolbox-ui/blob/master/CONTRIBUTORS.md"
,
target
"
_blank"
]
[
text
"
OGP Toolbox contributors"
]
,
text
"
— Design by "
,
a
[
href
"
http://www.nodesign.net/"
,
target
"
_blank"
]
[
text
"
Nodesign.net"
]
]
,
estonian
=
todo
,
finnish
=
todo
,
french
=
s
<|
p
[]
[
text
"
© 2016 "
,
a
[
href
"
http://www.etalab.gouv.fr/"
,
target
"
_blank"
]
[
text
"
Etalab"
]
,
text
"
— © 2017 "
,
a
[
href
"
https://framagit.org/ogptoolbox/ogptoolbox-ui/blob/master/CONTRIBUTORS.md"
,
target
"
_blank"
]
[
text
"
Contributeurs OGP Toolbox"
]
,
text
"
— Design par "
,
a
[
href
"
http://www.nodesign.net/"
,
target
"
_blank"
]
[
text
"
Nodesign.net"
]
]
,
german
=
todo
,
greek
=
todo
,
hungarian
=
todo
,
irish
=
todo
,
italian
=
todo
,
latvian
=
todo
,
lithuanian
=
todo
,
maltese
=
todo
,
polish
=
todo
,
portuguese
=
todo
,
romanian
=
todo
,
slovak
=
todo
,
slovenian
=
todo
,
spanish
=
todo
,
swedish
=
todo
}
TheProjectPresentationParagraphs
->
{
bulgarian
=
todo
,
croatian
=
todo
...
...
src/Root/View.elm
View file @
1272cac2
...
...
@@ -17,6 +17,7 @@ import Html.Attributes.Aria exposing (ariaHidden, ariaLabelledby, role)
import
Html
.
Events
exposing
(
onClick
,
onInput
,
onSubmit
,
onWithOptions
)
import
Html
.
Helpers
exposing
(
aForPath
)
import
I18n
import
I18nHtml
import
Json
.
Decode
import
Press
import
Root
.
Types
exposing
(
..
)
...
...
@@ -52,8 +53,7 @@ view model =
]
]
++
[
content
,
div
[
class
"
fixed-footer"
]
[
text
(
I18n
.
translate
language
I18n
.
Copyright
)
]
,
div
[
class
"
fixed-footer"
]
[
I18nHtml
.
translate
language
I18nHtml
.
CopyrightLine
]
,
viewAuthenticatorModal
model
language
,
viewNewCardModal
model
language
,
viewBackdrop
model
...
...
@@ -529,9 +529,7 @@ viewFooter model language =
]
]
,
div
[
class
"
row copyright"
]
[
div
[
class
"
col-md-12"
]
[
text
(
I18n
.
translate
language
I18n
.
Copyright
)
]
]
[
div
[
class
"
col-md-12"
]
[
I18nHtml
.
translate
language
I18nHtml
.
CopyrightLine
]
]
]
]
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment