Compare commits

..

13 commits

Author SHA1 Message Date
399a864125
forgejo-ci: use default actions
All checks were successful
/ preview (pull_request) Successful in 39s
2024-09-10 07:42:56 -04:00
7d45b0e710
{bootstrap.local.css,local.css}: import from rewrite draft
All checks were successful
/ preview (pull_request) Successful in 38s
2024-09-08 18:50:15 -04:00
13b7a2d158
templates/page: make navbar transparent 2024-09-08 18:49:36 -04:00
5f7d547c07
content/index: fix header div 2024-09-08 18:49:06 -04:00
fb00c5e544
content/images/*: imported from rewrite draft 2024-09-08 18:48:16 -04:00
c3086e1a29
bootstrap.local.css: max width of content now 100% 2024-09-08 17:53:55 -04:00
6bf66149a1
content/index: block concept draft
All checks were successful
/ preview (pull_request) Successful in 35s
2024-09-08 17:49:27 -04:00
4ced4afa52
content/footer: scroll up button draft 2024-09-08 17:49:08 -04:00
61956a69c9
templates/*: move to bootstrap 5
All checks were successful
/ preview (pull_request) Successful in 38s
2024-09-08 17:24:20 -04:00
fdebe12df7
templates/pages: trailing if statement
Some checks failed
/ preview (pull_request) Successful in 44s
/ cleanup (pull_request) Failing after 28s
2024-09-08 16:27:20 -04:00
b039af4160
templates/page: drop dynamic
Some checks failed
/ preview (pull_request) Failing after 31s
2024-09-08 16:25:19 -04:00
79d1dccf32
templates/page: drop comments 2024-09-08 16:24:28 -04:00
7fb0d721d3
templates/*: Drop HTML5 conditions 2024-09-08 16:23:23 -04:00
106 changed files with 2293 additions and 1536 deletions

View file

@ -11,11 +11,12 @@ jobs:
- name: Environment setup
run: |
apk add git nodejs jq coreutils curl tree gawk grep
- name: Pages repo pull
- name: Public repo pull
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: pages
token: ${{ secrets.PAGES_TOKEN }}
ref: public
- name: Render website
run: |
export GITHUB_PR_NAME=$(grep -l ${{ github.sha }} previews/*/git_sha.txt | awk -F '/' '{print $2}')

View file

@ -0,0 +1,27 @@
on:
push:
branches:
- 'public'
jobs:
deploy:
runs-on: x86_64
container: alpine:latest
env:
GIT_SSH_COMMAND: ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no
steps:
- name: Environment setup
run: |
apk add git nodejs openssh-client-common openssh-client-default
- name: Start ssh-agent
uses: actions/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.PAGES_PRIVKEY }}
- name: Repo pull
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Website upload
run: |
git remote set-url origin ${{ vars.PAGES_TARGET }}
git push -f

View file

@ -11,27 +11,28 @@ jobs:
steps:
- name: Environment setup
run: |
apk add git ikiwiki po4a perl-yaml-tiny tree nodejs imagemagick-perlmagick imagemagick imagemagick-jpeg findutils bash imagemagick-webp
apk add git ikiwiki po4a perl-yaml-tiny tree nodejs
- name: Repo pull
uses: actions/checkout@v4
uses: https://github.com/actions/checkout@v4
with:
fetch-depth: 1
- name: Pages repo pull
uses: actions/checkout@v4
token: ${{ secrets.PAGES_TOKEN }}
- name: Public repo pull
uses: https://github.com/actions/checkout@v4
with:
fetch-depth: 0
ref: pages
ref: public
path: public
token: ${{ secrets.PAGES_TOKEN }}
- name: Render website
run: ikiwiki --setup ikiwiki.setup
- name: Website upload
run: |
cp .pages-domains public/.domains
cp .pages-redirect public/_redirects
rm -Rf public/.forgejo
mkdir -p public/.forgejo/workflows
cp .forgejo/workflows/deploy.yaml public/.forgejo/workflows/.
git log -1 --pretty=%B > commit.txt
cd public
find -name 'index.html' -type 'l' -delete
find -name 'index.fr.html' -exec bash -c 'ln -s "${0/.*\/}" "${0/.fr/}"' {} \;
date > generated.txt
# Note: the following account information will not work on GHES
git config user.name "forgejo-actions[bot]"

View file

@ -10,18 +10,20 @@ jobs:
steps:
- name: Environment setup
run: |
apk add git ikiwiki po4a perl-yaml-tiny tree nodejs jq coreutils curl imagemagick-perlmagick imagemagick imagemagick-jpeg findutils bash imagemagick-webp
echo "GITHUB_PR_NAME=$(curl -Ls ${{ github.server_url }}/api/v1/repos/${{ github.repository }}/pulls/${{ github.ref_name }} -H 'accept: application/json' -H 'Authorization: token ${{ secrets.FORGEJO_TOKEN }}' | jq .title | tr ' ' '-' | tr -d ':' | tr -d '"' | tr '[:upper:]' '[:lower:]' | tr '/' '-' | tr -d ',')" >> $GITHUB_ENV
apk add git ikiwiki po4a perl-yaml-tiny tree nodejs jq coreutils curl
echo "GITHUB_PR_NAME=$(curl -Ls ${{ github.server_url }}/api/v1/repos/${{ github.repository }}/pulls/${{ github.ref_name }} | jq .title | tr ' ' '-' | tr -d ':' | tr -d '"' | tr '[:upper:]' '[:lower:]' | tr '/' '-')" >> $GITHUB_ENV
- name: Repo pull
uses: actions/checkout@v4
with:
fetch-depth: 1
token: ${{ secrets.PAGES_TOKEN }}
- name: Public repo pull
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: pages
ref: public
path: public
token: ${{ secrets.PAGES_TOKEN }}
- name: Render website
run: |
rm -rf public/previews/$GITHUB_PR_NAME || true
@ -30,11 +32,11 @@ jobs:
ikiwiki --setup ikiwiki.setup
cd public/previews
tree -d -H '.' -L 1 --noreport --charset utf-8 -T "Versions" -o index.html
cd $GITHUB_PR_NAME
find -name 'index.html' -type 'l' -delete
find -name 'index.fr.html' -exec bash -c 'ln -s "${0/.*\/}" "${0/.fr/}"' {} \;
- name: Website upload
run: |
rm -Rf public/.forgejo
mkdir -p public/.forgejo/workflows
cp .forgejo/workflows/deploy.yaml public/.forgejo/workflows/.
git log -1 --pretty=%B > commit.txt
cd public
date > previews/$GITHUB_PR_NAME/generated.txt

4
.gitignore vendored
View file

@ -1,3 +1,3 @@
.ikiwiki
content/.ikiwiki
public/
tools/http-server/
http-server/

View file

@ -1 +0,0 @@
www.ilot.io

View file

View file

@ -1,26 +1,76 @@
/* Color palette */
:root {
--bs-light-rgb: 248, 248, 248;
/* Purple */
--dark-purple: #3a2354;
--medium-purple: #56347c; /* logo */
--light-purple: #9f73d2;
--background-purple: #f3edf9;
/* Green */
--darker-green: #014d00;
--dark-green: #3b833a;
--medium-dark-green: #53b351;
--medium-light-green: #73d171; /* buttons */
--background-green: #a8ffa0;
/* Gray */
--dark-gray: #393a35;
--medium-dark-gray: #58595b;
--medium-light-gray: #b5b7b9;
--light-gray: #dadbdc;
--background-gray: #f0f1f2;
/* Misc */
--yellow: #ffd500;
--light-yellow: #ffec8c;
--background-yellow: #fffff0;
--red: #ef1f31;
/* Shadows */
--banner-button-shadow: 1px 1px 1px black, 2px 2px 5px var(--dark-gray), inset 1px 1px 1px var(--background-green);
--green-button-shadow: 1px 1px 1px var(--medium-dark-gray), 2px 2px 5px var(--light-gray), inset 1px 1px 1px var(--background-green);
--gray-button-shadow: 1px 1px 1px black, 2px 2px 5px var(--dark-gray), inset 1px 1px 1px var(--background-gray);
}
a {
--bs-link-color: #337ab7;
}
/* Sticky footer styles
-------------------------------------------------- */
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 60px;
}
.footer {
position: absolute;
width: 100%;
padding-bottom: 15px;
background-color: #f5f5f5;
}
/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */
main > .container {
padding: 60px 15px 15px;
body > .container {
padding:;
}
.container .text-muted {
margin: 20px 0;
}
.pagedate {
font-size: 14px;
}
.footer > .container {
padding-right: 15px;
padding-left: 15px;
}
textarea {
width: 100%;
}
@ -47,22 +97,30 @@ code {
/* list-style-type: none; */
}
a {
text-decoration: none;
}
/* limit main content to ~90 chars per line */
/* update: practical typography recommends 2-3 alphabets */
#content {
max-width: 35em; /* this is 2.5 alphabets with Charter */
margin-top: 15px
max-width: 100%;
}
/* limit header as well otherwise logo is out of whack without sidebar */
.fixed-top .container-fluid {
.navbar-fixed-top .container {
max-width: 55em;
}
.navbar .selflink {
display: block;
padding: 15px 15px;
}
.navbar .in {
padding-top: 9px;
}
.navbar .collapsing {
padding-top: 9px;
}
/* some hacking at typefaces to get some fresh zest in here
* fallbacks from:
* https://en.wikipedia.org/wiki/List_of_typefaces_included_with_Microsoft_Windows
@ -129,12 +187,12 @@ blockquote {
/* enlarge body point size for charter for larger displays */
@media (min-device-width: 750px) {
body {
font-size: 18px;
font-size: 20px;
line-height: 1.3; /* default in FF is ~1.48, try seems a bit to sparse */
}
/* to match the other bootstrap workaround, below */
blockquote {
font-size: 18px;
font-size: 20px;
}
/* UI elements should be a little less intrusive */
.navbar, .footer {
@ -162,8 +220,6 @@ div.footnotes { font-size: small; }
/* scale down images so they are centered like the rest of the text */
#content img { max-width: 100%; }
/* except in the mastodon avatar, it squeezes them weirdly and messes with borders */
#content .mastodon-comment .avatar img { max-width: inherit; }
/* format HTML5 captions like ikiwiki's table-based captions
*
@ -205,19 +261,6 @@ figure.align-right figcaption {
word-wrap: break-word;
}
/* make table scale out to avoid ugly word-wrapping
* bootstrap should deal with this, but ikiwiki doesn't assign the
* right style and anyways our width is smaller than necessary
*
* pages with tables that should be checked when this is changed:
*
* https://anarc.at/blog/2017-10-26-comparison-cryptographic-keycards/
* https://anarc.at/blog/2018-01-28-large-disk-price-review/
* https://anarc.at/services/backup/
* https://anarc.at/services/
* https://anarc.at/services/dns/registrars/
* https://anarc.at/services/welcome/
*/
table, table.table { width: 100%; }
table { font-size: inherit; } /* why the heck does chrome override font-size for tables?! */
@ -361,20 +404,35 @@ header h1::before {
/* Language switchers */
.language-switcher {
font-size: 14px;
display: block;
background: #f8f8f8;
color: #333;
border-color: #ccc;
margin-bottom: -4px;
margin-left: -3px;
margin-top: 9px;
}
.language-switcher:hover {
background: #e6e6e6;
color: #333;
border-color: #ccc;
}
/* Sign-in buttons */
.sign-in {
background: #f8f8f8;
color: #333;
border-color: #ccc;
margin-top: 9px;
margin-left: 12px;
}
.sign-in:hover {
background: #e6e6e6;
color: #333;
border-color: #ccc;
}
/* Footer */
@ -440,57 +498,3 @@ header h1::before {
border-color: #ccc;
}
/* NavBar */
/* Navbar variables */
.navbar {
--bs-navbar-padding-y: 0;
--bs-navbar-padding-x: 0;
}
.nav-link {
--bs-nav-link-padding-y: 5px;
--bs-nav-link-padding-x: 15px;
}
.dropdown-menu li a {
font-size: 14px;
display: block;
padding: 3px 20px;
clear: both;
font-weight: 400;
line-height: 1.42857143;
color: #333;
border-color: #ccc;
white-space: nowrap;
}
.dropdown-menu li a:hover {
background: #e6e6e6;
}
/* Usually is set automatically by bootstrap, but do it manually to let ikiwiki handle links */
.nav-link li a, .nav-link .selflink {
display: block;
padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
font-size: var(--bs-nav-link-font-size);
font-weight: var(--bs-nav-link-font-weight);
color: var(--bs-nav-link-color);
text-decoration: none;
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.nav-link .selflink {
color: #393a35;
}
.nav-link li a:hover, .nav-link .selflink:hover {
color: #393a35;
}
.navbar-brand {
height: 50px;
padding: 15px 0;
}

BIN
basewiki/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 371 B

View file

Before

Width:  |  Height:  |  Size: 106 KiB

After

Width:  |  Height:  |  Size: 106 KiB

View file

@ -1,11 +1,10 @@
<script>
async function checkDuplicate() {
var url='https://forge.ilot.io/api/v1/repos/ilot/registration/issues';
var url='https://lab.ilot.io/api/v4/projects/99/issues';
var email = document.getElementById("email").value;
const response = await fetch(url, {
headers: {
'authorization': 'token b8d8617bb6049c0e47b7bba5cd0931799f54609c',
'PRIVATE-TOKEN': 'glpat-RaoZSW_3XMhkGr19k6Wv',
'Content-Type': 'application/json',
},
})
@ -21,28 +20,34 @@
}
async function createIssue() {
var url = 'https://forge.ilot.io/api/v1/repos/ilot/registration/issues';
var baseurl = 'https://lab.ilot.io/api/v4/projects/99/issues?&labels=Request';
var emptyfield = document.getElementById("emptyfield").value;
var mathspamtrap = document.getElementById("math-spam-trap").value;
var agreetoterms = document.getElementById("agree-to-terms").checked;
var email = document.getElementById("email").value;
if(!agreetoterms) {
alert("Registration requires agreement of Code of Conduct.");
alert("Registration requires agreement of Code of Conduct");
return false;
}
if(!email) {
alert("Email cannot be empty.");
alert("Email cannot be empty");
return false;
}
if(emptyfield) {
alert("Empty field should be empty");
return false;
}
if(mathspamtrap != "9") {
alert("Wrong math answer.");
alert("Wrong math answer");
return false;
}
if(await checkDuplicate(email) === true) {
alert("This email address has already requested an account.");
alert("This email address has already requested an account");
return false;
}
@ -50,28 +55,31 @@
var name = name.replace (/^/,'Name: ');
var aboutme = document.getElementById("about-me").value;
var aboutme = aboutme.replace (/^/,'About me: ');
var aboutme = aboutme.replace(/\r?\n/g, "%0A%0A");
var howfound = document.getElementById("how-found").value;
var howfound = howfound.replace (/^/,'How I found ilot: ');
var ocuser = document.getElementById("oc-user").value;
var ocuser = ocuser.replace (/^/,'OpenCollective Profile: ');
var description = name + "\n\n" + aboutme + "\n\n" + howfound + "\n\n" + ocuser;
var howfound = howfound.replace(/\r?\n/g, "%0A%0A");
// add back on oc is setup
// var ocuser = document.getElementById("oc-user").value;
// var ocuser = ocuser.replace (/^/,'OpenCollective Profile: ');
// var description = name + "%0A%0A" + aboutme + "%0A%0A" + howfound + "%0A%0A" + ocuser;
var description = name + "%0A%0A" + aboutme + "%0A%0A" + howfound;
var url = baseurl.concat("&title=", email, "&description=", description);
console.log('Description:', description);
fetch(url, {
method: 'POST',
headers: {
'authorization': 'token b8d8617bb6049c0e47b7bba5cd0931799f54609c',
'PRIVATE-TOKEN': 'glpat-RaoZSW_3XMhkGr19k6Wv',
'Content-Type': 'application/json',
},
body: JSON.stringify({ title: email, body: description }),
})
.then(response => response.json())
.then(result => {
console.log('Success:', result);
alert("Request submitted. A working group member will process your registration shortly. If you receive no contact within seven days of registration, please send an email to support@ilot.io.");
alert("Request submitted. A working group member will process your registration shortly. If you receive no contact within seven days of registration, please send an email to support@ilot.io");
})
.catch(error => {
console.error('Error:', error)
});
}
</script>

120
basewiki/local.css Normal file
View file

@ -0,0 +1,120 @@
/* ikiwiki local style sheet */
.home {
display: flex;
flex-basis: 50%;
justify-content: space-between;
height: 100%;
height: 100vh;
}
div.home-logo {
flex-basis: 50%;
width: 50%;
margin: auto;
padding: 25vh 0 0 0;
text-align: center;
}
.login {
margin: 0px;
color: #EBEBEB;
background-color: black;
margin: 12vh auto 10vh auto;
width: 28%;
border-radius: 25px;
padding: 12px;
}
.login a {
color:white;
}
.login:hover {
width: 40%;
cursor:pointer;
transition: 0.3s;
}
.home-title {
flex-basis: 50%;
background-image: url(images/chris-ried-79NfyK85Ahc-unsplash.jpg);
background-position: center;
height: 500;
text-align: center;
padding-top: 400px
color: white;
}
.join {
margin: 0px;
color: #EBEBEB;
background-color: black;
margin: 12vh auto 10vh auto;
width: 28%;
border-radius: 25px;
padding: 12px;
}
.join:hover {
width: 40%;
cursor:pointer;
transition: 0.3s;
}
.coop {
display: flex;
flex-basis: 50%;
justify-content: space-between;
background-color:;
height: 100vh;
}
.coop-title {
flex-basis: 50%;
background-color: black;
height: 100vh;
padding: 0 0 0 0 ;
}
.coop-title h5{
color: white;
padding: 27vh 7vw 0;
}
.coop-title h1{
color: white;
text-align: left;
padding: 1vw 7vw;
}
.services {
display: flex;
background-color:;
height: 80vh;
}
.services-title {
flex-basis: 50%;
text-align: center;
virtical-align: middle;
}
.services-title h5{
text-align: left;
padding: 0 0 0 30px ;
}
.services-content {
flex-basis: 50%;
background-color: black;
color: white;
text-align: center;
padding: 20vh 0 0 0;
}

View file

@ -0,0 +1,37 @@
# Traduction de ikiwiki
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
# This file is distributed under the same license as the PACKAGE Ikiwiki.
#
msgid ""
msgstr ""
"Project-Id-Version: Ikiwiki\n"
"POT-Creation-Date: 2009-08-15 18:30-0300\n"
"PO-Revision-Date: 2009-08-23 09:32+0200\n"
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. type: Plain text
#, no-wrap
msgid "[[!if test=\"enabled(meta)\" then=\"\"\"\n"
msgstr "[[!if test=\"enabled(meta)\" then=\"\"\"\n"
#. type: Plain text
#, no-wrap
msgid "[[!meta title=\"RecentChanges\"]]\n"
msgstr "[[!meta title=\"RecentChanges\"]]\n"
#. type: Plain text
msgid "Recent changes to this wiki:"
msgstr "Dernières modifications :"
#. type: Plain text
#, no-wrap
msgid ""
"[[!inline pages=\"internal(recentchanges/change_*) and !*/Discussion\" \n"
"template=recentchanges show=0]]\n"
msgstr ""
"[[!inline pages=\"internal(recentchanges/change_*) and !*/Discussion\" \n"
"template=recentchanges show=0]]\n"

View file

@ -0,0 +1,7 @@
[[!if test="enabled(meta)" then="""
[[!meta title="RecentChanges"]]
"""]]
Recent changes to this wiki:
[[!inline pages="internal(recentchanges/change_*) and !*/Discussion"
template=recentchanges show=0]]

266
basewiki/shortcuts.fr.po Normal file
View file

@ -0,0 +1,266 @@
# Traduction de ikiwiki
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
# This file is distributed under the same license as the PACKAGE Ikiwiki.
#
msgid ""
msgstr ""
"Project-Id-Version: ikiwiki\n"
"POT-Creation-Date: 2010-03-14 22:09+0000\n"
"PO-Revision-Date: 2010-07-16 10:39+0200\n"
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. type: Plain text
#, no-wrap
msgid ""
"[[!if test=\"enabled(shortcut)\"\n"
" then=\"This wiki has shortcuts **enabled**.\"\n"
" else=\"This wiki has shortcuts **disabled**.\"]]\n"
msgstr ""
"[[!if test=\"enabled(shortcut)\"\n"
" then=\"Les raccourcis sont **activés** dans ce wiki.\"\n"
" else=\"Les raccourcis sont **désactivés** dans ce wiki.\"]]\n"
#. type: Plain text
msgid "Some examples of using shortcuts include:"
msgstr "Voici quelques exemples de raccourcis :"
#. type: Plain text
#, no-wrap
msgid ""
"\t\\[[!google foo]]\n"
"\t\\[[!wikipedia War_of_1812]]\n"
"\t\\[[!debbug 12345]]\n"
"\tCheck the \\[[!cia ikiwiki desc=\"CIA page for %s\"]].\n"
msgstr ""
"\t\\[[!google foo]]\n"
"\t\\[[!wikipedia War_of_1812]]\n"
"\t\\[[!debbug 12345]]\n"
"\tConsultez la \\[[!cia ikiwiki desc=\"page du projet CIA pour %s\"]].\n"
#. type: Plain text
msgid "This page controls what shortcut links the wiki supports."
msgstr "Cette page définit les raccourcis connus par ce wiki."
#. type: Bullet: '* '
msgid "[[!shortcut name=google url=\"http://www.google.com/search?q=%s\"]]"
msgstr "[[!shortcut name=google url=\"http://www.google.com/search?q=%s\"]]"
#. type: Bullet: '* '
msgid "[[!shortcut name=archive url=\"http://web.archive.org/*/%S\"]]"
msgstr "[[!shortcut name=archive url=\"http://web.archive.org/*/%S\"]]"
#. type: Bullet: '* '
msgid "[[!shortcut name=gmap url=\"http://maps.google.com/maps?q=%s\"]]"
msgstr "[[!shortcut name=gmap url=\"http://maps.google.com/maps?q=%s\"]]"
#. type: Bullet: '* '
msgid "[[!shortcut name=gmsg url=\"http://groups.google.com/groups?selm=%s\"]]"
msgstr ""
"[[!shortcut name=gmsg url=\"http://groups.google.com/groups?selm=%s\"]]"
#. type: Bullet: '* '
msgid "[[!shortcut name=wikipedia url=\"http://en.wikipedia.org/wiki/%s\"]]"
msgstr "[[!shortcut name=wikipedia url=\"http://en.wikipedia.org/wiki/%s\"]]"
#. type: Bullet: '* '
msgid "[[!shortcut name=wikitravel url=\"http://wikitravel.org/en/%s\"]]"
msgstr "[[!shortcut name=wikitravel url=\"http://wikitravel.org/en/%s\"]]"
#. type: Bullet: '* '
msgid "[[!shortcut name=wiktionary url=\"http://en.wiktionary.org/wiki/%s\"]]"
msgstr "[[!shortcut name=wiktionary url=\"http://en.wiktionary.org/wiki/%s\"]]"
#. type: Bullet: '* '
#| msgid ""
#| "[[!shortcut name=debbug url=\"http://bugs.debian.org/%s\" desc=\"bug #%s"
#| "\"]]"
msgid ""
"[[!shortcut name=debbug url=\"http://bugs.debian.org/%S\" desc=\"Debian bug #"
"%s\"]]"
msgstr "[[!shortcut name=debbug url=\"http://bugs.debian.org/%S\" desc=\"bug #%s\"]]"
#. type: Bullet: '* '
msgid ""
"[[!shortcut name=deblist url=\"http://lists.debian.org/debian-%s\" desc="
"\"debian-%s@lists.debian.org\"]]"
msgstr ""
"[[!shortcut name=deblist url=\"http://lists.debian.org/debian-%s\" desc="
"\"debian-%s@lists.debian.org\"]]"
#. type: Bullet: '* '
msgid "[[!shortcut name=debpkg url=\"http://packages.debian.org/%s\"]]"
msgstr "[[!shortcut name=debpkg url=\"http://packages.debian.org/%s\"]]"
#. type: Bullet: '* '
msgid "[[!shortcut name=debpkgsid url=\"http://packages.debian.org/sid/%s\"]]"
msgstr "[[!shortcut name=debpkgsid url=\"http://packages.debian.org/sid/%s\"]]"
#. type: Bullet: '* '
msgid "[[!shortcut name=debpts url=\"http://packages.qa.debian.org/%s\"]]"
msgstr "[[!shortcut name=debpts url=\"http://packages.qa.debian.org/%s\"]]"
#. type: Bullet: '* '
msgid ""
"[[!shortcut name=debmsg url=\"http://lists.debian.org/msgid-search/%s\"]]"
msgstr ""
"[[!shortcut name=debmsg url=\"http://lists.debian.org/msgid-search/%s\"]]"
#. type: Bullet: '* '
msgid ""
"[[!shortcut name=debrt url=\"https://rt.debian.org/Ticket/Display.html?id=%s"
"\"]]"
msgstr ""
"[[!shortcut name=debrt url=\"https://rt.debian.org/Ticket/Display.html?id=%s"
"\"]]"
#. type: Plain text
#, no-wrap
#| msgid ""
#| "* [[!shortcut name=debss url=\"http://snapshot.debian.net/package/%s\"]]\n"
#| " * Usage: `\\[[!debss package]]`, `\\[[!debss package#version]]`, or `\\[[!debss package/version]]`. See http://snapshot.debian.net for details.\n"
#| "* [[!shortcut name=debwiki url=\"http://wiki.debian.org/%s\"]]\n"
#| "* [[!shortcut name=fdobug url=\"https://bugs.freedesktop.org/show_bug.cgi?id=%s\" desc=\"freedesktop.org bug #%s\"]]\n"
#| "* [[!shortcut name=fdolist url=\"http://lists.freedesktop.org/mailman/listinfo/%s\" desc=\"%s@lists.freedesktop.org\"]]\n"
#| "* [[!shortcut name=gnomebug url=\"http://bugzilla.gnome.org/show_bug.cgi?id=%s\" desc=\"GNOME bug #%s\"]]\n"
#| "* [[!shortcut name=linuxbug url=\"http://bugzilla.kernel.org/show_bug.cgi?id=%s\" desc=\"Linux bug #%s\"]]\n"
#| "* [[!shortcut name=mozbug url=\"https://bugzilla.mozilla.org/show_bug.cgi?id=%s\" desc=\"Mozilla bug #%s\"]]\n"
#| "* [[!shortcut name=gnulist url=\"http://lists.gnu.org/mailman/listinfo/%s\" desc=\"%s@gnu.org\"]]\n"
#| "* [[!shortcut name=marcmsg url=\"http://marc.info/?i=%s\"]]\n"
#| "* [[!shortcut name=marclist url=\"http://marc.info/?l=%s\"]]\n"
#| "* [[!shortcut name=gmane url=\"http://dir.gmane.org/gmane.%s\" desc=\"gmane.%s\"]]\n"
#| "* [[!shortcut name=gmanemsg url=\"http://mid.gmane.org/%s\"]]\n"
#| "* [[!shortcut name=cpan url=\"http://search.cpan.org/search?mode=dist&query=%s\"]]\n"
#| "* [[!shortcut name=ctan url=\"http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=%s\"]]\n"
#| "* [[!shortcut name=hoogle url=\"http://haskell.org/hoogle/?q=%s\"]]\n"
#| "* [[!shortcut name=iki url=\"http://ikiwiki.info/%S/\"]]\n"
#| "* [[!shortcut name=ljuser url=\"http://%s.livejournal.com/\"]]\n"
#| "* [[!shortcut name=rfc url=\"http://www.ietf.org/rfc/rfc%s.txt\" desc=\"RFC %s\"]]\n"
#| "* [[!shortcut name=c2 url=\"http://c2.com/cgi/wiki?%s\"]]\n"
#| "* [[!shortcut name=meatballwiki url=\"http://www.usemod.com/cgi-bin/mb.pl?%s\"]]\n"
#| "* [[!shortcut name=emacswiki url=\"http://www.emacswiki.org/cgi-bin/wiki/%s\"]]\n"
#| "* [[!shortcut name=haskellwiki url=\"http://haskell.org/haskellwiki/%s\"]]\n"
#| "* [[!shortcut name=dict url=\"http://www.dict.org/bin/Dict?Form=Dict1&Strategy=*&Database=*&Query=%s\"]]\n"
#| "* [[!shortcut name=imdb url=\"http://imdb.com/find?q=%s\"]]\n"
#| "* [[!shortcut name=gpg url=\"http://pgpkeys.mit.edu:11371/pks/lookup?op=vindex&exact=on&search=0x%s\"]]\n"
#| "* [[!shortcut name=perldoc url=\"http://perldoc.perl.org/search.html?q=%s\"]]\n"
#| "* [[!shortcut name=whois url=\"http://reports.internic.net/cgi/whois?whois_nic=%s&type=domain\"]]\n"
#| "* [[!shortcut name=cve url=\"http://cve.mitre.org/cgi-bin/cvename.cgi?name=%s\"]]\n"
#| "* [[!shortcut name=cia url=\"http://cia.vc/stats/project/%s\"]]\n"
#| "* [[!shortcut name=ciauser url=\"http://cia.vc/stats/user/%s\"]]\n"
#| "* [[!shortcut name=flickr url=\"http://www.flickr.com/photos/%s\"]]\n"
#| "* [[!shortcut name=man url=\"http://linux.die.net/man/%s\"]]\n"
#| "* [[!shortcut name=ohloh url=\"http://www.ohloh.net/projects/%s\"]]\n"
msgid ""
"* [[!shortcut name=debss url=\"http://snapshot.debian.net/package/%s\"]]\n"
" * Usage: `\\[[!debss package]]`, `\\[[!debss package#version]]`, or `\\[[!debss package/version]]`. See http://snapshot.debian.net for details.\n"
"* [[!shortcut name=debwiki url=\"http://wiki.debian.org/%s\"]]\n"
"* [[!shortcut name=fdobug url=\"https://bugs.freedesktop.org/show_bug.cgi?id=%s\" desc=\"freedesktop.org bug #%s\"]]\n"
"* [[!shortcut name=fdolist url=\"http://lists.freedesktop.org/mailman/listinfo/%s\" desc=\"%s@lists.freedesktop.org\"]]\n"
"* [[!shortcut name=gnomebug url=\"http://bugzilla.gnome.org/show_bug.cgi?id=%s\" desc=\"GNOME bug #%s\"]]\n"
"* [[!shortcut name=linuxbug url=\"http://bugzilla.kernel.org/show_bug.cgi?id=%s\" desc=\"Linux bug #%s\"]]\n"
"* [[!shortcut name=mozbug url=\"https://bugzilla.mozilla.org/show_bug.cgi?id=%s\" desc=\"Mozilla bug #%s\"]]\n"
"* [[!shortcut name=gnulist url=\"http://lists.gnu.org/mailman/listinfo/%s\" desc=\"%s@gnu.org\"]]\n"
"* [[!shortcut name=marcmsg url=\"http://marc.info/?i=%s\"]]\n"
"* [[!shortcut name=marclist url=\"http://marc.info/?l=%s\"]]\n"
"* [[!shortcut name=gmane url=\"http://dir.gmane.org/gmane.%s\" desc=\"gmane.%s\"]]\n"
"* [[!shortcut name=gmanemsg url=\"http://mid.gmane.org/%s\"]]\n"
"* [[!shortcut name=cpan url=\"http://search.cpan.org/search?mode=dist&query=%s\"]]\n"
"* [[!shortcut name=ctan url=\"http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=%s\"]]\n"
"* [[!shortcut name=hoogle url=\"http://haskell.org/hoogle/?q=%s\"]]\n"
"* [[!shortcut name=iki url=\"http://ikiwiki.info/%S/\"]]\n"
"* [[!shortcut name=ljuser url=\"http://%s.livejournal.com/\"]]\n"
"* [[!shortcut name=rfc url=\"http://www.ietf.org/rfc/rfc%s.txt\" desc=\"RFC %s\"]]\n"
"* [[!shortcut name=c2 url=\"http://c2.com/cgi/wiki?%s\"]]\n"
"* [[!shortcut name=meatballwiki url=\"http://www.usemod.com/cgi-bin/mb.pl?%s\"]]\n"
"* [[!shortcut name=emacswiki url=\"http://www.emacswiki.org/cgi-bin/wiki/%s\"]]\n"
"* [[!shortcut name=haskellwiki url=\"http://haskell.org/haskellwiki/%s\"]]\n"
"* [[!shortcut name=dict url=\"http://www.dict.org/bin/Dict?Form=Dict1&Strategy=*&Database=*&Query=%s\"]]\n"
"* [[!shortcut name=imdb url=\"http://imdb.com/find?q=%s\"]]\n"
"* [[!shortcut name=gpg url=\"http://pgpkeys.mit.edu:11371/pks/lookup?op=vindex&exact=on&search=0x%s\"]]\n"
"* [[!shortcut name=perldoc url=\"http://perldoc.perl.org/search.html?q=%s\"]]\n"
"* [[!shortcut name=whois url=\"http://reports.internic.net/cgi/whois?whois_nic=%s&type=domain\"]]\n"
"* [[!shortcut name=cve url=\"http://cve.mitre.org/cgi-bin/cvename.cgi?name=%s\"]]\n"
"* [[!shortcut name=cia url=\"http://cia.vc/stats/project/%s\"]]\n"
"* [[!shortcut name=ciauser url=\"http://cia.vc/stats/user/%s\"]]\n"
"* [[!shortcut name=flickr url=\"http://www.flickr.com/photos/%s\"]]\n"
"* [[!shortcut name=man url=\"http://linux.die.net/man/%s\"]]\n"
"* [[!shortcut name=ohloh url=\"http://www.ohloh.net/projects/%s\"]]\n"
"* [[!shortcut name=cpanrt url=\"https://rt.cpan.org/Ticket/Display.html?id=%s\" desc=\"CPAN RT#%s\"]]\n"
"* [[!shortcut name=novellbug url=\"https://bugzilla.novell.com/show_bug.cgi?id=%s\" desc=\"bug %s\"]]\n"
msgstr ""
"* [[!shortcut name=debss url=\"http://snapshot.debian.net/package/%s\"]]\n"
" * Usage : `\\[[!debss package]]`, `\\[[!debss package#version]]`, ou `\\[[!debss package/version]]`. Consultez http://snapshot.debian.net pour d'autres précisions.\n"
"* [[!shortcut name=debwiki url=\"http://wiki.debian.org/%s\"]]\n"
"* [[!shortcut name=fdobug url=\"https://bugs.freedesktop.org/show_bug.cgi?id=%s\" desc=\"freedesktop.org bug #%s\"]]\n"
"* [[!shortcut name=fdolist url=\"http://lists.freedesktop.org/mailman/listinfo/%s\" desc=\"%s@lists.freedesktop.org\"]]\n"
"* [[!shortcut name=gnomebug url=\"http://bugzilla.gnome.org/show_bug.cgi?id=%s\" desc=\"GNOME bug #%s\"]]\n"
"* [[!shortcut name=linuxbug url=\"http://bugzilla.kernel.org/show_bug.cgi?id=%s\" desc=\\\"Linux bug #%s\"]]\n"
"* [[!shortcut name=mozbug url=\"https://bugzilla.mozilla.org/show_bug.cgi?id=%s\" desc=\"Mozilla bug #%s\"]]\n"
"* [[!shortcut name=gnulist url=\"http://lists.gnu.org/mailman/listinfo/%s\" desc=\"%s@gnu.org\"]]\n"
"* [[!shortcut name=marcmsg url=\"http://marc.info/?i=%s\"]]\n"
"* [[!shortcut name=marclist url=\"http://marc.info/?l=%s\"]]\n"
"* [[!shortcut name=gmane url=\"http://dir.gmane.org/gmane.%s\" desc=\"gmane.%s\"]]\n"
"* [[!shortcut name=gmanemsg url=\"http://mid.gmane.org/%s\"]]\n"
"* [[!shortcut name=cpan url=\"http://search.cpan.org/search?mode=dist&query=%s\"]]\n"
"* [[!shortcut name=ctan url=\"http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=%s\"]]\n"
"* [[!shortcut name=hoogle url=\"http://haskell.org/hoogle/?q=%s\"]]\n"
"* [[!shortcut name=iki url=\"http://ikiwiki.info/%S/\"]]\n"
"* [[!shortcut name=ljuser url=\"http://%s.livejournal.com/\"]]\n"
"* [[!shortcut name=rfc url=\"http://www.ietf.org/rfc/rfc%s.txt\" desc=\"RFC %s\"]]\n"
"* [[!shortcut name=c2 url=\"http://c2.com/cgi/wiki?%s\"]]\n"
"* [[!shortcut name=meatballwiki url=\"http://www.usemod.com/cgi-bin/mb.pl?%s\"]]\n"
"* [[!shortcut name=emacswiki url=\"http://www.emacswiki.org/cgi-bin/wiki/%s\"]]\n"
"* [[!shortcut name=haskellwiki url=\"http://haskell.org/haskellwiki/%s\"]]\n"
"* [[!shortcut name=dict url=\"http://www.dict.org/bin/Dict?Form=Dict1&Strategy=*&Database=*&Query=%s\"]]\n"
"* [[!shortcut name=imdb url=\"http://imdb.com/find?q=%s\"]]\n"
"* [[!shortcut name=gpg url=\"http://pgpkeys.mit.edu:11371/pks/lookup?op=vindex&exact=on&search=0x%s\"]]\n"
"* [[!shortcut name=perldoc url=\"http://perldoc.perl.org/search.html?q=%s\"]]\n"
"* [[!shortcut name=whois url=\"http://reports.internic.net/cgi/whois?whois_nic=%s&type=domain\"]]\n"
"* [[!shortcut name=cve url=\"http://cve.mitre.org/cgi-bin/cvename.cgi?name=%s\"]]\n"
"* [[!shortcut name=cia url=\"http://cia.vc/stats/project/%s\"]]\n"
"* [[!shortcut name=ciauser url=\"http://cia.vc/stats/user/%s\"]]\n"
"* [[!shortcut name=flickr url=\"http://www.flickr.com/photos/%s\"]]\n"
"* [[!shortcut name=man url=\"http://linux.die.net/man/%s\"]]\n"
"* [[!shortcut name=ohloh url=\"http://www.ohloh.net/projects/%s\"]]\n"
"* [[!shortcut name=cpanrt url=\"https://rt.cpan.org/Ticket/Display.html?id=%s\" desc=\"CPAN RT#%s\"]]\n"
"* [[!shortcut name=novellbug url=\"https://bugzilla.novell.com/show_bug.cgi?id=%s\" desc=\"bug %s\"]]\n"
#. type: Plain text
msgid ""
"To add a new shortcut, use the `shortcut` [[ikiwiki/directive]]. In the url, "
"\"%s\" is replaced with the text passed to the named shortcut, after [[!"
"wikipedia url_encoding]] it, and '%S' is replaced with the raw, non-encoded "
"text. The optional `desc` parameter controls the description of the link."
msgstr ""
"Pour ajouter un raccourci, utilisez la [[ikiwiki/directive]] `shortcut`. "
"Dans l'URL, \"%s\" est remplacé par le texte passé au raccourci, après "
"l'avoir codé [[!\"wikipedia url_encoding]], et le \"%S\" est remplacé par le "
"texte brut, non codé. La paramètre facultatif `desc` contrôle la description "
"du lien."
#. type: Plain text
msgid ""
"Remember that the `name` you give the shortcut will become a new [[ikiwiki/"
"directive]]. Avoid using a `name` that conflicts with an existing "
"directive. These directives also accept a `desc` parameter that will "
"override the one provided at definition time."
msgstr ""
"N'oubliez pas que le paramètre `name` donné au raccourci devient une "
"nouvelle [[ikiwiki/directive]]. Évitez de donner un nom qui entre en conflit "
"avec une directive existante. Ces directives acceptent aussi un paramètre "
"`desc` qui primera celui fourni au moment de la définition du raccourci."
#. type: Plain text
msgid ""
"If you come up with a shortcut that you think others might find useful, "
"consider contributing it to the [shortcuts page on the ikiwiki wiki](http://"
"ikiwiki.info/shortcuts/), so that future versions of ikiwiki will include "
"your shortcut in the standard underlay."
msgstr ""
"Si vous trouvez un raccourci qui vous paraît utile, proposez-le sur la [page "
"des raccourcis du wiki d'ikiwiki](http://ikiwiki.info/shortcuts/). Ainsi les "
"futures versions d'ikiwiki incluront automatiquement ce raccourci."

88
basewiki/shortcuts.mdwn Normal file
View file

@ -0,0 +1,88 @@
[[!if test="enabled(shortcut)"
then="This wiki has shortcuts **enabled**."
else="This wiki has shortcuts **disabled**."]]
Some examples of using shortcuts include:
\[[!google foo]]
\[[!wikipedia War_of_1812]]
\[[!debbug 12345]]
Check the \[[!google ikiwiki desc="google search for %s"]].
This page controls what shortcut links the wiki supports.
* [[!shortcut name=google url="https://encrypted.google.com/search?q=%s"]]
* [[!shortcut name=archive url="http://web.archive.org/*/%S"]]
* [[!shortcut name=gmap url="https://maps.google.com/maps?q=%s"]]
* [[!shortcut name=gmsg url="https://groups.google.com/groups?selm=%s"]]
* [[!shortcut name=wikipedia url="https://en.wikipedia.org/wiki/%W"]]
* [[!shortcut name=wikitravel url="https://wikitravel.org/en/%s"]]
* [[!shortcut name=wiktionary url="https://en.wiktionary.org/wiki/%s"]]
* [[!shortcut name=debbug url="http://bugs.debian.org/%S" desc="Debian bug #%s"]]
* [[!shortcut name=deblist url="https://lists.debian.org/debian-%s" desc="debian-%s@lists.debian.org"]]
* [[!shortcut name=debpkg url="http://packages.debian.org/%s"]]
* [[!shortcut name=debpkgsid url="http://packages.debian.org/sid/%s"]]
* [[!shortcut name=debpts url="http://packages.qa.debian.org/%s"]]
* [[!shortcut name=debmsg url="https://lists.debian.org/msgid-search/%s"]]
* [[!shortcut name=debrt url="https://rt.debian.org/Ticket/Display.html?id=%s"]]
* [[!shortcut name=debss url="http://snapshot.debian.org/package/%s/"]]
* Usage: `\[[!debss package]]` or `\[[!debss package/version]]`. See <http://snapshot.debian.org/> for details.
* [[!shortcut name=debwiki url="https://wiki.debian.org/%S"]]
* [[!shortcut name=debcve url="https://security-tracker.debian.org/tracker/%S"]]
* also supports Debian bug numbers, packages and whatever the [security tracker](https://security-tracker.debian.org/tracker/) supports.
* [[!shortcut name=fdobug url="https://bugs.freedesktop.org/show_bug.cgi?id=%s" desc="freedesktop.org bug #%s"]]
* [[!shortcut name=fdolist url="http://lists.freedesktop.org/mailman/listinfo/%s" desc="%s@lists.freedesktop.org"]]
* [[!shortcut name=gnomebug url="https://bugzilla.gnome.org/show_bug.cgi?id=%s" desc="GNOME bug #%s"]]
* [[!shortcut name=linuxbug url="https://bugzilla.kernel.org/show_bug.cgi?id=%s" desc="Linux bug #%s"]]
* [[!shortcut name=mozbug url="https://bugzilla.mozilla.org/show_bug.cgi?id=%s" desc="Mozilla bug #%s"]]
* [[!shortcut name=gnulist url="https://lists.gnu.org/mailman/listinfo/%s" desc="%s@gnu.org"]]
* [[!shortcut name=marcmsg url="http://marc.info/?i=%s"]]
* [[!shortcut name=marclist url="http://marc.info/?l=%s"]]
* [[!shortcut name=gmane url="http://dir.gmane.org/gmane.%s" desc="gmane.%s"]]
* [[!shortcut name=gmanemsg url="http://mid.gmane.org/%s"]]
* [[!shortcut name=cpan url="http://search.cpan.org/search?mode=dist&query=%s"]]
* [[!shortcut name=ctan url="http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=%s"]]
* [[!shortcut name=hoogle url="http://haskell.org/hoogle/?q=%s"]]
* [[!shortcut name=iki url="http://ikiwiki.info/%S/"]]
* [[!shortcut name=ljuser url="http://%s.livejournal.com/"]]
* [[!shortcut name=rfc url="https://www.ietf.org/rfc/rfc%s.txt" desc="RFC %s"]]
* [[!shortcut name=c2 url="http://wiki.c2.com/?%s"]]
* [[!shortcut name=meatballwiki url="http://www.usemod.com/cgi-bin/mb.pl?%s"]]
* [[!shortcut name=emacswiki url="http://www.emacswiki.org/cgi-bin/wiki/%s"]]
* [[!shortcut name=haskellwiki url="http://haskell.org/haskellwiki/%s"]]
* [[!shortcut name=dict url="http://www.dict.org/bin/Dict?Form=Dict1&Strategy=*&Database=*&Query=%s"]]
* [[!shortcut name=imdb url="http://imdb.com/find?q=%s"]]
* [[!shortcut name=gpg url="http://pgpkeys.mit.edu:11371/pks/lookup?op=vindex&exact=on&search=0x%s"]]
* [[!shortcut name=perldoc url="http://perldoc.perl.org/search.html?q=%s"]]
* [[!shortcut name=whois url="http://reports.internic.net/cgi/whois?whois_nic=%s&type=domain"]]
* [[!shortcut name=cve url="https://cve.mitre.org/cgi-bin/cvename.cgi?name=%s"]]
* [[!shortcut name=flickr url="https://secure.flickr.com/photos/%s"]]
* [[!shortcut name=man url="http://manpages.debian.org/%s"]]
* [[!shortcut name=ohloh url="https://www.ohloh.net/p/%s"]]
* [[!shortcut name=cpanrt url="https://rt.cpan.org/Ticket/Display.html?id=%s" desc="CPAN RT#%s"]]
* [[!shortcut name=novellbug url="https://bugzilla.novell.com/show_bug.cgi?id=%s" desc="bug %s"]]
* [[!shortcut name=ubupkg url="http://packages.ubuntu.com/%s"]]
* [[!shortcut name=mozillazinekb url="http://kb.mozillazine.org/%s"]]
* [[!shortcut name=freebsdwiki url="http://wiki.freebsd.org/%s"]]
* [[!shortcut name=hackage url="http://hackage.haskell.org/package/%s"]]
* [[!shortcut name=pkgsrc url="http://pkgsrc.se/%S"]]
* [[!shortcut name=doi url="http://dx.doi.org/%s" desc="doi:%s"]]
* [[!shortcut name=arxiv url="http://arxiv.org/abs/%s" desc="arXiv:%s"]]
To add a new shortcut, use the `shortcut`
[[ikiwiki/directive]]. In the url, "%s" is replaced with the
text passed to the named shortcut, after [[!wikipedia url_encoding]]
it, and '%S' is replaced with the raw, non-encoded text.
Additionally, `%W` is replaced with the text encoded just right for
Wikipedia. The optional `desc` parameter controls the description of
the link.
Remember that the `name` you give the shortcut will become a new
[[ikiwiki/directive]]. Avoid using a `name` that conflicts
with an existing directive. These directives also accept a `desc`
parameter that will override the one provided at definition time.
If you come up with a shortcut that you think others might find useful,
consider contributing it to the [shortcuts page on the ikiwiki
wiki](http://ikiwiki.info/shortcuts/), so that future versions of
ikiwiki will include your shortcut in the standard underlay.

View file

Before

Width:  |  Height:  |  Size: 293 B

After

Width:  |  Height:  |  Size: 293 B

View file

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View file

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

View file

Before

Width:  |  Height:  |  Size: 696 B

After

Width:  |  Height:  |  Size: 696 B

View file

Before

Width:  |  Height:  |  Size: 921 B

After

Width:  |  Height:  |  Size: 921 B

View file

Before

Width:  |  Height:  |  Size: 921 B

After

Width:  |  Height:  |  Size: 921 B

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View file

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
content/footer.fr.mo Normal file

Binary file not shown.

View file

@ -7,19 +7,25 @@
msgid ""
msgstr ""
"Project-Id-Version: ilot.io\n"
"POT-Creation-Date: 2025-03-13 17:50-0400\n"
"PO-Revision-Date: 2025-04-03 18:43-0400\n"
"POT-Creation-Date: 2024-09-08 17:48-0400\n"
"PO-Revision-Date: 2024-09-08 12:46-0400\n"
"Last-Translator: \n"
"Language-Team: dev@ayakael.net\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.5\n"
"X-Generator: Poedit 3.4.3\n"
#. type: Content of: <p><div><div>
msgid ""
"<button class=\"scroll up\" > <i class=\"fa-solid fa-circle-chevron-up\" "
"style=\"font-size: 4em;\"></i> </button>"
msgstr ""
#. type: Content of: <p><div><div><div><h5>
msgid "Support"
msgstr "Soutien"
msgstr "Soutient"
#. type: Content of: <p><div><div><div><ul><li>
msgid "[[FAQs|https://support.ilot.io/en/hc/706927618]]"
@ -31,7 +37,7 @@ msgstr "[[Problèmes connus|https://forge.ilot.io/ilot/-/projects/3]]"
#. type: Content of: <p><div><div><div><ul><li>
msgid "[[Support ticket|https://support.ilot.io/help/706927618]]"
msgstr "[[Soutien technique|https://support.ilot.io/help/706927618]]"
msgstr "[[Soutient technique|https://support.ilot.io/help/706927618]]"
#. type: Content of: <p><div><div><div><h5>
msgid "Contribute"
@ -41,10 +47,6 @@ msgstr "Contribuer"
msgid "[[Become a member|join]]"
msgstr "[[Devenir membre|join]]"
#. type: Content of: <p><div><div><div><ul><li><li>
msgid "[[Donate|https://opencollective.com/ilot]]"
msgstr "[[Faire un don|https://opencollective.com/ilot]]"
#. type: Content of: <p><div><div><div><ul><li><li>
msgid "[[Git Forge|https://forge.ilot.io/ilot/-/projects]]"
msgstr "[[Forge Git|https://forge.ilot.io/ilot/-/projects]]"
@ -77,18 +79,10 @@ msgstr "Nouvelles"
msgid "Subscribe to our [[newsletter|https://notif.ilot.io/archive]]"
msgstr "S'abonner à notre [[liste de diffusion|https://notif.ilot.io/archive]]"
#. type: Content of: <p><div><div><div><form><script>
msgid ""
"document.addEventListener('keydown', function (event) { if (event.keyCode "
"=== 13 && event.target.nodeName === 'INPUT') { var form = event.target.form; "
"var index = Array.prototype.indexOf.call(form, event.target); form."
"elements[index + 1].focus(); event.preventDefault(); } });"
msgstr ""
#. type: Content of: <p><div><div><div><form>
msgid ""
"<input type=\"hidden\" name=\"nonce\" /> <input id=\"39425\" type=\"hidden\" "
"name=\"l\" value=\"39425113-44b5-46f7-9897-91151467b05f\" />"
"<input type=\"hidden\" name=\"nonce\" /> <input id=\"9c490\" type=\"hidden\" "
"name=\"l\" value=\"9c490957-b50b-4162-898d-92259e350cd6\" />"
msgstr ""
#. type: Content of: <p><div><div><div><form><div>
@ -101,33 +95,11 @@ msgstr ""
#. type: Content of: <p><div><div><div><form>
msgid ""
"<button aria-label=\"Subscribe\" class=\"btn\" type=\"button\" data-bs-"
"toggle=\"modal\" data-bs-target=\"#hcaptchamodal\">Subscribe</button>"
"<button aria-label=\"Subscribe\" class=\"btn\" type=\"submit\">Subscribe</"
"button>"
msgstr ""
"<button aria-label=\"Subscribe\" class=\"btn\" type=\"button\" data-bs-"
"toggle=\"modal\" data-bs-target=\"#hcaptchamodal\">S'abonner</button>"
#. type: Content of: <p><div><div><div><form><div><div><div><div><h5>
msgid "Are you a robot?"
msgstr "Êtes-vous un robot?"
#. type: Content of: <p><div><div><div><form><div><div><div><div>
msgid ""
"<button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-"
"label=\"Close\"></button>"
msgstr ""
"<button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-"
"label=\"Fermer\"></button>"
#. type: Content of: <p><div><div><div><form><div><div><div><div>
msgid ""
"<button type=\"button\" class=\"btn btn-secondary\" data-bs-"
"dismiss=\"modal\">Close</button> <button aria-label=\"Subscribe\" "
"class=\"btn\" type=\"submit\">Subscribe</button>"
msgstr ""
"<button type=\"button\" class=\"btn btn-secondary\" data-bs-"
"dismiss=\"modal\">Fermer</button> <button aria-label=\"Subscribe\" "
"class=\"btn\" type=\"submit\">S'abonner</button>"
"<button aria-label=\"Subscribe\" class=\"btn\" type=\"submit\">S'abonner</"
"button>"
#, fuzzy
#~| msgid "[[Wiki|https://wiki.ilot.io]]"

52
content/footer.html Normal file
View file

@ -0,0 +1,52 @@
<p class="text-muted">
<div class="container">
<div class="row text-centered">
<button class="scroll up" >
<i class="fa-solid fa-circle-chevron-up" style="font-size: 4em;"></i>
</button>
</div>
<div class="row">
<div class="col-sm-3">
<h5>Support</h5>
<ul>
<li>[[FAQs|https://support.ilot.io/en/hc/706927618]]</li>
<li>[[Known issues|https://forge.ilot.io/ilot/-/projects/3]]</li>
<li>[[Support ticket|https://support.ilot.io/help/706927618]]</li>
</ul>
</div>
<div class="col-sm-3">
<h5>Contribute</h5>
<ul>
<li>[[Become a member|join]]
<li>[[Git Forge|https://forge.ilot.io/ilot/-/projects]]</li>
<li>[[Wiki|https://wiki.ilot.io]]</li>
</ul>
</div>
<div class="col-sm-3">
<h5>About us</h5>
<ul>
<li>[[Code of conduct|meta/code-of-conduct]]</li>
<li>[[Licenses|meta/license]]</li>
<li>[[Network Status|https://status.ilot.io/status/ilot]]</li>
</div>
<div class="col-sm-3 listmonk-form">
<h5>News</h5>
<p>Subscribe to our [[newsletter|https://notif.ilot.io/archive]]</p>
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
<input type="hidden" name="nonce" />
<input id="9c490" type="hidden" name="l" value="9c490957-b50b-4162-898d-92259e350cd6" />
<div class="t">
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
</div>
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
</form>
</div>
</div>
</div>
</p>

View file

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2025-03-13 17:50-0400\n"
"POT-Creation-Date: 2024-09-08 17:48-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -16,6 +16,12 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. type: Content of: <p><div><div>
msgid ""
"<button class=\"scroll up\" > <i class=\"fa-solid fa-circle-chevron-up\" "
"style=\"font-size: 4em;\"></i> </button>"
msgstr ""
#. type: Content of: <p><div><div><div><h5>
msgid "Support"
msgstr ""
@ -40,10 +46,6 @@ msgstr ""
msgid "[[Become a member|join]]"
msgstr ""
#. type: Content of: <p><div><div><div><ul><li><li>
msgid "[[Donate|https://opencollective.com/ilot]]"
msgstr ""
#. type: Content of: <p><div><div><div><ul><li><li>
msgid "[[Git Forge|https://forge.ilot.io/ilot/-/projects]]"
msgstr ""
@ -76,18 +78,10 @@ msgstr ""
msgid "Subscribe to our [[newsletter|https://notif.ilot.io/archive]]"
msgstr ""
#. type: Content of: <p><div><div><div><form><script>
msgid ""
"document.addEventListener('keydown', function (event) { if (event.keyCode "
"=== 13 && event.target.nodeName === 'INPUT') { var form = event.target.form; "
"var index = Array.prototype.indexOf.call(form, event.target); "
"form.elements[index + 1].focus(); event.preventDefault(); } });"
msgstr ""
#. type: Content of: <p><div><div><div><form>
msgid ""
"<input type=\"hidden\" name=\"nonce\" /> <input id=\"981a0\" type=\"hidden\" "
"name=\"l\" value=\"981a06b2-c76b-41d0-be19-f6092c4e91cd\" />"
"<input type=\"hidden\" name=\"nonce\" /> <input id=\"9c490\" type=\"hidden\" "
"name=\"l\" value=\"9c490957-b50b-4162-898d-92259e350cd6\" />"
msgstr ""
#. type: Content of: <p><div><div><div><form><div>
@ -98,24 +92,6 @@ msgstr ""
#. type: Content of: <p><div><div><div><form>
msgid ""
"<button aria-label=\"Subscribe\" class=\"btn\" type=\"button\" "
"data-bs-toggle=\"modal\" "
"data-bs-target=\"#hcaptchamodal\">Subscribe</button>"
msgstr ""
#. type: Content of: <p><div><div><div><form><div><div><div><div><h5>
msgid "Are you a robot?"
msgstr ""
#. type: Content of: <p><div><div><div><form><div><div><div><div>
msgid ""
"<button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" "
"aria-label=\"Close\"></button>"
msgstr ""
#. type: Content of: <p><div><div><div><form><div><div><div><div>
msgid ""
"<button type=\"button\" class=\"btn btn-secondary\" "
"data-bs-dismiss=\"modal\">Close</button> <button aria-label=\"Subscribe\" "
"class=\"btn\" type=\"submit\">Subscribe</button>"
"<button aria-label=\"Subscribe\" class=\"btn\" "
"type=\"submit\">Subscribe</button>"
msgstr ""

View file

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View file

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,003 KiB

BIN
content/images/database.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

BIN
content/images/forum.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
content/images/forum_w.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View file

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

View file

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View file

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

View file

@ -0,0 +1,525 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1920 1920" style="enable-background:new 0 0 1920 1920;" xml:space="preserve">
<style type="text/css">
.st0{stroke:#000000;stroke-width:22.2737;stroke-miterlimit:10;}
</style>
<g id="Layer_1">
<g>
<path d="M942.76,1735.78c-30.09,0-60.34-1.76-90.17-5.26c-28.77-3.31-57.89-8.39-86.46-15.09
c-35.78-8.35-71.23-19.33-105.32-32.63l-0.48-0.19l-26.05-10.63c-11.59-5.04-21.69-9.67-30.88-14.16
c-11.59-5.62-22.2-11.06-32.34-16.57c-33.37-18.16-65.43-38.73-95.31-61.17c-0.72-0.51-1.3-0.95-1.69-1.25l-1.85-1.38
c-0.85-0.65-1.87-1.42-3-2.34c-4.79-3.62-9.58-7.37-14.62-11.45c-10.2-8.16-20.32-16.73-30.07-25.46
c-12.42-11.03-24.65-22.65-36.35-34.54c-19.2-19.52-37.5-40.2-54.44-61.48c-0.58-0.71-1.3-1.6-2.09-2.67
c-0.17-0.22-0.34-0.44-0.51-0.67c-3.14-3.97-6.31-8.1-9.68-12.61c-8.48-11.26-16.79-22.95-24.71-34.76
c-1.95-2.92-3.42-5.16-4.77-7.26c-1.91-2.86-3.69-5.67-5.42-8.39c-16.02-25.16-30.77-51.69-43.8-78.81
c-0.56-1.02-1.06-2.06-1.52-3.12c-4.92-10.19-9.75-20.9-14.38-31.86l-0.07-0.16c-0.12-0.29-0.25-0.58-0.38-0.88
c-0.36-0.82-0.71-1.65-1.05-2.49c-6.8-16.16-13.13-32.83-18.82-49.53l-0.14-0.4c-0.19-0.54-0.49-1.4-0.81-2.47
c-6.82-20.09-12.83-40.56-17.85-60.86c-4.65-18.68-8.58-37.43-11.69-55.71c-17.5-101.45-14.63-203.98,8.53-304.74v-0.05l0.89-3.82
c19.74-83.82,52.92-163.29,98.61-236.2C355,431.51,454.57,338.18,572.09,274.69l0.14-0.1l1.4-0.75
c22.02-11.85,45.02-22.8,68.34-32.54c22.81-9.58,46.29-18.14,69.76-25.45l0.23-0.09l1.3-0.4
c183.57-56.86,381.11-43.46,556.21,37.72c176.25,81.71,314.71,225.45,389.87,404.75c21.37,50.99,37.32,104.23,47.42,158.23
c1.85,9.92,3.53,20.03,5.02,30.07c4.19,28.65,6.77,57.67,7.7,86.5l0.11,0.11l0.25,13.69c0.23,15.07,0,30.32-0.69,45.34
c-0.6,14.53-1.66,29.43-3.17,44.3c-1.89,18.29-4.36,36.23-7.33,53.42c-0.73,4.4-1.52,8.64-2.29,12.74
c-3.93,20.81-8.91,42.14-14.8,63.47c-1.54,5.58-3.27,11.51-5.43,18.58c-0.23,0.84-0.49,1.68-0.78,2.54
c-7.42,24.19-16.2,48.41-26.1,72.02c-8.1,19.39-17.3,39.02-27.31,58.29l-0.06,0.11c-1.38,2.66-2.75,5.33-4.18,7.99
c-4.95,9.27-10.34,18.85-16,28.47c-6.08,10.29-12.61,20.76-19.43,31.17c-0.45,0.72-0.91,1.42-1.4,2.11
c-1.56,2.39-3.14,4.72-4.55,6.8l-9.94,14.64h-0.18c-14.69,20.8-30.62,41.08-47.53,60.5c-0.47,0.58-0.95,1.15-1.46,1.71
c-0.9,1.08-1.72,2-2.42,2.78c-30.53,34.53-64.24,66.42-100.38,94.96l-11.08,8.65l-11.32,8.38
c-34.76,25.38-71.81,47.99-110.29,67.3c-16.12,8.11-32.6,15.69-48.96,22.53c-90.59,37.97-185.87,58.29-283.14,60.4
C954.01,1735.71,948.39,1735.78,942.76,1735.78z M685.31,1620.63c31.08,12.11,63.39,22.11,96.04,29.73
c26.1,6.12,52.65,10.75,78.95,13.78c32.42,3.8,65.32,5.36,97.86,4.64c88.87-1.92,175.94-20.51,258.8-55.23
c14.96-6.25,30.01-13.17,44.77-20.6c37.44-18.78,73.38-40.97,106.88-65.98l2.26-1.71c37.66-28.43,72.62-60.81,103.93-96.23
l0.13-0.14c0.4-0.45,0.89-0.99,1.05-1.19l1.16-1.45l0.6-0.63c19.26-22.07,37.14-45.37,53.15-69.24l6.54-9.75
c5.88-9.03,11.51-18.07,16.74-26.92c5.17-8.77,10.09-17.53,14.61-26c1.29-2.41,2.52-4.8,3.76-7.19l0.09-0.17
c9.19-17.68,17.59-35.62,25-53.35c9.15-21.81,17.24-44.15,24.05-66.43l0.37-1.19c2.07-6.76,3.7-12.31,5.12-17.47
c5.41-19.59,9.97-39.12,13.55-58.06c0.7-3.73,1.43-7.65,2.05-11.38l0.05-0.27c2.73-15.74,4.99-32.22,6.73-48.97
c1.37-13.48,2.34-27.07,2.88-40.29l0.01-0.18c0.5-10.82,0.74-21.77,0.71-32.67l-0.12-8.75c-0.43-30.44-2.89-61.22-7.31-91.5
c-1.36-9.17-2.91-18.46-4.6-27.55c-9.23-49.34-23.82-98.02-43.36-144.66c-68.7-163.88-195.25-295.27-356.34-369.96
c-159.65-74.02-339.68-86.39-507.05-34.9l-0.21,0.09l-1.3,0.4c-21.84,6.76-43.71,14.71-65.01,23.66
c-20.89,8.73-41.42,18.48-61.11,29.01l-0.12,0.08l-1.41,0.76c-107.94,58.02-199.39,143.56-264.46,247.4
c-41.4,66.07-71.57,138.03-89.68,213.91l-0.5,2.16c-21.9,93.19-24.8,188.06-8.6,281.98c2.84,16.71,6.43,33.81,10.68,50.89
c4.66,18.8,10.23,37.75,16.57,56.35l1.79,5.3c4.91,14.18,10.32,28.3,16.09,42.01l0.23,0.55c0.14,0.35,0.29,0.7,0.44,1.04
c0.25,0.57,0.49,1.13,0.73,1.7c4.09,9.67,8.34,19.11,12.65,28.08l0.08,0.12l1.25,2.61c12.02,25.14,25.66,49.73,40.54,73.09
c1.66,2.62,3.19,5.03,4.67,7.24l0.4,0.6c1.19,1.85,2.5,3.86,4.27,6.5c7.19,10.72,14.79,21.42,22.54,31.71l0.07,0.1
c2.87,3.84,5.56,7.35,8.19,10.69l0.62,0.62l1.52,2.16c0.15,0.19,0.31,0.38,0.46,0.57l0.22,0.27
c15.51,19.5,32.29,38.46,49.88,56.35c10.67,10.83,21.82,21.44,33.15,31.5l0.11,0.1c8.87,7.95,18.08,15.74,27.36,23.17l0.18,0.14
c4.64,3.76,9.02,7.19,13.38,10.48l1.39,1.1c0.2,0.16,0.79,0.62,1.23,0.95l0.52,0.39c0.52,0.38,0.96,0.71,1.29,0.96l0.26,0.17
l0.75,0.57c27.42,20.62,56.88,39.55,87.56,56.24c9.21,5.01,18.92,9.98,29.67,15.19c8.4,4.11,17.26,8.17,27.92,12.81
L685.31,1620.63z"/>
</g>
<g>
<rect x="1147.4" y="1646.57" transform="matrix(0.9223 -0.3865 0.3865 0.9223 -558.156 622.8359)" width="245.01" height="105.95"/>
</g>
<g>
<rect x="1577.05" y="597.12" transform="matrix(-0.3865 -0.9223 0.9223 -0.3865 1756.8052 2468.8486)" width="245.01" height="105.95"/>
</g>
<g>
<polygon points="1797.5,1170.47 1786.72,1196.84 1786.68,1196.89 1780.3,1212.48 1770.64,1236.09 1752.24,1281.04
1751.84,1282.02 1727.74,1340.91 1704.66,1397.26 1606.61,1357.12 1610.31,1348.17 1610.53,1347.59 1614.32,1338.37
1625.01,1312.18 1631.69,1295.87 1651.34,1248.03 1675.35,1189.36 1675.8,1188.24 1699.5,1130.38 "/>
</g>
<g>
<rect x="1141.32" y="164.95" transform="matrix(-0.9254 -0.3789 0.3789 -0.9254 2350.8474 898.4474)" width="245.01" height="105.95"/>
</g>
<g>
<rect x="489.25" y="1646.57" transform="matrix(-0.9223 -0.3865 0.3865 -0.9223 519.1505 3503.4575)" width="245.01" height="105.95"/>
</g>
<g>
<rect x="59.59" y="597.12" transform="matrix(0.3865 -0.9223 0.9223 0.3865 -487.8635 566.804)" width="245.01" height="105.95"/>
</g>
<g>
<polygon points="84.16,1170.47 94.94,1196.84 94.98,1196.89 101.35,1212.48 111.02,1236.09 129.42,1281.04 129.82,1282.02
153.92,1340.91 177,1397.26 275.04,1357.12 271.35,1348.17 271.12,1347.59 267.34,1338.37 256.65,1312.18 249.96,1295.87
230.32,1248.03 206.31,1189.36 205.86,1188.24 182.16,1130.38 "/>
</g>
<g>
<rect x="495.33" y="164.95" transform="matrix(0.9254 -0.3789 0.3789 0.9254 -36.5046 250.3387)" width="245.01" height="105.95"/>
</g>
<g>
<g>
<g>
<path d="M211.62,1109.71c-5.22,0-10.18-3.08-12.33-8.2c-2.85-6.81,0.35-14.64,7.16-17.49c0.07-0.03,7-2.93,18.03-7.67
c20.35-8.69,59.83-25.82,95.78-42.93c58.85-28.02,68.21-37.08,69.49-38.61c3.34-4.01,7.02-9.43,11.29-15.71
c17.42-25.62,43.75-64.34,97.87-80.27c39.48-11.59,62.64-17.29,81.26-21.86c10.5-2.58,19.57-4.81,28.87-7.48
c11.26-3.22,44.39-35.21,64.18-54.32c27.74-26.78,39.33-37.47,48.11-40.61c5.07-4.72,16.85-25.71,24.74-39.77
c23.55-41.97,36.64-63.87,53.7-63.87c4.1-0.13,16.77-7.9,25.15-13.04c20.07-12.31,42.82-26.26,64.54-23.52
c22.21,2.77,56.85,23.34,84.68,39.88c12.04,7.15,23.42,13.91,28.62,16c12.43,4.95,25.55,24.76,54.73,72.19
c12.88,20.95,32.35,52.59,38.94,57.12c2.81,1.68,8.48,5.46,24.93,18.45c34.25,27.03,98.51,81.28,106.59,90.6
c11.58,13.21,82.63,54.27,139.73,87.26c10.59,6.12,21.21,12.26,31.65,18.32c6.38,3.71,8.55,11.89,4.84,18.27
c-3.71,6.38-11.88,8.55-18.27,4.84c-10.41-6.05-21.02-12.18-31.59-18.29c-82.11-47.45-132.95-77.38-146.5-92.84
c-5.48-6.29-64.07-56.46-103-87.19c-14.18-11.21-19.86-15.17-22.13-16.52c-11.06-6.63-24.73-28.3-47.94-66.03
c-13.02-21.17-34.76-56.51-42.31-61.54c-7.16-2.96-18.12-9.47-31.92-17.67c-22.96-13.64-57.66-34.25-74.35-36.33
c-12.44-1.57-31.74,10.27-47.25,19.78c-14.54,8.92-26.21,16.08-37.06,16.9c-7.32,5.5-23.59,34.48-32.46,50.3
c-19.96,35.56-28.17,48.72-39.06,51.88c-5.66,2.91-24.63,21.23-38.54,34.65c-34.87,33.66-58.95,56.08-75.39,60.79
c-9.78,2.8-19.08,5.09-29.85,7.74c-18.36,4.51-41.2,10.13-80.1,21.55c-44.94,13.23-67.12,45.84-83.31,69.65
c-4.47,6.57-8.68,12.77-12.86,17.8c-5.33,6.38-19.05,17.31-78.53,45.63c-36.38,17.32-76.23,34.61-96.75,43.37
c-11.13,4.77-18.14,7.71-18.21,7.74C215.09,1109.38,213.34,1109.71,211.62,1109.71z M730.56,799.63 M723.13,774
c-0.03,0.01-0.07,0.02-0.1,0.03C723.07,774.02,723.1,774.01,723.13,774z M992.8,715.04c0.01,0,0.03,0.01,0.04,0.02
C992.83,715.05,992.82,715.04,992.8,715.04z M992.26,714.77L992.26,714.77C992.26,714.77,992.26,714.77,992.26,714.77z
M799.79,697.65c-0.01,0-0.01,0-0.02,0C799.78,697.65,799.79,697.65,799.79,697.65z"/>
</g>
</g>
<g>
<g>
<path d="M1650.49,1082.98c-1.88,0-3.78-0.4-5.59-1.23c-4.06-1.88-100.15-46.62-159.83-106.3c-35.92-35.92-63.65-48.45-83.9-57.6
c-12.38-5.6-23.08-10.43-31.38-18.73c-10.04-10.04-24.32-19.26-38.12-28.18c-9.76-6.3-18.98-12.26-26.79-18.51
c-9.74-7.79-31.61-11.74-65-11.74c-8.48,0-19.35-3.13-31.93-6.75c-12.9-3.71-27.53-7.92-37.75-7.92
c-11.18,0-34.97,19-47.53,31.83c-5.16,5.28-13.62,5.37-18.9,0.21c-5.28-5.16-5.37-13.62-0.21-18.9
c6.51-6.66,40.34-39.87,66.64-39.87c14,0,30.55,4.76,45.15,8.96c9.29,2.67,19.83,5.71,24.54,5.71c27.8,0,62.2,2,81.7,17.6
c6.76,5.41,15.43,11.01,24.6,16.93c14.98,9.67,30.46,19.68,42.52,31.73c4.85,4.85,12.67,8.38,23.49,13.27
c20.88,9.43,52.43,23.69,91.79,63.06c56.34,56.35,151.19,100.5,152.14,100.94c6.7,3.09,9.62,11.04,6.53,17.74
C1660.37,1080.1,1655.54,1082.98,1650.49,1082.98z"/>
</g>
</g>
<g>
<g>
<path d="M1529.8,1010.02c-7.17,0-13.01-5.64-13.35-12.72c-1.58-8.92-23.18-57.43-42.5-97.74c-4.21-7.98-28.23-30.08-72.62-61.67
c-35.59-25.32-72.34-48.13-85.48-53.06c-18.66-7-36.24-37.23-63.39-85.99c-9.57-17.18-19.46-34.94-28.36-48.68
c-11.97-18.45-17.67-22.65-19.56-23.6c-15.43-7.72-40.92-38.13-81.24-87.11c-17.27-20.98-35.13-42.68-50.21-59.41
c-21.01-23.31-28.29-27.56-29.99-28.3c-10.39-1.24-22.51,4.96-34.24,10.96c-11.31,5.78-22,11.25-33.06,11.25
c-9.21,0-18.07-2.2-25.19-3.96c-3.47-0.86-8.48-2.1-10.94-2.23c-5.46,4.41-20.15,13.24-61.15,37.37
c-29.57,17.4-74.2,43.67-80.31,49.25c-4.24,4.72-19.43,32.91-30.54,53.51c-28,51.94-37.28,67.81-44.86,72.86
c-2.92,1.95-11.9,9.63-20.59,17.06c-34.53,29.54-52.23,43.6-63.36,46.89c-3.94,2.38-17.44,15.23-44.97,49.73
c-19.75,24.74-38.22,50.03-43.08,58.13c-11.23,18.71-43.41,61.67-44.78,63.49c-4.43,5.9-12.8,7.1-18.71,2.67
c-5.9-4.43-7.1-12.81-2.67-18.71c0.33-0.43,32.72-43.67,43.24-61.21c6.43-10.72,27.67-39.36,47.35-63.84
c41.83-52.06,51.17-54.67,56.13-55.91c8.07-2.71,39.88-29.91,53.48-41.54c11.47-9.81,18.38-15.68,22.51-18.56
c5.7-6.06,24.37-40.7,36.78-63.73c19.97-37.05,29.33-53.9,35.16-59.72c6.25-6.25,30.37-20.86,85.66-53.4
c23.65-13.92,53.03-31.2,57.65-34.9c9.62-9.3,22.79-6.03,34.43-3.15c6.29,1.56,12.8,3.18,18.75,3.18
c4.62,0,13.27-4.42,20.89-8.32c14.16-7.24,31.79-16.25,50.68-13.55c17.14,2.45,41.33,30.02,96.57,97.12
c25.92,31.49,61.42,74.63,72.56,80.19c16.81,8.41,33.63,37.03,59.32,83.18c10.04,18.03,20.42,36.68,29.8,50.93
c13.04,19.81,18.63,22.67,19.62,23.04c18.09,6.78,60.16,33.95,91.59,56.31c31.9,22.7,71.84,53.51,80.99,71.41
c0.05,0.1,0.1,0.2,0.15,0.3c0.11,0.23,11.16,23.31,22.07,47.49c23.12,51.27,23.12,57.33,23.12,61.34
C1543.17,1004.03,1537.19,1010.02,1529.8,1010.02z M1516.44,996.65c0,0.01,0,0.02,0,0.03
C1516.44,996.67,1516.44,996.66,1516.44,996.65z M631.47,719c-0.01,0-0.02,0-0.02,0.01C631.46,719,631.47,719,631.47,719z
M707.14,659.15C707.14,659.15,707.14,659.15,707.14,659.15C707.14,659.15,707.14,659.15,707.14,659.15z M1042.86,451.63
C1042.86,451.63,1042.86,451.63,1042.86,451.63C1042.86,451.63,1042.86,451.63,1042.86,451.63z M922.45,447.33
c-0.04,0.04-0.08,0.08-0.11,0.11C922.38,447.41,922.41,447.37,922.45,447.33z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M290.49,1132.54h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21
v22.27c-31.09,0-55.56,17.22-83.88,37.15c-28.21,19.85-60.17,42.35-105.23,52.25L290.49,1132.54z"/>
</g>
</g>
<g>
<g>
<path d="M791.46,1128.84l-6.65-21.26c28.16-8.81,47.66-23.92,68.29-39.91c29.85-23.14,60.72-47.06,116.37-47.06
c43.56,0,75.29,20.9,108.89,43.03c15.66,10.32,31.86,20.99,49.87,29.86l-9.84,19.98c-19.26-9.49-36.05-20.54-52.28-31.24
c-32.06-21.12-59.75-39.36-96.64-39.36c-48.02,0-73.37,19.65-102.72,42.39C845.46,1101.78,823.45,1118.84,791.46,1128.84z"/>
</g>
</g>
<g>
<g>
<path d="M619.56,1112.31c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L619.56,1112.31z"/>
</g>
</g>
<g>
<g>
<path d="M1269.05,1132.29l-4.78-21.76c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21v22.27
c-31.09,0-55.56,17.22-83.88,37.15C1346.08,1099.89,1314.11,1122.39,1269.05,1132.29z"/>
</g>
</g>
<g>
<g>
<path d="M1596.94,1112.31c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L1596.94,1112.31z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M946.67,1189.49c-70.56,0-115.01-29.29-154.23-55.14c-3.48-2.29-6.93-4.57-10.37-6.8
c-26.38-17.15-52.83-32.54-86.26-32.54c-24.78,0-45.84,5.34-66.29,16.82c-12.86,7.25-24.3,16.13-36.42,25.53
c-31.51,24.44-67.22,52.13-135.12,52.13c-70.03,0-125.35-29.1-171.79-56.95h-0.02l-2.73-1.62c-2.79-1.69-5.54-3.37-8.24-5.02
c-27.17-16.58-50.63-30.89-68.08-30.89v-22.27c23.71,0,48.41,15.07,79.68,34.16c2.02,1.23,4.07,2.48,6.15,3.75l2.09,1.23
c46.45,28.01,97.29,55.35,162.95,55.35c60.28,0,90-23.05,121.47-47.46c12.22-9.47,24.85-19.27,39.15-27.34
c23.93-13.43,48.46-19.68,77.21-19.68c17.95,0,35.34,3.61,53.16,11.04c16.22,6.76,31.33,16.06,45.24,25.1
c3.48,2.26,6.97,4.56,10.49,6.88c38.4,25.3,78.1,51.46,141.97,51.46c65.44,0,103.94-27.1,141.16-53.31
c10.15-7.15,19.74-13.9,29.7-19.94l11.56,19.04c-9.31,5.65-18.6,12.19-28.44,19.12
C1062.46,1159.02,1019.16,1189.49,946.67,1189.49z"/>
</g>
</g>
<g>
<g>
<path d="M1260.88,1130.93c-2.72-1.65-5.41-3.29-8.05-4.9c-27.28-16.64-50.84-31.02-68.34-31.02c-18.05,0-34.62,5.38-55.41,18
l-11.56-19.04c16.29-9.88,38.62-21.23,66.96-21.23c23.76,0,48.55,15.13,79.94,34.28c2.62,1.6,5.29,3.23,8,4.87L1260.88,1130.93z
"/>
</g>
</g>
<g>
<g>
<path d="M1435.38,1189.49c-71.41,0-127.49-30.21-174.45-58.53l11.5-19.07c46.43,28,97.25,55.33,162.95,55.33
c60.27,0,89.99-23.05,121.45-47.45c12.22-9.47,24.85-19.27,39.15-27.34c23.89-13.44,48.41-19.7,77.19-19.7
c0.93,0,1.99,0,3.13,0.06l-1.18,22.24c-0.55-0.03-1.23-0.03-1.95-0.03c-24.8,0-45.85,5.35-66.26,16.83
c-12.87,7.26-24.32,16.14-36.43,25.53C1538.98,1161.8,1503.27,1189.49,1435.38,1189.49z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M433.07,1256.48l-4.57-21.8c41.61-8.72,70.76-29.24,98.95-49.08c30.1-21.18,58.54-41.19,96.67-41.19v22.27
c-31.08,0-55.54,17.21-83.85,37.13C511.63,1223.97,479.17,1246.81,433.07,1256.48z"/>
</g>
</g>
<g>
<g>
<path d="M1410.53,1256.48l-4.57-21.8c41.58-8.72,70.71-29.23,98.88-49.07c30.09-21.19,58.52-41.2,96.65-41.2v22.27
c-31.08,0-55.53,17.21-83.83,37.14C1489.04,1223.97,1456.61,1246.81,1410.53,1256.48z"/>
</g>
</g>
<g>
<g>
<path d="M763.39,1236.35c-26.97-11.89-50.57-26.25-71.39-38.93c-27.09-16.49-50.49-30.74-67.87-30.74v-22.27
c23.63,0,48.27,15,79.46,33.98c20.23,12.32,43.16,26.27,68.79,37.57L763.39,1236.35z"/>
</g>
</g>
<g>
<g>
<path d="M933.21,1253.16l-6.45-21.32c28.89-8.73,48.69-24.09,69.65-40.35c29.85-23.15,60.71-47.09,116.39-47.09
c43.59,0,75.35,20.92,108.97,43.07c15.76,10.38,32.06,21.12,50.2,30.02l-9.81,20c-19.4-9.52-36.3-20.65-52.64-31.41
c-32.09-21.14-59.81-39.39-96.72-39.39c-48.05,0-73.4,19.66-102.74,42.41C988.42,1225.88,966.05,1243.24,933.21,1253.16z"/>
</g>
</g>
<g>
<g>
<path d="M1670.01,1197.76c-7.18-4.37-14.6-8.88-21.61-12.92c-16.28-9.43-33.22-18.16-46.91-18.16v-22.27
c18.95,0,39.1,10.16,58.06,21.15c7.21,4.16,14.75,8.74,22.03,13.17L1670.01,1197.76z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M433.04,1257.28h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21
v22.27c-31.1,0-55.56,17.22-83.88,37.15c-28.2,19.85-60.17,42.35-105.23,52.25L433.04,1257.28z"/>
</g>
</g>
<g>
<g>
<path d="M934.01,1253.58l-6.65-21.26c28.16-8.81,47.66-23.92,68.29-39.91c29.85-23.14,60.72-47.06,116.37-47.06
c43.56,0,75.29,20.9,108.89,43.03c15.67,10.32,31.86,20.99,49.88,29.86l-9.84,19.98c-19.26-9.49-36.05-20.54-52.28-31.24
c-32.06-21.12-59.75-39.36-96.63-39.36c-48.02,0-73.37,19.65-102.72,42.39C988.01,1226.51,966,1243.57,934.01,1253.58z"/>
</g>
</g>
<g>
<g>
<path d="M762.11,1237.04c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L762.11,1237.04z"/>
</g>
</g>
<g>
<g>
<path d="M1411.6,1257.02l-4.78-21.76c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21v22.27
c-31.09,0-55.56,17.22-83.88,37.15C1488.63,1224.62,1456.66,1247.12,1411.6,1257.02z"/>
</g>
</g>
<g>
<g>
<path d="M1739.49,1237.04c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L1739.49,1237.04z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M272.96,1251.87l-12.83-18.21c8.65-6.09,15.82-10.85,22.58-14.97l0.59-0.35c0.27-0.16,0.54-0.33,0.8-0.48
c23.55-14.11,43.77-20.4,65.57-20.4v22.27c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31c-0.25,0.15-0.51,0.31-0.76,0.45
C287.87,1241.64,281.13,1246.11,272.96,1251.87z"/>
</g>
</g>
<g>
<g>
<path d="M1089.22,1314.23c-70.56,0-115.01-29.29-154.23-55.14c-3.48-2.29-6.93-4.57-10.37-6.8
c-26.39-17.15-52.83-32.54-86.26-32.54c-24.78,0-45.84,5.34-66.29,16.82c-12.86,7.25-24.3,16.13-36.42,25.53
c-31.51,24.44-67.21,52.13-135.12,52.13c-70.03,0-125.35-29.09-171.79-56.95h-0.02l-2.73-1.62c-2.79-1.69-5.54-3.37-8.24-5.02
c-27.17-16.58-50.63-30.9-68.08-30.9v-22.27c23.71,0,48.41,15.07,79.69,34.16c2.03,1.24,4.08,2.49,6.15,3.75l2.08,1.22
c46.45,28.01,97.29,55.35,162.95,55.35c60.28,0,90-23.05,121.47-47.46c12.22-9.47,24.85-19.27,39.15-27.34
c23.93-13.43,48.46-19.68,77.21-19.68c17.95,0,35.34,3.61,53.16,11.04c16.22,6.76,31.33,16.06,45.24,25.1
c3.47,2.26,6.97,4.56,10.49,6.88c38.4,25.3,78.1,51.46,141.97,51.46c65.44,0,103.94-27.1,141.16-53.31
c10.15-7.15,19.74-13.9,29.7-19.94l11.56,19.04c-9.31,5.65-18.6,12.19-28.44,19.12
C1205.01,1283.75,1161.71,1314.23,1089.22,1314.23z"/>
</g>
</g>
<g>
<g>
<path d="M1403.25,1255.54l-0.79-0.45c-2.36-1.44-4.69-2.86-6.98-4.26c-27.32-16.68-50.91-31.09-68.44-31.09
c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31c-0.33,0.2-0.67,0.4-1,0.59l-10.82-19.47l0.2-0.12c0.27-0.16,0.54-0.33,0.8-0.48
c23.55-14.11,43.78-20.4,65.57-20.4c23.79,0,48.62,15.16,80.05,34.36c2.23,1.36,4.49,2.74,6.78,4.13l0.02,0.01
c0.39,0.22,1.05,0.58,1.81,1.12l-12.93,18.14C1402.92,1255.34,1403.08,1255.45,1403.25,1255.54z"/>
</g>
</g>
<g>
<g>
<path d="M1577.93,1314.22c-71.42,0-127.49-30.21-174.45-58.53l11.5-19.07c46.42,28,97.25,55.33,162.95,55.33
c8.37,0,15.9-0.42,23.01-1.3l0.16-0.02c9.7-1.05,18.66-2.82,27.41-5.44c29.58-8.68,49.67-24.25,70.93-40.74
c12.2-9.46,24.81-19.23,39.08-27.29l10.95,19.4c-12.86,7.26-24.29,16.12-36.38,25.5c-21.97,17.03-44.69,34.64-78.26,44.49
c-9.99,2.98-20.23,5.02-31.26,6.21C1595.57,1313.75,1587.18,1314.22,1577.93,1314.22z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M575.62,1381.21l-4.57-21.8c41.61-8.72,70.76-29.24,98.95-49.08c30.1-21.18,58.54-41.19,96.67-41.19v22.27
c-31.08,0-55.54,17.21-83.85,37.13C654.18,1348.7,621.72,1371.54,575.62,1381.21z"/>
</g>
</g>
<g>
<g>
<path d="M427.35,1362.22c-19.43-9.53-36.34-20.66-52.69-31.43c-31.01-20.42-57.8-38.05-92.75-39.3c-3.08-0.1-6.5-0.1-9.58,0.04
l-0.99-22.25c2.15-0.1,4.39-0.14,6.64-0.14c1.68,0,3.27,0.05,4.67,0.09c41.24,1.47,71.84,21.62,104.25,42.95
c15.78,10.39,32.09,21.13,50.25,30.03L427.35,1362.22z"/>
</g>
</g>
<g>
<g>
<path d="M905.94,1361.08c-26.97-11.89-50.57-26.25-71.39-38.92c-27.09-16.49-50.49-30.74-67.88-30.74v-22.27
c23.63,0,48.27,15,79.46,33.99c20.23,12.31,43.16,26.27,68.79,37.57L905.94,1361.08z"/>
</g>
</g>
<g>
<g>
<path d="M1552.03,1381.45h-1.19l-0.02-11.24l-2.32-10.78c4.33-0.93,8.41-1.94,12.47-3.09c14.9-4.2,29.35-10.25,44.16-18.48
c15.23-8.47,28.94-18.13,42.2-27.47c30.11-21.21,58.55-41.24,96.72-41.24v22.27c-31.11,0-55.57,17.23-83.89,37.18
c-13.73,9.67-27.94,19.68-44.2,28.73c-16.34,9.08-32.35,15.77-48.94,20.45c-4.52,1.27-9.04,2.39-13.82,3.42L1552.03,1381.45z"/>
</g>
</g>
<g>
<g>
<path d="M1075.76,1377.9l-6.45-21.32c28.89-8.73,48.69-24.09,69.65-40.35c29.85-23.15,60.71-47.09,116.39-47.09
c43.59,0,75.35,20.92,108.97,43.06c15.76,10.38,32.06,21.12,50.2,30.02l-9.81,20c-19.4-9.52-36.3-20.65-52.64-31.41
c-32.09-21.14-59.8-39.39-96.72-39.39c-48.05,0-73.4,19.66-102.74,42.41C1130.98,1350.61,1108.6,1367.97,1075.76,1377.9z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1744.04,1280.28"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M426.11,1362.95c-19.26-9.49-36.05-20.54-52.28-31.24c-32.06-21.12-59.76-39.36-96.64-39.36v-22.27
c43.56,0,75.29,20.9,108.89,43.03c15.66,10.32,31.86,20.99,49.87,29.86L426.11,1362.95z"/>
</g>
</g>
<g>
<g>
<path d="M575.59,1382.01h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21
v22.27c-31.1,0-55.56,17.22-83.88,37.15c-28.2,19.85-60.17,42.35-105.23,52.25L575.59,1382.01z"/>
</g>
</g>
<g>
<g>
<path d="M1076.56,1378.31l-6.65-21.26c28.16-8.81,47.66-23.92,68.29-39.91c29.85-23.14,60.72-47.06,116.37-47.06
c43.56,0,75.29,20.9,108.89,43.03c15.67,10.32,31.86,20.99,49.88,29.86l-9.84,19.98c-19.26-9.49-36.05-20.54-52.28-31.24
c-32.06-21.12-59.75-39.36-96.63-39.36c-48.02,0-73.37,19.65-102.72,42.39C1130.56,1351.24,1108.55,1368.3,1076.56,1378.31z"/>
</g>
</g>
<g>
<g>
<path d="M904.66,1361.77c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L904.66,1361.77z"/>
</g>
</g>
<g>
<g>
<path d="M1554.22,1381.75l-4.88-21.73c3.99-0.9,7.56-1.81,10.92-2.8l0.14-0.04c14.77-4.13,29.32-10.26,44.48-18.73
c14.99-8.39,28.52-17.91,41.6-27.12c30.15-21.21,58.63-41.25,96.8-41.25v22.27c-31.12,0-55.62,17.24-83.99,37.2
c-13.55,9.53-27.55,19.39-43.55,28.34c-16.7,9.33-32.81,16.11-49.28,20.72C1562.66,1379.73,1558.65,1380.76,1554.22,1381.75z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1743.29,1281.22"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M353.08,1416.11l-9.86-19.97c19.46-9.61,36.25-21.43,52.48-32.86c10.11-7.12,19.65-13.84,29.57-19.86l0.58-0.34
c0.27-0.16,0.53-0.32,0.8-0.48c23.55-14.11,43.78-20.4,65.57-20.4v22.27c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31
c-0.25,0.16-0.51,0.31-0.76,0.46c-9.23,5.62-18.43,12.1-28.18,18.96C391.6,1393.42,374.09,1405.74,353.08,1416.11z"/>
</g>
</g>
<g>
<g>
<path d="M1231.77,1438.96c-70.56,0-115.01-29.29-154.23-55.14c-3.48-2.29-6.93-4.57-10.37-6.8
c-26.38-17.15-52.83-32.54-86.26-32.54c-24.78,0-45.84,5.34-66.29,16.82c-12.86,7.25-24.3,16.13-36.42,25.53
c-31.51,24.44-67.22,52.13-135.12,52.13c-70.03,0-125.35-29.09-171.79-56.95h-0.02l-2.73-1.62c-2.79-1.69-5.54-3.37-8.24-5.02
c-27.17-16.58-50.63-30.9-68.09-30.9v-22.27c23.71,0,48.41,15.07,79.69,34.16c2.02,1.23,4.07,2.48,6.15,3.75l2.08,1.23
c46.44,28.01,97.28,55.35,162.95,55.35c60.28,0,90-23.05,121.47-47.46c12.22-9.47,24.85-19.27,39.15-27.34
c23.93-13.43,48.46-19.68,77.21-19.68c17.95,0,35.34,3.61,53.16,11.04c16.22,6.76,31.33,16.06,45.24,25.1
c3.47,2.26,6.97,4.56,10.49,6.88c38.4,25.3,78.1,51.46,141.97,51.46c65.44,0,103.94-27.1,141.17-53.31
c10.15-7.15,19.74-13.9,29.7-19.94l11.56,19.04c-9.31,5.65-18.6,12.19-28.44,19.12
C1347.56,1408.48,1304.27,1438.96,1231.77,1438.96z"/>
</g>
</g>
<g>
<g>
<path d="M1545.99,1380.4c-2.72-1.65-5.4-3.28-8.03-4.89c-27.29-16.65-50.85-31.02-68.35-31.02c-18.05,0-34.62,5.38-55.41,18
l-11.56-19.04c16.29-9.88,38.61-21.23,66.96-21.23c23.76,0,48.56,15.13,79.96,34.28c2.62,1.6,5.28,3.22,7.99,4.86
L1545.99,1380.4z"/>
</g>
</g>
<g>
<g>
<path d="M1558.68,1386.12h-3.07l-4.65-2.74c-1.67-0.99-3.32-1.97-4.98-2.98l11.57-19.03c1.59,0.96,3.17,1.91,4.78,2.86l2,1.19
l-5.68,9.53L1558.68,1386.12z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M718.18,1505.94l-4.57-21.8c41.61-8.72,70.76-29.24,98.95-49.08c30.1-21.18,58.54-41.19,96.67-41.19v22.27
c-31.08,0-55.54,17.21-83.85,37.13C796.74,1473.44,764.28,1496.28,718.18,1505.94z"/>
</g>
</g>
<g>
<g>
<path d="M569.91,1486.96c-19.44-9.53-36.35-20.67-52.71-31.45c-32.06-21.12-59.76-39.36-96.65-39.36
c-21.74,0-40.15,3.98-57.94,12.53l-9.65-20.08c20.63-9.91,42.74-14.73,67.59-14.73c43.57,0,75.3,20.9,108.9,43.03
c15.78,10.39,32.1,21.14,50.27,30.05L569.91,1486.96z"/>
</g>
</g>
<g>
<g>
<path d="M1048.49,1485.81c-26.97-11.89-50.57-26.25-71.39-38.93c-27.09-16.49-50.49-30.74-67.87-30.74v-22.27
c23.63,0,48.27,15,79.46,33.98c20.23,12.32,43.16,26.27,68.79,37.57L1048.49,1485.81z"/>
</g>
</g>
<g>
<g>
<path d="M1218.31,1502.63l-6.45-21.32c28.89-8.73,48.69-24.09,69.65-40.35c29.85-23.15,60.71-47.09,116.39-47.09
c43.46,0,75.15,20.81,108.7,42.83l2.41,1.58l-12.22,18.62l-2.41-1.58c-32.02-21.02-59.68-39.18-96.48-39.18
c-48.05,0-73.4,19.66-102.74,42.41C1273.53,1475.35,1251.15,1492.7,1218.31,1502.63z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M568.66,1487.68c-19.26-9.49-36.05-20.54-52.28-31.24c-32.06-21.12-59.76-39.36-96.64-39.36v-22.27
c43.56,0,75.29,20.9,108.89,43.03c15.66,10.32,31.86,20.99,49.87,29.86L568.66,1487.68z"/>
</g>
</g>
<g>
<g>
<path d="M718.14,1506.74h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21
v22.27c-31.1,0-55.56,17.22-83.88,37.15c-28.2,19.85-60.17,42.35-105.23,52.25L718.14,1506.74z"/>
</g>
</g>
<g>
<g>
<path d="M1219.13,1503.04l-6.65-21.26c28.14-8.81,47.63-23.91,68.27-39.91c29.86-23.14,60.73-47.07,116.37-47.07
c43.61,0,75.38,20.94,109.01,43.1l2.07,1.36l-12.25,18.6l-2.07-1.37c-32.1-21.16-59.83-39.43-96.75-39.43
c-48.02,0-73.37,19.65-102.72,42.4C1273.1,1475.98,1251.1,1493.04,1219.13,1503.04z"/>
</g>
</g>
<g>
<g>
<path d="M1047.21,1486.5c-26.76-11.83-50.2-26.1-70.88-38.68c-27.1-16.49-50.51-30.74-67.9-30.74v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L1047.21,1486.5z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M479.72,1547.96l-8.32-20.66c25.78-10.38,46.66-25.07,66.84-39.28c10.11-7.12,19.67-13.84,29.58-19.87l0.57-0.34
c0.27-0.16,0.54-0.33,0.8-0.48c23.55-14.11,43.78-20.4,65.57-20.4v22.27c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31
c-0.26,0.16-0.51,0.31-0.77,0.46c-9.23,5.62-18.44,12.1-28.19,18.96C530.83,1520.47,507.89,1536.62,479.72,1547.96z"/>
</g>
</g>
<g>
<g>
<path d="M1374.3,1563.69c-70.57,0-115.04-29.32-154.27-55.18c-3.41-2.25-6.8-4.48-10.17-6.68c-0.13-0.08-0.26-0.16-0.39-0.24
l-0.45-0.28c-26.07-16.92-52.24-32.11-85.57-32.11c-24.22,0-44.82,5.09-64.81,16.01c-0.52,0.32-0.98,0.57-1.31,0.75l-0.2,0.11
c-12.81,7.22-24.25,16.1-36.37,25.49c-31.52,24.43-67.24,52.13-135.15,52.13c-70.55,0-126.14-29.49-172.76-57.51h-0.05
l-2.71-1.62c-2.46-1.49-4.88-2.97-7.27-4.43c-27.15-16.59-50.61-30.92-68.07-30.92v-22.27c23.73,0,48.42,15.09,79.68,34.19
c1.82,1.11,3.66,2.23,5.51,3.37h0l2.7,1.6c46.43,28,97.25,55.33,162.95,55.33c60.28,0,90.02-23.05,121.5-47.46
c12.22-9.47,24.85-19.26,39.14-27.33l1.36-0.77c23.5-12.91,47.6-18.93,75.84-18.93c39.33,0,69.77,17.58,97.57,35.62
c0.13,0.08,0.26,0.16,0.39,0.25l0.45,0.28c3.46,2.25,6.92,4.53,10.42,6.84c38.41,25.32,78.12,51.5,142.01,51.5
c5.1,0,10.31-0.18,15.92-0.55l0.74-0.02v11.09h11.18l-10.49,10.49l0.04,0.67C1385.59,1563.49,1379.9,1563.69,1374.3,1563.69z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path d="M813.94,1635.37c-70.51,0-114.95-29.27-154.15-55.1c-32.08-21.13-59.79-39.38-96.69-39.38
c-25.64,0-46.49,5.43-67.63,17.62l-11.13-19.29c24.37-14.05,49.4-20.6,78.75-20.6c43.58,0,75.33,20.92,108.95,43.06
c38.38,25.28,78.07,51.43,141.9,51.43c65.45,0,103.94-27.09,141.16-53.28c30.1-21.19,58.54-41.2,96.68-41.2v22.27
c-31.09,0-55.55,17.21-83.86,37.14C929.73,1604.9,886.44,1635.37,813.94,1635.37z"/>
</g>
</g>
<g>
<g>
<path d="M1302.67,1635.37c-9.1,0-18.24-0.5-27.16-1.49c-64.98-6.99-115.35-37.63-155.82-62.25
c-27.11-16.49-50.53-30.74-67.91-30.74v-22.27c23.63,0,48.28,15,79.49,33.98c38.58,23.47,86.6,52.68,146.67,59.14
c8.26,0.92,16.33,1.36,24.74,1.36c3.1,0,6.39-0.07,10.03-0.21c18.5-0.86,34.93-4.03,50.15-9.69l7.76,20.88
c-17.41,6.47-36.04,10.09-56.95,11.06C1309.64,1635.29,1306.07,1635.37,1302.67,1635.37z"/>
</g>
</g>
</g>
</g>
<g id="rules">
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

View file

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

View file

Before

Width:  |  Height:  |  Size: 103 KiB

After

Width:  |  Height:  |  Size: 103 KiB

View file

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View file

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 KiB

View file

@ -0,0 +1,534 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1920 1920" style="enable-background:new 0 0 1920 1920;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#FFFFFF;stroke:#000000;stroke-width:22.2737;stroke-miterlimit:10;}
</style>
<g id="Layer_1">
<g>
<path class="st0" d="M940.76,1736.11c-30.09,0-60.34-1.76-90.17-5.26c-28.77-3.31-57.89-8.39-86.46-15.09
c-35.78-8.35-71.23-19.33-105.32-32.63l-0.48-0.19l-26.05-10.63c-11.59-5.04-21.69-9.67-30.88-14.16
c-11.59-5.62-22.2-11.06-32.34-16.57c-33.37-18.16-65.43-38.73-95.31-61.17c-0.72-0.51-1.3-0.95-1.69-1.25l-1.85-1.38
c-0.85-0.65-1.87-1.42-3-2.34c-4.79-3.62-9.58-7.37-14.62-11.45c-10.2-8.16-20.32-16.73-30.07-25.46
c-12.42-11.03-24.65-22.65-36.35-34.54c-19.2-19.52-37.5-40.2-54.44-61.48c-0.58-0.71-1.3-1.6-2.09-2.67
c-0.17-0.22-0.34-0.44-0.51-0.67c-3.14-3.97-6.31-8.1-9.68-12.61c-8.48-11.26-16.79-22.95-24.71-34.76
c-1.95-2.92-3.42-5.16-4.77-7.26c-1.91-2.86-3.69-5.67-5.42-8.39c-16.02-25.16-30.77-51.69-43.8-78.81
c-0.56-1.02-1.06-2.06-1.52-3.12c-4.92-10.19-9.75-20.9-14.38-31.86l-0.07-0.16c-0.12-0.29-0.25-0.58-0.38-0.88
c-0.36-0.82-0.71-1.65-1.05-2.49c-6.8-16.16-13.13-32.83-18.82-49.53l-0.14-0.4c-0.19-0.54-0.49-1.4-0.81-2.47
c-6.82-20.09-12.83-40.56-17.85-60.86c-4.65-18.68-8.58-37.43-11.69-55.71c-17.5-101.45-14.63-203.98,8.53-304.74v-0.05l0.89-3.82
c19.74-83.82,52.92-163.29,98.61-236.2C353,431.85,452.57,338.51,570.08,275.03l0.14-0.1l1.4-0.75
c22.02-11.85,45.02-22.8,68.34-32.54c22.81-9.58,46.29-18.14,69.76-25.45l0.23-0.09l1.3-0.4
c183.57-56.86,381.11-43.46,556.21,37.72c176.25,81.71,314.71,225.45,389.87,404.75c21.37,50.99,37.32,104.23,47.42,158.23
c1.85,9.92,3.53,20.03,5.02,30.07c4.19,28.65,6.77,57.67,7.7,86.5l0.11,0.11l0.25,13.69c0.23,15.07,0,30.32-0.69,45.34
c-0.6,14.53-1.66,29.43-3.17,44.3c-1.89,18.29-4.36,36.23-7.33,53.42c-0.73,4.4-1.52,8.64-2.29,12.74
c-3.93,20.81-8.91,42.14-14.8,63.47c-1.54,5.58-3.27,11.51-5.43,18.58c-0.23,0.84-0.49,1.68-0.78,2.54
c-7.42,24.19-16.2,48.41-26.1,72.02c-8.1,19.39-17.3,39.02-27.31,58.29l-0.06,0.11c-1.38,2.66-2.75,5.33-4.18,7.99
c-4.95,9.27-10.34,18.85-16,28.47c-6.08,10.29-12.61,20.76-19.43,31.17c-0.45,0.72-0.91,1.42-1.4,2.11
c-1.56,2.39-3.14,4.72-4.55,6.8l-9.94,14.64h-0.18c-14.69,20.8-30.62,41.08-47.53,60.5c-0.47,0.58-0.95,1.15-1.46,1.71
c-0.9,1.08-1.72,2-2.42,2.78c-30.53,34.53-64.24,66.42-100.38,94.96l-11.08,8.65l-11.32,8.38
c-34.76,25.38-71.81,47.99-110.29,67.3c-16.12,8.11-32.6,15.69-48.96,22.53c-90.59,37.97-185.87,58.29-283.14,60.4
C952,1736.05,946.38,1736.11,940.76,1736.11z M683.31,1620.96c31.08,12.11,63.39,22.11,96.04,29.73
c26.1,6.12,52.65,10.75,78.95,13.78c32.42,3.8,65.32,5.36,97.86,4.64c88.87-1.92,175.94-20.51,258.8-55.23
c14.96-6.25,30.01-13.17,44.77-20.6c37.44-18.78,73.38-40.97,106.88-65.98l2.26-1.71c37.66-28.43,72.62-60.81,103.93-96.23
l0.13-0.14c0.4-0.45,0.89-0.99,1.05-1.19l1.16-1.45l0.6-0.63c19.26-22.07,37.14-45.37,53.15-69.24l6.54-9.75
c5.88-9.03,11.51-18.07,16.74-26.92c5.17-8.77,10.09-17.53,14.61-26c1.29-2.41,2.52-4.8,3.76-7.19l0.09-0.17
c9.19-17.68,17.59-35.62,25-53.35c9.15-21.81,17.24-44.15,24.05-66.43l0.37-1.19c2.07-6.76,3.7-12.31,5.12-17.47
c5.41-19.59,9.97-39.12,13.55-58.06c0.7-3.73,1.43-7.65,2.05-11.38l0.05-0.27c2.73-15.74,4.99-32.22,6.73-48.97
c1.37-13.48,2.34-27.07,2.88-40.29l0.01-0.18c0.5-10.82,0.74-21.77,0.71-32.67l-0.12-8.75c-0.43-30.44-2.89-61.22-7.31-91.5
c-1.36-9.17-2.91-18.46-4.6-27.55c-9.23-49.34-23.82-98.02-43.36-144.66c-68.7-163.88-195.25-295.27-356.34-369.96
c-159.65-74.02-339.68-86.39-507.05-34.9l-0.21,0.09l-1.3,0.4c-21.84,6.76-43.71,14.71-65.01,23.66
c-20.89,8.73-41.42,18.48-61.11,29.01l-0.12,0.08l-1.41,0.76c-107.94,58.02-199.39,143.56-264.46,247.4
c-41.4,66.07-71.57,138.03-89.68,213.91l-0.5,2.16c-21.9,93.19-24.8,188.06-8.6,281.98c2.84,16.71,6.43,33.81,10.68,50.89
c4.66,18.8,10.23,37.75,16.57,56.35l1.79,5.3c4.91,14.18,10.32,28.3,16.09,42.01l0.23,0.55c0.14,0.35,0.29,0.7,0.44,1.04
c0.25,0.57,0.49,1.13,0.73,1.7c4.09,9.67,8.34,19.11,12.65,28.08l0.08,0.12l1.25,2.61c12.02,25.14,25.66,49.73,40.54,73.09
c1.66,2.62,3.19,5.03,4.67,7.24l0.4,0.6c1.19,1.85,2.5,3.86,4.27,6.5c7.19,10.72,14.79,21.42,22.54,31.71l0.07,0.1
c2.87,3.84,5.56,7.35,8.19,10.69l0.62,0.62l1.52,2.16c0.15,0.19,0.31,0.38,0.46,0.57l0.22,0.27
c15.51,19.5,32.29,38.46,49.88,56.35c10.67,10.83,21.82,21.44,33.15,31.5l0.11,0.1c8.87,7.95,18.08,15.74,27.36,23.17l0.18,0.14
c4.64,3.76,9.02,7.19,13.38,10.48l1.39,1.1c0.2,0.16,0.79,0.62,1.23,0.95l0.52,0.39c0.52,0.38,0.96,0.71,1.29,0.96l0.26,0.17
l0.75,0.57c27.42,20.62,56.88,39.55,87.56,56.24c9.21,5.01,18.92,9.98,29.67,15.19c8.4,4.11,17.26,8.17,27.92,12.81
L683.31,1620.96z"/>
</g>
<g>
<rect x="1145.39" y="1646.9" transform="matrix(0.9223 -0.3865 0.3865 0.9223 -558.4398 622.0869)" class="st0" width="245.01" height="105.95"/>
</g>
<g>
<rect x="1575.05" y="597.45" transform="matrix(-0.3865 -0.9223 0.9223 -0.3865 1753.7202 2467.4592)" class="st0" width="245.01" height="105.95"/>
</g>
<g>
<polygon class="st0" points="1795.5,1170.8 1784.71,1197.17 1784.67,1197.22 1778.3,1212.81 1768.63,1236.42 1750.24,1281.37
1749.83,1282.35 1725.73,1341.24 1702.66,1397.59 1604.61,1357.46 1608.31,1348.5 1608.53,1347.92 1612.32,1338.7
1623.01,1312.51 1629.69,1296.2 1649.34,1248.36 1673.35,1189.69 1673.79,1188.58 1697.49,1130.71 "/>
</g>
<g>
<rect x="1139.31" y="165.28" transform="matrix(-0.9254 -0.3789 0.3789 -0.9254 2346.8621 898.3259)" class="st0" width="245.01" height="105.95"/>
</g>
<g>
<rect x="487.24" y="1646.9" transform="matrix(-0.9223 -0.3865 0.3865 -0.9223 515.1688 3503.3196)" class="st0" width="245.01" height="105.95"/>
</g>
<g>
<rect x="57.59" y="597.45" transform="matrix(0.3865 -0.9223 0.9223 0.3865 -489.399 565.1584)" class="st0" width="245.01" height="105.95"/>
</g>
<g>
<polygon class="st0" points="82.15,1170.8 92.93,1197.17 92.98,1197.22 99.35,1212.81 109.02,1236.42 127.41,1281.37
127.81,1282.35 151.91,1341.24 174.99,1397.59 273.04,1357.46 269.34,1348.5 269.12,1347.92 265.33,1338.7 254.64,1312.51
247.96,1296.2 228.31,1248.36 204.3,1189.69 203.86,1188.58 180.16,1130.71 "/>
</g>
<g>
<rect x="493.33" y="165.28" transform="matrix(0.9254 -0.3789 0.3789 0.9254 -36.7796 249.6038)" class="st0" width="245.01" height="105.95"/>
</g>
<g>
<g>
<g>
<path class="st0" d="M209.62,1110.04c-5.22,0-10.18-3.08-12.33-8.2c-2.85-6.81,0.35-14.64,7.16-17.49
c0.07-0.03,7-2.93,18.03-7.67c20.35-8.69,59.83-25.82,95.78-42.93c58.85-28.02,68.21-37.08,69.49-38.61
c3.34-4.01,7.02-9.43,11.29-15.71c17.42-25.62,43.75-64.34,97.87-80.27c39.48-11.59,62.64-17.29,81.26-21.86
c10.5-2.58,19.57-4.81,28.87-7.48c11.26-3.22,44.39-35.21,64.18-54.32c27.74-26.78,39.33-37.47,48.11-40.61
c5.07-4.72,16.85-25.71,24.74-39.77c23.55-41.97,36.64-63.87,53.7-63.87c4.1-0.13,16.77-7.9,25.15-13.04
c20.07-12.31,42.82-26.26,64.54-23.52c22.21,2.77,56.85,23.34,84.68,39.88c12.04,7.15,23.42,13.91,28.62,16
c12.43,4.95,25.55,24.76,54.73,72.19c12.88,20.95,32.35,52.59,38.94,57.12c2.81,1.68,8.48,5.46,24.93,18.45
c34.25,27.03,98.51,81.28,106.59,90.6c11.58,13.21,82.63,54.27,139.73,87.26c10.59,6.12,21.21,12.26,31.65,18.32
c6.38,3.71,8.55,11.89,4.84,18.27c-3.71,6.38-11.88,8.55-18.27,4.84c-10.41-6.05-21.02-12.18-31.59-18.29
c-82.11-47.45-132.95-77.38-146.5-92.84c-5.48-6.29-64.07-56.46-103-87.19c-14.18-11.21-19.86-15.17-22.13-16.52
c-11.06-6.63-24.73-28.3-47.94-66.03c-13.02-21.17-34.76-56.51-42.31-61.54c-7.16-2.96-18.12-9.47-31.92-17.67
c-22.96-13.64-57.66-34.25-74.35-36.33c-12.44-1.57-31.74,10.27-47.25,19.78c-14.54,8.92-26.21,16.08-37.06,16.9
c-7.32,5.5-23.59,34.48-32.46,50.3c-19.96,35.56-28.17,48.72-39.06,51.88c-5.66,2.91-24.63,21.23-38.54,34.65
c-34.87,33.66-58.95,56.08-75.39,60.79c-9.78,2.8-19.08,5.09-29.85,7.74c-18.36,4.51-41.2,10.13-80.1,21.55
c-44.94,13.23-67.12,45.84-83.31,69.65c-4.47,6.57-8.68,12.77-12.86,17.8c-5.33,6.38-19.05,17.31-78.53,45.63
c-36.38,17.32-76.23,34.61-96.75,43.37c-11.13,4.77-18.14,7.71-18.21,7.74C213.09,1109.71,211.34,1110.04,209.62,1110.04z
M728.55,799.96 M721.13,774.34c-0.03,0.01-0.07,0.02-0.1,0.03C721.06,774.35,721.1,774.34,721.13,774.34z M990.8,715.37
c0.01,0,0.03,0.01,0.04,0.02C990.83,715.38,990.81,715.37,990.8,715.37z M990.25,715.1L990.25,715.1
C990.25,715.1,990.25,715.1,990.25,715.1z M797.79,697.98c-0.01,0-0.01,0-0.02,0C797.78,697.98,797.78,697.98,797.79,697.98z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1648.48,1083.31c-1.88,0-3.78-0.4-5.59-1.23c-4.06-1.88-100.15-46.62-159.83-106.3
c-35.92-35.92-63.65-48.45-83.9-57.6c-12.38-5.6-23.08-10.43-31.38-18.73c-10.04-10.04-24.32-19.26-38.12-28.18
c-9.76-6.3-18.98-12.26-26.79-18.51c-9.74-7.79-31.61-11.74-65-11.74c-8.48,0-19.35-3.13-31.93-6.75
c-12.9-3.71-27.53-7.92-37.75-7.92c-11.18,0-34.97,19-47.53,31.83c-5.16,5.28-13.62,5.37-18.9,0.21
c-5.28-5.16-5.37-13.62-0.21-18.9c6.51-6.66,40.34-39.87,66.64-39.87c14,0,30.55,4.76,45.15,8.96
c9.29,2.67,19.83,5.71,24.54,5.71c27.8,0,62.2,2,81.7,17.6c6.76,5.41,15.43,11.01,24.6,16.93
c14.98,9.67,30.46,19.68,42.52,31.73c4.85,4.85,12.67,8.38,23.49,13.27c20.88,9.43,52.43,23.69,91.79,63.06
c56.34,56.35,151.19,100.5,152.14,100.94c6.7,3.09,9.62,11.04,6.53,17.74C1658.37,1080.44,1653.53,1083.31,1648.48,1083.31z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1527.8,1010.35c-7.17,0-13.01-5.64-13.35-12.72c-1.58-8.92-23.18-57.43-42.5-97.74
c-4.21-7.98-28.23-30.08-72.62-61.67c-35.59-25.32-72.34-48.13-85.48-53.06c-18.66-7-36.24-37.23-63.39-85.99
c-9.57-17.18-19.46-34.94-28.36-48.68c-11.97-18.45-17.67-22.65-19.56-23.6c-15.43-7.72-40.92-38.13-81.24-87.11
c-17.27-20.98-35.13-42.68-50.21-59.41c-21.01-23.31-28.29-27.56-29.99-28.3c-10.39-1.24-22.51,4.96-34.24,10.96
c-11.31,5.78-22,11.25-33.06,11.25c-9.21,0-18.07-2.2-25.19-3.96c-3.47-0.86-8.48-2.1-10.94-2.23
c-5.46,4.41-20.15,13.24-61.15,37.37c-29.57,17.4-74.2,43.67-80.31,49.25c-4.24,4.72-19.43,32.91-30.54,53.51
c-28,51.94-37.28,67.81-44.86,72.86c-2.92,1.95-11.9,9.63-20.59,17.06c-34.53,29.54-52.23,43.6-63.36,46.89
c-3.94,2.38-17.44,15.23-44.97,49.73c-19.75,24.74-38.22,50.03-43.08,58.13c-11.23,18.71-43.41,61.67-44.78,63.49
c-4.43,5.9-12.8,7.1-18.71,2.67c-5.9-4.43-7.1-12.81-2.67-18.71c0.33-0.43,32.72-43.67,43.24-61.21
c6.43-10.72,27.67-39.36,47.35-63.84c41.83-52.06,51.17-54.67,56.13-55.91c8.07-2.71,39.88-29.91,53.48-41.54
c11.47-9.81,18.38-15.68,22.51-18.56c5.7-6.06,24.37-40.7,36.78-63.73c19.97-37.05,29.33-53.9,35.16-59.72
c6.25-6.25,30.37-20.86,85.66-53.4c23.65-13.92,53.03-31.2,57.65-34.9c9.62-9.3,22.79-6.03,34.43-3.15
c6.29,1.56,12.8,3.18,18.75,3.18c4.62,0,13.27-4.42,20.89-8.32c14.16-7.24,31.79-16.25,50.68-13.55
c17.14,2.45,41.33,30.02,96.57,97.13c25.92,31.49,61.42,74.63,72.56,80.19c16.81,8.41,33.63,37.03,59.32,83.18
c10.04,18.03,20.42,36.68,29.8,50.93c13.04,19.81,18.63,22.67,19.62,23.04c18.09,6.78,60.16,33.95,91.59,56.31
c31.9,22.7,71.84,53.51,80.99,71.41c0.05,0.1,0.1,0.2,0.15,0.3c0.11,0.23,11.16,23.31,22.07,47.49
c23.12,51.27,23.12,57.33,23.12,61.34C1541.16,1004.36,1535.18,1010.35,1527.8,1010.35z M1514.44,996.98c0,0.01,0,0.02,0,0.03
C1514.44,997,1514.44,996.99,1514.44,996.98z M629.47,719.33c-0.01,0-0.02,0-0.02,0.01
C629.45,719.33,629.46,719.33,629.47,719.33z M705.14,659.48C705.13,659.48,705.13,659.48,705.14,659.48
C705.13,659.48,705.13,659.48,705.14,659.48z M1040.86,451.96C1040.86,451.96,1040.86,451.96,1040.86,451.96
C1040.86,451.96,1040.86,451.96,1040.86,451.96z M920.45,447.66c-0.04,0.04-0.08,0.08-0.11,0.11
C920.37,447.74,920.41,447.7,920.45,447.66z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M288.48,1132.88h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71
c30.11-21.19,58.55-41.21,96.7-41.21v22.27c-31.09,0-55.56,17.22-83.88,37.15c-28.21,19.85-60.17,42.35-105.23,52.25
L288.48,1132.88z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M789.45,1129.18l-6.65-21.26c28.16-8.81,47.66-23.92,68.29-39.91c29.85-23.14,60.72-47.06,116.37-47.06
c43.56,0,75.29,20.9,108.89,43.03c15.66,10.32,31.86,20.99,49.87,29.86l-9.84,19.98c-19.26-9.49-36.05-20.54-52.28-31.24
c-32.06-21.12-59.75-39.36-96.64-39.36c-48.02,0-73.37,19.65-102.72,42.39C843.46,1102.11,821.44,1119.17,789.45,1129.18z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M617.56,1112.64c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L617.56,1112.64z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1267.05,1132.62l-4.78-21.76c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21
v22.27c-31.09,0-55.56,17.22-83.88,37.15C1344.07,1100.22,1312.1,1122.72,1267.05,1132.62z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1594.94,1112.64c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L1594.94,1112.64z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M944.66,1189.83c-70.56,0-115.01-29.29-154.23-55.14c-3.48-2.29-6.93-4.57-10.37-6.8
c-26.38-17.15-52.83-32.54-86.26-32.54c-24.78,0-45.84,5.34-66.29,16.82c-12.86,7.25-24.3,16.13-36.42,25.53
c-31.51,24.44-67.22,52.13-135.12,52.13c-70.03,0-125.35-29.1-171.79-56.95h-0.02l-2.73-1.62c-2.79-1.69-5.54-3.37-8.24-5.02
c-27.17-16.58-50.63-30.89-68.08-30.89v-22.27c23.71,0,48.41,15.07,79.68,34.16c2.02,1.23,4.07,2.48,6.15,3.75l2.09,1.23
c46.45,28.01,97.29,55.35,162.95,55.35c60.28,0,90-23.05,121.47-47.46c12.22-9.47,24.85-19.27,39.15-27.34
c23.93-13.43,48.46-19.68,77.21-19.68c17.95,0,35.34,3.61,53.16,11.04c16.22,6.76,31.33,16.06,45.24,25.1
c3.48,2.26,6.97,4.56,10.49,6.88c38.4,25.3,78.1,51.46,141.97,51.46c65.44,0,103.94-27.1,141.16-53.31
c10.15-7.15,19.74-13.9,29.7-19.94l11.56,19.04c-9.31,5.65-18.6,12.19-28.44,19.12
C1060.45,1159.35,1017.16,1189.83,944.66,1189.83z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1258.88,1131.26c-2.72-1.65-5.41-3.29-8.05-4.9c-27.28-16.64-50.84-31.02-68.34-31.02
c-18.05,0-34.62,5.38-55.41,18l-11.56-19.04c16.29-9.88,38.62-21.23,66.96-21.23c23.76,0,48.55,15.13,79.94,34.28
c2.62,1.6,5.29,3.23,8,4.87L1258.88,1131.26z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1433.37,1189.82c-71.41,0-127.49-30.21-174.45-58.53l11.5-19.07c46.43,28,97.25,55.33,162.95,55.33
c60.27,0,89.99-23.05,121.45-47.45c12.22-9.47,24.85-19.27,39.15-27.34c23.89-13.44,48.41-19.7,77.19-19.7
c0.93,0,1.99,0,3.13,0.06l-1.18,22.24c-0.55-0.03-1.23-0.03-1.95-0.03c-24.8,0-45.85,5.35-66.26,16.83
c-12.87,7.26-24.32,16.14-36.43,25.53C1536.97,1162.13,1501.27,1189.82,1433.37,1189.82z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M431.07,1256.81l-4.57-21.8c41.61-8.72,70.76-29.24,98.95-49.08c30.1-21.18,58.54-41.19,96.67-41.19v22.27
c-31.08,0-55.54,17.21-83.85,37.13C509.63,1224.3,477.17,1247.14,431.07,1256.81z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1408.53,1256.81l-4.57-21.8c41.58-8.72,70.71-29.23,98.88-49.07c30.09-21.19,58.52-41.2,96.65-41.2v22.27
c-31.08,0-55.53,17.21-83.83,37.14C1487.04,1224.3,1454.6,1247.14,1408.53,1256.81z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M761.38,1236.68c-26.97-11.89-50.57-26.25-71.39-38.93c-27.09-16.49-50.49-30.74-67.87-30.74v-22.27
c23.63,0,48.27,15,79.46,33.98c20.23,12.32,43.16,26.27,68.79,37.57L761.38,1236.68z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M931.2,1253.5l-6.45-21.32c28.89-8.73,48.69-24.09,69.65-40.35c29.85-23.15,60.71-47.09,116.39-47.09
c43.59,0,75.35,20.92,108.97,43.07c15.76,10.38,32.06,21.12,50.2,30.02l-9.81,20c-19.4-9.52-36.3-20.65-52.64-31.41
c-32.09-21.14-59.81-39.39-96.72-39.39c-48.05,0-73.4,19.66-102.74,42.41C986.42,1226.21,964.04,1243.57,931.2,1253.5z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1668.01,1198.09c-7.18-4.37-14.6-8.88-21.61-12.92c-16.28-9.43-33.22-18.16-46.91-18.16v-22.27
c18.95,0,39.1,10.16,58.06,21.15c7.21,4.16,14.75,8.74,22.03,13.17L1668.01,1198.09z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M431.03,1257.61h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71
c30.11-21.19,58.55-41.21,96.7-41.21v22.27c-31.1,0-55.56,17.22-83.88,37.15c-28.2,19.85-60.17,42.35-105.23,52.25
L431.03,1257.61z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M932.01,1253.91l-6.65-21.26c28.16-8.81,47.66-23.92,68.29-39.91c29.85-23.14,60.72-47.06,116.37-47.06
c43.56,0,75.29,20.9,108.89,43.03c15.67,10.32,31.86,20.99,49.88,29.86l-9.84,19.98c-19.26-9.49-36.05-20.54-52.28-31.24
c-32.06-21.12-59.75-39.36-96.63-39.36c-48.02,0-73.37,19.65-102.72,42.39C986.01,1226.84,963.99,1243.9,932.01,1253.91z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M760.11,1237.37c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L760.11,1237.37z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1409.6,1257.35l-4.78-21.76c40.68-8.94,69.41-29.15,97.19-48.71c30.11-21.19,58.55-41.21,96.7-41.21v22.27
c-31.09,0-55.56,17.22-83.88,37.15C1486.62,1224.95,1454.66,1247.45,1409.6,1257.35z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1737.49,1237.37c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L1737.49,1237.37z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M270.95,1252.21L258.12,1234c8.65-6.09,15.82-10.85,22.58-14.97l0.59-0.35c0.27-0.16,0.54-0.33,0.8-0.48
c23.55-14.11,43.77-20.4,65.57-20.4v22.27c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31c-0.25,0.15-0.51,0.31-0.76,0.45
C285.87,1241.97,279.12,1246.45,270.95,1252.21z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1087.21,1314.56c-70.56,0-115.01-29.29-154.23-55.14c-3.48-2.29-6.93-4.57-10.37-6.8
c-26.39-17.15-52.83-32.54-86.26-32.54c-24.78,0-45.84,5.34-66.29,16.82c-12.86,7.25-24.3,16.13-36.42,25.53
c-31.51,24.44-67.21,52.13-135.12,52.13c-70.03,0-125.35-29.09-171.79-56.95h-0.02l-2.73-1.62c-2.79-1.69-5.54-3.37-8.24-5.02
c-27.17-16.58-50.63-30.9-68.08-30.9v-22.27c23.71,0,48.41,15.07,79.69,34.16c2.03,1.24,4.08,2.49,6.15,3.75l2.08,1.22
c46.45,28.01,97.29,55.35,162.95,55.35c60.28,0,90-23.05,121.47-47.46c12.22-9.47,24.85-19.27,39.15-27.34
c23.93-13.43,48.46-19.68,77.21-19.68c17.95,0,35.34,3.61,53.16,11.04c16.22,6.76,31.33,16.06,45.24,25.1
c3.47,2.26,6.97,4.56,10.49,6.88c38.4,25.3,78.1,51.46,141.97,51.46c65.44,0,103.94-27.1,141.16-53.31
c10.15-7.15,19.74-13.9,29.7-19.94l11.56,19.04c-9.31,5.65-18.6,12.19-28.44,19.12
C1203,1284.08,1159.71,1314.56,1087.21,1314.56z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1401.24,1255.87l-0.79-0.45c-2.36-1.44-4.69-2.86-6.98-4.26c-27.32-16.68-50.91-31.09-68.44-31.09
c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31c-0.33,0.2-0.67,0.4-1,0.59l-10.82-19.47l0.2-0.12c0.27-0.16,0.54-0.33,0.8-0.48
c23.55-14.11,43.78-20.4,65.57-20.4c23.79,0,48.62,15.16,80.05,34.36c2.23,1.36,4.49,2.74,6.78,4.13l0.02,0.01
c0.39,0.22,1.05,0.58,1.81,1.12l-12.93,18.14C1400.92,1255.67,1401.08,1255.78,1401.24,1255.87z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1575.92,1314.56c-71.42,0-127.49-30.21-174.45-58.53l11.5-19.07c46.42,28,97.25,55.33,162.95,55.33
c8.37,0,15.9-0.42,23.01-1.3l0.16-0.02c9.7-1.05,18.66-2.82,27.41-5.44c29.58-8.68,49.67-24.25,70.93-40.74
c12.2-9.46,24.81-19.23,39.08-27.29l10.95,19.4c-12.86,7.26-24.29,16.12-36.38,25.5c-21.97,17.03-44.69,34.64-78.26,44.49
c-9.99,2.98-20.23,5.02-31.26,6.21C1593.57,1314.08,1585.18,1314.56,1575.92,1314.56z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M573.62,1381.54l-4.57-21.8c41.61-8.72,70.76-29.24,98.95-49.08c30.1-21.18,58.54-41.19,96.67-41.19v22.27
c-31.08,0-55.54,17.21-83.85,37.13C652.18,1349.03,619.72,1371.88,573.62,1381.54z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M425.35,1362.55c-19.43-9.53-36.34-20.66-52.69-31.43c-31.01-20.42-57.8-38.05-92.75-39.3
c-3.08-0.1-6.5-0.1-9.58,0.04l-0.99-22.25c2.15-0.1,4.39-0.14,6.64-0.14c1.68,0,3.27,0.05,4.67,0.09
c41.24,1.47,71.84,21.62,104.25,42.95c15.78,10.39,32.09,21.13,50.25,30.03L425.35,1362.55z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M903.93,1361.41c-26.97-11.89-50.57-26.25-71.39-38.92c-27.09-16.49-50.49-30.74-67.88-30.74v-22.27
c23.63,0,48.27,15,79.46,33.99c20.23,12.31,43.16,26.27,68.79,37.57L903.93,1361.41z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1550.02,1381.78h-1.19l-0.02-11.24l-2.32-10.78c4.33-0.93,8.41-1.94,12.47-3.09
c14.9-4.2,29.35-10.25,44.16-18.48c15.23-8.47,28.94-18.13,42.2-27.47c30.11-21.21,58.55-41.24,96.72-41.24v22.27
c-31.11,0-55.57,17.23-83.89,37.18c-13.73,9.67-27.94,19.68-44.2,28.73c-16.34,9.08-32.35,15.77-48.94,20.45
c-4.52,1.27-9.04,2.39-13.82,3.42L1550.02,1381.78z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1073.75,1378.23l-6.45-21.32c28.89-8.73,48.69-24.09,69.65-40.35c29.85-23.15,60.71-47.09,116.39-47.09
c43.59,0,75.35,20.92,108.97,43.06c15.76,10.38,32.06,21.12,50.2,30.02l-9.81,20c-19.4-9.52-36.3-20.65-52.64-31.41
c-32.09-21.14-59.8-39.39-96.72-39.39c-48.05,0-73.4,19.66-102.74,42.41C1128.97,1350.95,1106.59,1368.3,1073.75,1378.23z"/>
</g>
</g>
<g>
<g>
<path class="st1" d="M1742.04,1280.61"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M424.11,1363.28c-19.26-9.49-36.05-20.54-52.28-31.24c-32.06-21.12-59.76-39.36-96.64-39.36v-22.27
c43.56,0,75.29,20.9,108.89,43.03c15.66,10.32,31.86,20.99,49.87,29.86L424.11,1363.28z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M573.59,1382.34h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71
c30.11-21.19,58.55-41.21,96.7-41.21v22.27c-31.1,0-55.56,17.22-83.88,37.15c-28.2,19.85-60.17,42.35-105.23,52.25
L573.59,1382.34z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1074.56,1378.64l-6.65-21.26c28.16-8.81,47.66-23.92,68.29-39.91c29.85-23.14,60.72-47.06,116.37-47.06
c43.56,0,75.29,20.9,108.89,43.03c15.67,10.32,31.86,20.99,49.88,29.86l-9.84,19.98c-19.26-9.49-36.05-20.54-52.28-31.24
c-32.06-21.12-59.75-39.36-96.63-39.36c-48.02,0-73.37,19.65-102.72,42.39C1128.56,1351.57,1106.55,1368.64,1074.56,1378.64z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M902.66,1362.1c-26.76-11.83-50.2-26.1-70.89-38.69c-27.1-16.49-50.51-30.73-67.89-30.73v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L902.66,1362.1z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1552.21,1382.09l-4.88-21.73c3.99-0.9,7.56-1.81,10.92-2.8l0.14-0.04c14.77-4.13,29.32-10.26,44.48-18.73
c14.99-8.39,28.52-17.91,41.6-27.12c30.15-21.21,58.63-41.25,96.8-41.25v22.27c-31.12,0-55.62,17.24-83.99,37.2
c-13.55,9.53-27.55,19.39-43.55,28.34c-16.7,9.33-32.81,16.11-49.28,20.72C1560.66,1380.06,1556.65,1381.09,1552.21,1382.09z"/>
</g>
</g>
<g>
<g>
<path class="st1" d="M1741.28,1281.55"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M351.08,1416.44l-9.86-19.97c19.46-9.61,36.25-21.43,52.48-32.86c10.11-7.12,19.65-13.84,29.57-19.86
l0.58-0.34c0.27-0.16,0.53-0.32,0.8-0.48c23.55-14.11,43.78-20.4,65.57-20.4v22.27c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31
c-0.25,0.16-0.51,0.31-0.76,0.46c-9.23,5.62-18.43,12.1-28.18,18.96C389.59,1393.75,372.09,1406.07,351.08,1416.44z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1229.76,1439.29c-70.56,0-115.01-29.29-154.23-55.14c-3.48-2.29-6.93-4.57-10.37-6.8
c-26.38-17.15-52.83-32.54-86.26-32.54c-24.78,0-45.84,5.34-66.29,16.82c-12.86,7.25-24.3,16.13-36.42,25.53
c-31.51,24.44-67.22,52.13-135.12,52.13c-70.03,0-125.35-29.09-171.79-56.95h-0.02l-2.73-1.62c-2.79-1.69-5.54-3.37-8.24-5.02
c-27.17-16.58-50.63-30.9-68.09-30.9v-22.27c23.71,0,48.41,15.07,79.69,34.16c2.02,1.23,4.07,2.48,6.15,3.75l2.08,1.23
c46.44,28.01,97.28,55.35,162.95,55.35c60.28,0,90-23.05,121.47-47.46c12.22-9.47,24.85-19.27,39.15-27.34
c23.93-13.43,48.46-19.68,77.21-19.68c17.95,0,35.34,3.61,53.16,11.04c16.22,6.76,31.33,16.06,45.24,25.1
c3.47,2.26,6.97,4.56,10.49,6.88c38.4,25.3,78.1,51.46,141.97,51.46c65.44,0,103.94-27.1,141.17-53.31
c10.15-7.15,19.74-13.9,29.7-19.94l11.56,19.04c-9.31,5.65-18.6,12.19-28.44,19.12
C1345.55,1408.81,1302.26,1439.29,1229.76,1439.29z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1543.98,1380.73c-2.72-1.65-5.4-3.28-8.03-4.89c-27.29-16.65-50.85-31.02-68.35-31.02
c-18.05,0-34.62,5.38-55.41,18l-11.56-19.04c16.29-9.88,38.61-21.23,66.96-21.23c23.76,0,48.56,15.13,79.96,34.28
c2.62,1.6,5.28,3.22,7.99,4.86L1543.98,1380.73z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1556.68,1386.46h-3.07l-4.65-2.74c-1.67-0.99-3.32-1.97-4.98-2.98l11.57-19.03
c1.59,0.96,3.17,1.91,4.78,2.86l2,1.19l-5.68,9.53L1556.68,1386.46z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M716.17,1506.27l-4.57-21.8c41.61-8.72,70.76-29.24,98.95-49.08c30.1-21.18,58.54-41.19,96.67-41.19v22.27
c-31.08,0-55.54,17.21-83.85,37.13C794.73,1473.77,762.27,1496.61,716.17,1506.27z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M567.9,1487.29c-19.44-9.53-36.35-20.67-52.71-31.45c-32.06-21.12-59.76-39.36-96.65-39.36
c-21.74,0-40.15,3.98-57.94,12.53l-9.65-20.08c20.63-9.91,42.74-14.73,67.59-14.73c43.57,0,75.3,20.9,108.9,43.03
c15.78,10.39,32.1,21.14,50.27,30.05L567.9,1487.29z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1046.48,1486.14c-26.97-11.89-50.57-26.25-71.39-38.93c-27.09-16.49-50.49-30.74-67.87-30.74v-22.27
c23.63,0,48.27,15,79.46,33.98c20.23,12.32,43.16,26.27,68.79,37.57L1046.48,1486.14z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1216.31,1502.96l-6.45-21.32c28.89-8.73,48.69-24.09,69.65-40.35c29.85-23.15,60.71-47.09,116.39-47.09
c43.46,0,75.15,20.81,108.7,42.83l2.41,1.58l-12.22,18.62l-2.41-1.58c-32.02-21.02-59.68-39.18-96.48-39.18
c-48.05,0-73.4,19.66-102.74,42.41C1271.52,1475.68,1249.14,1493.03,1216.31,1502.96z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M566.66,1488.01c-19.26-9.49-36.05-20.54-52.28-31.24c-32.06-21.12-59.76-39.36-96.64-39.36v-22.27
c43.56,0,75.29,20.9,108.89,43.03c15.66,10.32,31.86,20.99,49.87,29.86L566.66,1488.01z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M716.14,1507.07h-1.21l-0.03-11.29l-2.36-10.73c40.68-8.94,69.41-29.15,97.19-48.71
c30.11-21.19,58.55-41.21,96.7-41.21v22.27c-31.1,0-55.56,17.22-83.88,37.15c-28.2,19.85-60.17,42.35-105.23,52.25
L716.14,1507.07z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1217.12,1503.37l-6.65-21.26c28.14-8.81,47.63-23.91,68.27-39.91c29.86-23.14,60.73-47.07,116.37-47.07
c43.61,0,75.38,20.94,109.01,43.1l2.07,1.36l-12.25,18.6l-2.07-1.37c-32.1-21.16-59.83-39.43-96.75-39.43
c-48.02,0-73.37,19.65-102.72,42.4C1271.1,1476.31,1249.09,1493.37,1217.12,1503.37z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1045.21,1486.84c-26.76-11.83-50.2-26.1-70.88-38.68c-27.1-16.49-50.51-30.74-67.9-30.74v-22.27
c23.63,0,48.27,15,79.47,33.98c20.1,12.23,42.89,26.1,68.32,37.34L1045.21,1486.84z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M477.71,1548.29l-8.32-20.66c25.78-10.38,46.66-25.07,66.84-39.28c10.11-7.12,19.67-13.84,29.58-19.87
l0.57-0.34c0.27-0.16,0.54-0.33,0.8-0.48c23.55-14.11,43.78-20.4,65.57-20.4v22.27c-17.56,0-34.29,5.34-54.23,17.3l-0.52,0.31
c-0.26,0.16-0.51,0.31-0.77,0.46c-9.23,5.62-18.44,12.1-28.19,18.96C528.82,1520.8,505.89,1536.95,477.71,1548.29z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1372.3,1564.02c-70.57,0-115.04-29.32-154.27-55.18c-3.41-2.25-6.8-4.48-10.17-6.68
c-0.13-0.08-0.26-0.16-0.39-0.24l-0.45-0.28c-26.07-16.92-52.24-32.11-85.57-32.11c-24.22,0-44.82,5.09-64.81,16.01
c-0.52,0.32-0.98,0.57-1.31,0.75l-0.2,0.11c-12.81,7.22-24.25,16.1-36.37,25.49c-31.52,24.43-67.24,52.13-135.15,52.13
c-70.55,0-126.14-29.49-172.76-57.51h-0.05l-2.71-1.62c-2.46-1.49-4.88-2.97-7.27-4.43c-27.15-16.59-50.61-30.92-68.07-30.92
v-22.27c23.73,0,48.42,15.09,79.68,34.19c1.82,1.11,3.66,2.23,5.51,3.37h0l2.7,1.6c46.43,28,97.25,55.33,162.95,55.33
c60.28,0,90.02-23.05,121.5-47.46c12.22-9.47,24.85-19.26,39.14-27.33l1.36-0.77c23.5-12.91,47.6-18.93,75.84-18.93
c39.33,0,69.77,17.58,97.57,35.62c0.13,0.08,0.26,0.16,0.39,0.25l0.45,0.28c3.46,2.25,6.92,4.53,10.42,6.84
c38.41,25.32,78.12,51.5,142.01,51.5c5.1,0,10.31-0.18,15.92-0.55l0.74-0.02v11.09h11.18l-10.49,10.49l0.04,0.67
C1383.59,1563.82,1377.89,1564.02,1372.3,1564.02z"/>
</g>
</g>
</g>
<g>
<g>
<g>
<path class="st0" d="M811.93,1635.7c-70.51,0-114.95-29.27-154.15-55.1c-32.08-21.13-59.79-39.38-96.69-39.38
c-25.64,0-46.49,5.43-67.63,17.62l-11.13-19.29c24.37-14.05,49.4-20.6,78.75-20.6c43.58,0,75.33,20.92,108.95,43.06
c38.38,25.28,78.07,51.43,141.9,51.43c65.45,0,103.94-27.09,141.16-53.28c30.1-21.19,58.54-41.2,96.68-41.2v22.27
c-31.09,0-55.55,17.21-83.86,37.14C927.72,1605.23,884.44,1635.7,811.93,1635.7z"/>
</g>
</g>
<g>
<g>
<path class="st0" d="M1300.66,1635.7c-9.1,0-18.24-0.5-27.16-1.49c-64.98-6.99-115.35-37.63-155.82-62.25
c-27.11-16.49-50.53-30.74-67.91-30.74v-22.27c23.63,0,48.28,15,79.49,33.98c38.58,23.47,86.6,52.68,146.67,59.14
c8.26,0.92,16.33,1.36,24.74,1.36c3.1,0,6.39-0.07,10.03-0.21c18.5-0.86,34.93-4.03,50.15-9.69l7.76,20.88
c-17.41,6.47-36.04,10.09-56.95,11.06C1307.63,1635.62,1304.06,1635.7,1300.66,1635.7z"/>
</g>
</g>
</g>
</g>
<g id="rules">
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

View file

Before

Width:  |  Height:  |  Size: 6 KiB

After

Width:  |  Height:  |  Size: 6 KiB

View file

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

View file

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View file

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

131
content/index.fr.po Normal file
View file

@ -0,0 +1,131 @@
# Traduction de ikiwiki
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
# This file is distributed under the same license as the PACKAGE Ikiwiki.
#
msgid ""
msgstr ""
"Project-Id-Version: ilot.io\n"
"POT-Creation-Date: 2024-09-08 18:45-0400\n"
"PO-Revision-Date: 2024-09-08 12:33-0400\n"
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
"Language-Team: dev@ayakael.net\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.4.3\n"
#. type: Plain text
#, fuzzy, no-wrap
#| msgid "[[!meta title=\"Home\"]]\n"
msgid "[[!meta title=\"Home\"]]\n"
msgstr "[[!meta title=\"Accueil\"]]\n"
#. type: Plain text
#, fuzzy, no-wrap
#| msgid "[[ilot|https://ilot.io]] is a cooperative corner of the internet. We operate a Nextcloud instance, a free and open-source collaboration platform analoguous to Google Drive. We aim to eventually incorporate as a cooperative to create a digital infrastructure that is by and for its users as an alternative to the siloed and privatized internet of today. Members fund our operations and decide how to set our community policies, steward our data, and manage our shared technologies. Members also provide the labor to run ilot at all levels."
msgid ""
"<div class=\"row home text-centered\">\n"
" <div class=\"col-sm-6 home-logo\">\n"
" \t<img src=\"images/ilot.black.png\" alt=\"ilot logo\" width=\"400\" height=\"400\"> \n"
" \t <div class=\"login\">\n"
" \t\t<a href=\"https://ilot.io/apps/files\"><h4>Your files</h4> </a>\n"
"\t\t</div> \n"
" </div>\n"
" <div class=\"col-sm-6 home-title\">\n"
" \t<h2><i><b>Welcome to</b></i></h2> \n"
" <h1>ILOT</h1> \n"
" <h5><i>a platform cooperative</i></h5> \n"
" <div class=\"join\">\n"
" \t\t<a href=\"https://ilot.io/apps/files\"><h4>Join</h4> </a>\n"
" </div> \n"
" </div>\n"
"</div>\n"
"<div class=\"row coop\">\n"
" <div class=\"col-sm-6 coop-title\">\n"
" <h5><i>the</i></h5> \n"
" <h1>COOP</h1> \n"
" </div>\n"
" <div class=\"col-sm-6 coop-content\">\n"
"Ilot is a cooperative corner of the internet. We operate a Nextcloud instance, a free and open-source collaboration platform analoguous to Google Drive. We aim to eventually incorporate as a cooperative to create a digital infrastructure that is by and for its users as an alternative to the siloed and privatized internet of today. Members fund our operations and decide how to set our community policies, steward our data, and manage our shared technologies. Members also provide the labor to run ilot at all levels.\n"
msgstr "[[ilot|https://ilot.io]] est une isle coopérative de l'internet. Nous administrons une instance de Nextcloud, une plateformes libre de travail et de stockage de donnée analogue à Google Drive. Notre objectif est de nous constituer en coopérative afin de créer une infrastructure numérique par et pour ses utilisateur-ice-s, en alternative à l'internet cloisonné et privatisé d'aujourd'hui. Les membres financent nos opérations et décident de la manière de définir nos politiques communautaires, de gérer nos données et nos technologies partagées. Les membres fournissent également la main-d'œuvre nécessaire au fonctionnement de l'ilot à tous les niveaux."
#. type: Plain text
msgid ""
"The project is currently in beta, as there is still a lot of work left to "
"do. While the technical infrastructure is setup and stable, the governance "
"and community guidelines are still a work in progress. If you are interested "
"in joining ilot, visit our [[registration form|join]]."
msgstr ""
"Le projet est actuellement en version bêta, car il reste encore beaucoup de "
"travail à faire. Alors que l'infrastructure technique est mise en place et "
"stable, la gouvernance et les lignes directrices de la communauté sont "
"encore en cours d'élaboration. Si vous souhaitez rejoindre ilot, visitez "
"notre [[formulaire d'inscription|join]]."
#. type: Plain text
#, no-wrap
msgid ""
"ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals.\n"
" </div>\n"
"</div>\n"
"<div class=\"row services\">\n"
" <div class=\"col-sm-6 services-title\">\n"
" <h5><i>the</i></h5> \n"
" <h1>SERVICES</h1> \n"
" </div>\n"
" <div class=\"col-sm-6 services-content\">\n"
"The Cloud is an instance of [[Nextcloud|https://nextcloud.com/]], a productivity collaboration platform analogous to Google Drive. An instance is an autonomous version of a web service. In Nextclouds case, even though there exists an official service maintained by the developpers, we are totally indendant from them. The only thing that ties us to the official instance is that we use the same underlying technology, hosted on our own infrastructure.\n"
" </div>\n"
"</div>\n"
msgstr ""
#, fuzzy, no-wrap
#~| msgid "ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals."
#~ msgid ""
#~ "ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals.\n"
#~ " </div>\n"
#~ "</div>\n"
#~ msgstr "ilot a vu le jour en 2021 lorsque l'AESA-CIRI, l'association des étudiants en sociologie, anthropologie et études de l'immigration de l'UQAM, a voulu créer sa propre infrastructure numérique. Depuis, nous travaillons dans le but de rendre le projet utile à d'autres organisations et individus."
#, no-wrap
#~ msgid ""
#~ "<header class=\"text-center\">\n"
#~ " <img src=\"images/ilot_black_256x256.png\" />\n"
#~ " <h1>WELCOME</h1>\n"
#~ " <hr>\n"
#~ "</header>\n"
#~ msgstr ""
#~ "<header class=\"text-center\">\n"
#~ " <img src=\"images/ilot_black_256x256.png\" />\n"
#~ " <h1>BIENVENUE</h1>\n"
#~ " <hr>\n"
#~ "</header>\n"
#, no-wrap
#~ msgid "Learn more"
#~ msgstr "En savoir plus"
#~ msgid "To learn more please visit some of the pages:"
#~ msgstr "Pour en savoir plus, veuillez consulter ces pages :"
#, no-wrap
#~ msgid "[[Platforms]] - The online spaces we use and manage \n"
#~ msgstr "[[Plateformes|platforms]] - Les espaces en ligne que nous utilisons et gérons \n"
#, no-wrap
#~ msgid "[[Archives|https://notif.ilot.io/archive]] - Archives of our communications with our members \n"
#~ msgstr "[[Archives|https://notif.ilot.io/archive]] - Archives de nos communications avec nos membres \n"
#, no-wrap
#~ msgid "[[Support|https://support.ilot.io/en/hc/706927618]] - Guides for how to do things on ilot and to get help \n"
#~ msgstr "[[Support|https://support.ilot.io/fr/hc/706927618]] - Guides sur la façon de faire les choses sur l'ilot et d'obtenir de l'aide \n"
#~ msgid "Welcome to your new wiki."
#~ msgstr "Bienvenue sur votre nouveau wiki."
#~ msgid "All wikis are supposed to have a [[SandBox]], so this one does too."
#~ msgstr "Comme tous les wikis, ce wiki possède une page [[SandBox]]."
#~ msgid "This wiki is powered by [[ikiwiki]]."
#~ msgstr "Ce wiki est propulsé par [[ikiwiki]]."

40
content/index.mdwn Normal file
View file

@ -0,0 +1,40 @@
[[!meta title="Home"]]
<div class="row home text-centered">
<div class="col-sm-6 home-logo">
<img src="images/ilot.black.png" alt="ilot logo" width="400" height="400">
<div class="login">
<a href="https://ilot.io/apps/files"><h4>Your files</h4> </a>
</div>
</div>
<div class="col-sm-6 home-title">
<h2><i><b>Welcome to</b></i></h2>
<h1>ILOT</h1>
<h5><i>a platform cooperative</i></h5>
<div class="join">
<a href="https://ilot.io/apps/files"><h4>Join</h4> </a>
</div>
</div>
</div>
<div class="row coop">
<div class="col-sm-6 coop-title">
<h5><i>the</i></h5>
<h1>COOP</h1>
</div>
<div class="col-sm-6 coop-content">
Ilot is a cooperative corner of the internet. We operate a Nextcloud instance, a free and open-source collaboration platform analoguous to Google Drive. We aim to eventually incorporate as a cooperative to create a digital infrastructure that is by and for its users as an alternative to the siloed and privatized internet of today. Members fund our operations and decide how to set our community policies, steward our data, and manage our shared technologies. Members also provide the labor to run ilot at all levels.
The project is currently in beta, as there is still a lot of work left to do. While the technical infrastructure is setup and stable, the governance and community guidelines are still a work in progress. If you are interested in joining ilot, visit our [[registration form|join]].
ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals.
</div>
</div>
<div class="row services">
<div class="col-sm-6 services-title">
<h5><i>the</i></h5>
<h1>SERVICES</h1>
</div>
<div class="col-sm-6 services-content">
The Cloud is an instance of [[Nextcloud|https://nextcloud.com/]], a productivity collaboration platform analogous to Google Drive. An instance is an autonomous version of a web service. In Nextclouds case, even though there exists an official service maintained by the developpers, we are totally indendant from them. The only thing that ties us to the official instance is that we use the same underlying technology, hosted on our own infrastructure.
</div>
</div>

92
content/index.pot Normal file
View file

@ -0,0 +1,92 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2024-09-08 18:47-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. type: Plain text
#, markdown-text, no-wrap
msgid "[[!meta title=\"Home\"]]\n"
msgstr ""
#. type: Plain text
#, markdown-text, no-wrap
msgid ""
"<div class=\"row home text-centered\">\n"
" <div class=\"col-sm-6 home-logo\">\n"
" \t<img src=\"images/ilot.black.png\" alt=\"ilot logo\" width=\"400\" "
"height=\"400\"> \n"
" \t <div class=\"login\">\n"
" \t\t<a href=\"https://ilot.io/apps/files\"><h4>Your files</h4> </a>\n"
"\t\t</div> \n"
" </div>\n"
" <div class=\"col-sm-6 home-title\">\n"
" \t<h2><i><b>Welcome to</b></i></h2> \n"
" <h1>ILOT</h1> \n"
" <h5><i>a platform cooperative</i></h5> \n"
" <div class=\"join\">\n"
" \t\t<a href=\"https://ilot.io/apps/files\"><h4>Join</h4> </a>\n"
" </div> \n"
" </div>\n"
"</div>\n"
"<div class=\"row coop\">\n"
" <div class=\"col-sm-6 coop-title\">\n"
" <h5><i>the</i></h5> \n"
" <h1>COOP</h1> \n"
" </div>\n"
" <div class=\"col-sm-6 coop-content\">\n"
"Ilot is a cooperative corner of the internet. We operate a Nextcloud "
"instance, a free and open-source collaboration platform analoguous to Google "
"Drive. We aim to eventually incorporate as a cooperative to create a digital "
"infrastructure that is by and for its users as an alternative to the siloed "
"and privatized internet of today. Members fund our operations and decide how "
"to set our community policies, steward our data, and manage our shared "
"technologies. Members also provide the labor to run ilot at all levels.\n"
msgstr ""
#. type: Plain text
#, markdown-text
msgid ""
"The project is currently in beta, as there is still a lot of work left to "
"do. While the technical infrastructure is setup and stable, the governance "
"and community guidelines are still a work in progress. If you are interested "
"in joining ilot, visit our [[registration form|join]]."
msgstr ""
#. type: Plain text
#, markdown-text, no-wrap
msgid ""
"ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and "
"immigration studies sudent association of UQAM, wanted to create its own "
"digital infrastructure. Since then, we have worked toward the goal of making "
"the project useful to other organisations and individuals.\n"
" </div>\n"
"</div>\n"
"<div class=\"row services\">\n"
" <div class=\"col-sm-6 services-title\">\n"
" <h5><i>the</i></h5> \n"
" <h1>SERVICES</h1> \n"
" </div>\n"
" <div class=\"col-sm-6 services-content\">\n"
"The Cloud is an instance of [[Nextcloud|https://nextcloud.com/]], a "
"productivity collaboration platform analogous to Google Drive. An instance "
"is an autonomous version of a web service. In Nextclouds case, even though "
"there exists an official service maintained by the developpers, we are "
"totally indendant from them. The only thing that ties us to the official "
"instance is that we use the same underlying technology, hosted on our own "
"infrastructure.\n"
" </div>\n"
"</div>\n"
msgstr ""

BIN
content/join.fr.mo Normal file

Binary file not shown.

View file

@ -7,20 +7,19 @@
msgid ""
msgstr ""
"Project-Id-Version: ilot.io\n"
"POT-Creation-Date: 2025-04-03 18:26-0400\n"
"PO-Revision-Date: 2025-04-03 18:47-0400\n"
"POT-Creation-Date: 2024-08-09 21:13-0400\n"
"PO-Revision-Date: 2024-08-09 21:14-0400\n"
"Last-Translator: \n"
"Language-Team: dev@ayakael.net\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.5\n"
"X-Generator: Poedit 3.4.3\n"
#. type: Content of: outside any tag (error?)
msgid "[[!meta title=\"Join\"]] [[!inline pages=\"join/join-en\" raw=\"yes\"]]"
msgstr ""
"[[!meta title=\"Se joindre\"]] [[!inline pages=\"join/join-fr\" raw=\"yes\"]]"
msgid "[[!meta title=\"Join\"]]"
msgstr "[[!meta title=\"Se joindre\"]]"
#. type: Content of: <header><h1>
msgid "Registration Form"
@ -55,15 +54,19 @@ msgstr ""
msgid "Basic Info:"
msgstr "Informations de base:"
#. type: Content of: <hr><div><div><form><div><input>
#. type: Content of: <hr><div><div><form><div><input><input>
msgid ""
"<label for=\"name\">Name <i>(optional)</i></label> <input id=\"name\" "
"name=\"name\" type=\"text\" maxlength=\"40\">"
"name=\"name\" type=\"text\" maxlength=\"40\"> <label for=\"emptyfield\">This "
"should be left unchanged</label> <input id=\"emptyfield\" "
"name=\"emptyfield\" type=\"text\" maxlength=\"40\">"
msgstr ""
"<label for=\"name\">Nom <i>(optionnel)</i></label> <input id=\"name\" "
"name=\"name\" type=\"text\" maxlength=\"40\">"
"name=\"name\" type=\"text\" maxlength=\"40\"> <label "
"for=\"emptyfield\">Veuillez ne pas écrire dans cette espace</label> <input "
"id=\"emptyfield\" name=\"emptyfield\" type=\"text\" maxlength=\"40\">"
#. type: Content of: <hr><div><div><form><div><input><p>
#. type: Content of: <hr><div><div><form><div><input><input><p>
msgid ""
"<label for=\"email\">Contact email address</label> <input id=\"email\" "
"name=\"email\" type=\"email\" required></p>"
@ -105,34 +108,10 @@ msgid ""
msgstr ""
#. type: Content of: <hr><div><div><form><h2>
msgid "Open Collective:"
msgstr ""
#. type: Content of: <hr><div><div><form><p>
msgid ""
"Contributing through [[Open Collective|https://opencollective.com/ilot]] is "
"a strongly encouraged. We use this platform to manage our finances, thus "
"applicants must have an existing Open Collective profile, which can be set "
"up [[here|https://opencollective.com/create-account]]."
msgstr ""
"Faire une contribution à travers [[Open Collective|https://opencollective."
"com/ilot]] est fortement encouragé. Nous utilisons cette plateforme pour "
"gérer nos finances. Or, vous devez avoir un profil Open Collective, qui peut "
"être créé [[ici|https://opencollective.com/create-account]]."
#. type: Content of: <hr><div><div><form><p>
msgid ""
"<label for=\"oc-user\">Link to your OpenCollective profile</label> <input "
"id=\"oc-user\" name=\"oc-user\" type=\"text\" required maxlength=\"50\"></p>"
msgstr ""
"<label for=\"oc-user\">Lien de votre profil Open Collective</label> <input "
"id=\"oc-user\" name=\"oc-user\" type=\"text\" required maxlength=\"50\"></p>"
#. type: Content of: <hr><div><div><form><p><h2>
msgid "Code of Conduct:"
msgstr "Code de conduite:"
#. type: Content of: <hr><div><div><form><p><p>
#. type: Content of: <hr><div><div><form><p>
msgid ""
"New members must also agree to our [[Code of Conduct|meta/code-of-conduct]] "
"and must be over the age of consent."
@ -140,7 +119,7 @@ msgstr ""
"Les nouveaux membres doivent également accepter notre [[Code de conduite|"
"meta/code-de-conduite]] et doivent avoir atteint l'âge du consentement."
#. type: Content of: <hr><div><div><form><p><p>
#. type: Content of: <hr><div><div><form><p>
msgid ""
"<input type=\"checkbox\" id=\"agree-to-terms\" name=\"agree-to-terms\" "
"value=\"agree-to-terms\" required> I am over 18, and have read, understood "
@ -155,7 +134,7 @@ msgstr ""
"résumé du code ; n'oubliez pas de consulter le code complet en cliquant sur "
"le lien.</p>"
#. type: Content of: <hr><div><div><form><p><p><p>
#. type: Content of: <hr><div><div><form><p><p>
msgid ""
"The Code of Conduct is a living document that outlines acceptable behaviour "
"when members use ilot's Nextcloud and all other spaces governed by the co-"
@ -172,7 +151,7 @@ msgstr ""
"l'honnêteté, l'ouverture, la responsabilité sociale et l'attention portée "
"aux autres. Nous suivons également les autres principes coopératifs de l'ACI."
#. type: Content of: <hr><div><div><form><p><p><p>
#. type: Content of: <hr><div><div><form><p><p>
msgid ""
"We welcome anyone able to use our services and willing to accept the "
"responsibilities of membership, regardless of qualities such as gender "
@ -189,7 +168,7 @@ msgstr ""
"économique, la structure familiale, la spiritualité, la religion (ou "
"l'absence de religion), l'éducation ou d'autres traits personnels."
#. type: Content of: <hr><div><div><form><p><p><p>
#. type: Content of: <hr><div><div><form><p><p>
msgid ""
"We particularly celebrate diversity and do not tolerate bigotry, prejudice "
"or supremacy of any kind. Diverse opinions on politics, religion, and other "
@ -205,11 +184,11 @@ msgstr ""
"modérateurs prendront des mesures à l'égard des messages qui contreviennent "
"à ce code de conduite."
#. type: Content of: <hr><div><div><form><p><p><h2>
#. type: Content of: <hr><div><div><form><p><h2>
msgid "Are you a robot?"
msgstr "Êtes-vous un robot ?"
#. type: Content of: <hr><div><div><form><p><p><p>
#. type: Content of: <hr><div><div><form><p><p>
msgid ""
"<label for=\"math-spam-trap\">What is two plus seven?</label> <input "
"id=\"math-spam-trap\" name=\"math-spam-trap\" type=\"text\" required "
@ -221,81 +200,6 @@ msgstr ""
"maxlength=\"50\"></p> <input type=\"button\" value=\"Soumettre\" id = "
"\"submit\" onClick = \"createIssue()\"> </form>"
#~ msgid "[[!meta title=\"Join\"]]"
#~ msgstr "[[!meta title=\"Se joindre\"]]"
#~ msgid ""
#~ "async function checkDuplicate() { var url='https://lab.ilot.io/api/v4/"
#~ "projects/99/issues'; var email = document.getElementById(\"email\")."
#~ "value; const response = await fetch(url, { headers: { 'PRIVATE-TOKEN': "
#~ "'glpat-RaoZSW_3XMhkGr19k6Wv', 'Content-Type': 'application/json', }, }) "
#~ "const result = await response.json(); let index = result .findIndex(item "
#~ "=> item.title === email); if (index !== -1) { return true; } else "
#~ "{ return false; } } async function createIssue() { var baseurl = 'https://"
#~ "lab.ilot.io/api/v4/projects/99/issues?&labels=Request'; var mathspamtrap "
#~ "= document.getElementById(\"math-spam-trap\").value; var agreetoterms = "
#~ "document.getElementById(\"agree-to-terms\").checked; var email = document."
#~ "getElementById(\"email\").value; if(!agreetoterms) { alert(\"Registration "
#~ "requires agreement of Code of Conduct\"); return false; } if(!email) "
#~ "{ alert(\"Email cannot be empty\"); return false; } if(mathspamtrap != "
#~ "\"9\") { alert(\"Wrong math answer\"); return false; } if(await "
#~ "checkDuplicate(email) === true) { alert(\"This email address has already "
#~ "requested an account\"); return false; } var name = document."
#~ "getElementById(\"name\").value; var name = name.replace (/^/,'Name: '); "
#~ "var aboutme = document.getElementById(\"about-me\").value; var aboutme = "
#~ "aboutme.replace (/^/,'About me: '); var aboutme = aboutme.replace(/\\r?"
#~ "\\n/g, \"%0A%0A\"); var howfound = document.getElementById(\"how-found\")."
#~ "value; var howfound = howfound.replace (/^/,'How I found ilot: '); var "
#~ "howfound = howfound.replace(/\\r?\\n/g, \"%0A%0A\"); var ocuser = "
#~ "document.getElementById(\"oc-user\").value; var ocuser = ocuser.replace (/"
#~ "^/,'OpenCollective Profile: '); var description = name + \"%0A%0A\" + "
#~ "aboutme + \"%0A%0A\" + howfound + \"%0A%0A\" + ocuser; var url = baseurl."
#~ "concat(\"&title=\", email, \"&description=\", description); console."
#~ "log('Description:', description); fetch(url, { method: 'POST', headers: "
#~ "{ 'PRIVATE-TOKEN': 'glpat-RaoZSW_3XMhkGr19k6Wv', 'Content-Type': "
#~ "'application/json', }, }) .then(response => response.json()) ."
#~ "then(result => { console.log('Success:', result); alert(\"Request "
#~ "submitted. A working group member will process your registration shortly. "
#~ "If you receive no contact within seven days of registration, please send "
#~ "an email to support@ilot.io\"); }) .catch(error => { console."
#~ "error('Error:', error) }); }"
#~ msgstr ""
#~ "async function checkDuplicate() { var url='https://lab.ilot.io/api/v4/"
#~ "projects/99/issues'; var email = document.getElementById(\"email\")."
#~ "value; const response = await fetch(url, { headers: { 'PRIVATE-TOKEN': "
#~ "'glpat-RaoZSW_3XMhkGr19k6Wv', 'Content-Type': 'application/json', }, }) "
#~ "const result = await response.json(); let index = result .findIndex(item "
#~ "=> item.title === email); if (index !== -1) { return true; } else "
#~ "{ return false; } } async function createIssue() { var baseurl = 'https://"
#~ "lab.ilot.io/api/v4/projects/99/issues?&labels=Request'; var mathspamtrap "
#~ "= document.getElementById(\"math-spam-trap\").value; var agreetoterms = "
#~ "document.getElementById(\"agree-to-terms\").checked; var email = document."
#~ "getElementById(\"email\").value; if(!agreetoterms) { alert(\"Registration "
#~ "requires agreement of Code of Conduct\"); return false; } if(!email) "
#~ "{ alert(\"Courriel ne peut pas être vide\"); return false; } "
#~ "if(mathspamtrap != \"9\") { alert(\"Mauvaise réponse mathématique\"); "
#~ "return false; } if(await checkDuplicate(email) === true) { alert(\"Ce "
#~ "courriel a déjà fait une demande de compte\"); return false; } var name = "
#~ "document.getElementById(\"name\").value; var name = name.replace (/"
#~ "^/,'Name: '); var aboutme = document.getElementById(\"about-me\").value; "
#~ "var aboutme = aboutme.replace (/^/,'About me: '); var aboutme = aboutme."
#~ "replace(/\\r?\\n/g, \"%0A%0A\"); var howfound = document."
#~ "getElementById(\"how-found\").value; var howfound = howfound.replace (/"
#~ "^/,'How I found ilot: '); var howfound = howfound.replace(/\\r?\\n/g, "
#~ "\"%0A%0A\"); var ocuser = document.getElementById(\"oc-user\").value; var "
#~ "ocuser = ocuser.replace (/^/,'OpenCollective Profile: '); var description "
#~ "= name + \"%0A%0A\" + aboutme + \"%0A%0A\" + howfound + \"%0A%0A\" + "
#~ "ocuser; var url = baseurl.concat(\"&title=\", email, \"&description=\", "
#~ "description); console.log('Description:', description); fetch(url, "
#~ "{ method: 'POST', headers: { 'PRIVATE-TOKEN': 'glpat-"
#~ "RaoZSW_3XMhkGr19k6Wv', 'Content-Type': 'application/json', }, }) ."
#~ "then(response => response.json()) .then(result => { console."
#~ "log('Success:', result); alert(\"Demande soumise. Un membre du groupe de "
#~ "travail traitera votre inscription dans les plus brefs délais. Si vous "
#~ "n'êtes pas contacté dans les sept jours suivant votre inscription, "
#~ "veuillez envoyer un courriel à support@ilot.io.\"); }) .catch(error => "
#~ "{ console.error('Error:', error) }); }"
#~ msgid "alert(\"Email cannot be empty\")"
#~ msgstr "alert(\"Le courriel ne peut pas être vide\")"

View file

@ -1,6 +1,6 @@
[[!meta title="Join"]]
[[!inline pages="join/join-en" raw="yes"]]
<script src=/join.js></script>
<header class="text-center">
<h1 class="post-title">Registration Form</h1>
@ -20,6 +20,8 @@
<div class="formgroup">
<label for="name">Name <i>(optional)</i></label>
<input id="name" name="name" type="text" maxlength="40">
<label for="emptyfield">This should be left unchanged</label>
<input id="emptyfield" name="emptyfield" type="text" maxlength="40">
<p><label for="email">Contact email address</label>
<input id="email" name="email" type="email" required></p>
@ -31,10 +33,13 @@
<p>How did you find out about ilot? We want to better understand how people are finding us.</p>
<p><textarea id="how-found" name="how-found" rows="10" maxlength="500"></textarea></p>
<!-- Hide until we get an OpenCollective account going
<h2 id="open-collective">Open Collective:</h2>
<p>Contributing through [[Open Collective|https://opencollective.com/ilot]] is a strongly encouraged. We use this platform to manage our finances, thus applicants must have an existing Open Collective profile, which can be set up [[here|https://opencollective.com/create-account]].</p>
<p>Contributing through [[Open Collective|https://opencollective.com/ilotio]] is a condition
of membership, so applicants must have an existing Open Collective profile, which can be set up [[here|https://opencollective.com/create-account]].</p>
<p><label for="oc-user">Link to your OpenCollective profile</label>
<input id="oc-user" name="oc-user" type="text" required maxlength="50"></p>
-->
<h2 id="code-of-conduct">Code of Conduct:</h2>
<p>New members must also agree to our [[Code of Conduct|meta/code-of-conduct]] and must be over the age of consent.</p>

View file

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2025-04-03 18:27-0400\n"
"POT-Creation-Date: 2024-09-08 10:20-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#. type: Content of: outside any tag (error?)
msgid "[[!meta title=\"Join\"]] [[!inline pages=\"join/join-en\" raw=\"yes\"]]"
msgid "[[!meta title=\"Join\"]]"
msgstr ""
#. type: Content of: <header><h1>
@ -44,13 +44,15 @@ msgstr ""
msgid "Basic Info:"
msgstr ""
#. type: Content of: <hr><div><div><form><div><input>
#. type: Content of: <hr><div><div><form><div><input><input>
msgid ""
"<label for=\"name\">Name <i>(optional)</i></label> <input id=\"name\" "
"name=\"name\" type=\"text\" maxlength=\"40\">"
"name=\"name\" type=\"text\" maxlength=\"40\"> <label for=\"emptyfield\">This "
"should be left unchanged</label> <input id=\"emptyfield\" "
"name=\"emptyfield\" type=\"text\" maxlength=\"40\">"
msgstr ""
#. type: Content of: <hr><div><div><form><div><input><p>
#. type: Content of: <hr><div><div><form><div><input><input><p>
msgid ""
"<label for=\"email\">Contact email address</label> <input id=\"email\" "
"name=\"email\" type=\"email\" required></p>"
@ -83,34 +85,16 @@ msgid ""
msgstr ""
#. type: Content of: <hr><div><div><form><h2>
msgid "Open Collective:"
msgstr ""
#. type: Content of: <hr><div><div><form><p>
msgid ""
"Contributing through [[Open Collective|https://opencollective.com/ilot]] is "
"a strongly encouraged. We use this platform to manage our finances, thus "
"applicants must have an existing Open Collective profile, which can be set "
"up [[here|https://opencollective.com/create-account]]."
msgstr ""
#. type: Content of: <hr><div><div><form><p>
msgid ""
"<label for=\"oc-user\">Link to your OpenCollective profile</label> <input "
"id=\"oc-user\" name=\"oc-user\" type=\"text\" required maxlength=\"50\"></p>"
msgstr ""
#. type: Content of: <hr><div><div><form><p><h2>
msgid "Code of Conduct:"
msgstr ""
#. type: Content of: <hr><div><div><form><p><p>
#. type: Content of: <hr><div><div><form><p>
msgid ""
"New members must also agree to our [[Code of Conduct|meta/code-of-conduct]] "
"and must be over the age of consent."
msgstr ""
#. type: Content of: <hr><div><div><form><p><p>
#. type: Content of: <hr><div><div><form><p>
msgid ""
"<input type=\"checkbox\" id=\"agree-to-terms\" name=\"agree-to-terms\" "
"value=\"agree-to-terms\" required> I am over 18, and have read, understood "
@ -119,7 +103,7 @@ msgid ""
"sure to review the full Code via the link.</p>"
msgstr ""
#. type: Content of: <hr><div><div><form><p><p><p>
#. type: Content of: <hr><div><div><form><p><p>
msgid ""
"The Code of Conduct is a living document that outlines acceptable behaviour "
"when members use ilot's Nextcloud and all other spaces governed by the "
@ -129,7 +113,7 @@ msgid ""
"follow the rest of the ICA co-op principles."
msgstr ""
#. type: Content of: <hr><div><div><form><p><p><p>
#. type: Content of: <hr><div><div><form><p><p>
msgid ""
"We welcome anyone able to use our services and willing to accept the "
"responsibilities of membership, regardless of qualities such as gender "
@ -139,7 +123,7 @@ msgid ""
"(or lack thereof), education, or other personal traits."
msgstr ""
#. type: Content of: <hr><div><div><form><p><p><p>
#. type: Content of: <hr><div><div><form><p><p>
msgid ""
"We particularly celebrate diversity and do not tolerate bigotry, prejudice "
"or supremacy of any kind. Diverse opinions on politics, religion, and other "
@ -149,11 +133,11 @@ msgid ""
"Code of Conduct."
msgstr ""
#. type: Content of: <hr><div><div><form><p><p><h2>
#. type: Content of: <hr><div><div><form><p><h2>
msgid "Are you a robot?"
msgstr ""
#. type: Content of: <hr><div><div><form><p><p><p>
#. type: Content of: <hr><div><div><form><p><p>
msgid ""
"<label for=\"math-spam-trap\">What is two plus seven?</label> <input "
"id=\"math-spam-trap\" name=\"math-spam-trap\" type=\"text\" required "

View file

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

View file

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: ilot.io\n"
"POT-Creation-Date: 2024-09-08 12:48-0400\n"
"PO-Revision-Date: 2025-04-03 18:49-0400\n"
"PO-Revision-Date: 2024-09-08 12:49-0400\n"
"Last-Translator: \n"
"Language-Team: dev@ayakael.net\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.5\n"
"X-Generator: Poedit 3.4.3\n"
#. type: Plain text
#, no-wrap
@ -56,7 +56,7 @@ msgid ""
"management of the other platforms, and they are here to give you an overview "
"of our infrastructure."
msgstr ""
"Les plateformes suivantes ont plutôt un rôle de soutien. Elles permettent "
"Les plates-formes suivantes ont plutôt un rôle de soutien. Elles permettent "
"une meilleure gestion des autres plateformes et sont là pour vous donner une "
"vue d'ensemble de notre infrastructure."

View file

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2024-09-11 14:44-0400\n"
"POT-Creation-Date: 2024-09-08 12:49-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View file

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

BIN
content/sidebar.fr.mo Normal file

Binary file not shown.

View file

@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: ilot.io\n"
"POT-Creation-Date: 2024-10-08 14:50-0400\n"
"PO-Revision-Date: 2024-10-08 15:08-0400\n"
"POT-Creation-Date: 2024-09-08 12:28-0400\n"
"PO-Revision-Date: 2024-09-08 12:32-0400\n"
"Last-Translator: \n"
"Language-Team: dev@ayakael.net\n"
"Language: fr\n"
@ -30,11 +30,15 @@ msgid "[[Join]]"
msgstr "[[Se joindre|join]]"
#. type: Content of: <ul><li>
msgid "[[Your Files|https://ilot.io/apps/files]]"
msgstr "[[Vos fichiers|https://ilot.io/apps/files]]"
msgid ""
"<button class=\"btn sign-in\" onclick=\"window.location.href='https://ilot."
"io/apps/files';\"> Your Files </button>"
msgstr ""
"<button class=\"btn sign-in\" onclick=\"window.location.href='https://ilot."
"io/apps/files';\"> Vos fichiers </button>"
#~ msgid "<button class=\"btn sign-in\" onclick=\"window.location.href='https://ilot.io/apps/files';\"> Your Files </button>"
#~ msgstr "<button class=\"btn sign-in\" onclick=\"window.location.href='https://ilot.io/apps/files';\"> Vos fichiers </button>"
#~ msgid "[[Archives|https://notif.ilot.io/archive]]"
#~ msgstr "[[Archives|https://notif.ilot.io/archive]]"
#~ msgid "[[Support|https://support.ilot.io/en/hc/706927618]]"
#~ msgstr "[[Aide|https://support.ilot.io/fr/hc/706927618]]"

11
content/sidebar.html Normal file
View file

@ -0,0 +1,11 @@
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
<ul class="nav navbar-nav navbar-right">
<li>[[Home|index]]</li>
<li>[[Platforms]]</li>
<li>[[Join]]</li>
<li>
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
Your Files
</button>
</li>
</ul>

View file

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2024-10-08 15:06-0400\n"
"POT-Creation-Date: 2024-09-08 12:30-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -29,5 +29,8 @@ msgid "[[Join]]"
msgstr ""
#. type: Content of: <ul><li>
msgid "[[Your Files|https://ilot.io/apps/files]]"
msgid ""
"<button class=\"btn sign-in\" "
"onclick=\"window.location.href='https://ilot.io/apps/files';\"> Your Files "
"</button>"
msgstr ""

View file

@ -1,3 +0,0 @@
/* ikiwiki local style sheet */
/* Add local styling here, instead of modifying style.css. */

View file

@ -1,596 +0,0 @@
/* ikiwiki style sheet */
/* Note that instead of modifying this style sheet, you can instead edit
* local.css and use it to override or change settings in this one.
*/
/* html5 compat */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display: block;
}
div.header, header.header {
margin: 0;
font-size: 140%;
font-weight: bold;
line-height: 1em;
display: block;
}
.inlineheader .author {
margin: 0;
font-size: 112%;
font-weight: bold;
display: block;
}
.actions ul {
margin: 0;
padding: 6px .4em;
height: 1em;
list-style-type: none;
}
.actions li {
display: inline;
padding: .2em;
}
.pageheader .actions ul {
border-bottom: 1px solid #000;
}
.inlinepage .actions ul {
border-bottom: 0;
}
#otherlanguages ul {
margin: 0;
padding: 6px;
list-style-type: none;
}
#otherlanguages li {
display: inline;
padding: .2em .4em;
}
.pageheader #otherlanguages {
border-bottom: 1px solid #000;
}
.inlinecontent,
.inlineenclosure {
margin-top: .4em;
}
.pagefooter,
.inlinefooter,
.comments {
clear: both;
}
#pageinfo {
margin: 1em 0;
border-top: 1px solid #000;
}
.tags {
margin-top: 1em;
}
.inlinepage .tags {
display: inline;
}
.mapparent {
text-decoration: none;
}
.img caption {
font-size: 80%;
caption-side: bottom;
text-align: center;
}
img.img {
margin: 0.5ex;
}
.align-left {
float:left;
}
.align-right {
float:right;
}
#backlinks {
margin-top: 1em;
}
#searchform {
display: inline;
float: right;
}
#editcontent {
width: 98%;
}
.editcontentdiv {
width: auto;
overflow: auto;
}
img {
border-style: none;
}
pre {
overflow: auto;
}
div.recentchanges {
border-style: solid;
border-width: 1px;
overflow: auto;
width: auto;
clear: none;
background: #eee;
color: black !important;
}
.recentchanges .metadata {
padding: 0px 0.5em;
}
.recentchanges .changelog {
font-style: italic;
clear: both;
display: block;
padding: 1px 2px;
background: white !important;
color: black !important;
}
.recentchanges .desc {
display: none;
}
.recentchanges .diff {
display: none;
}
.recentchanges .committer {
float: left;
margin: 0;
width: 40%;
}
.recentchanges .committype {
float: left;
margin: 0;
width: 5%;
font-size: small;
}
.recentchanges .changedate {
float: left;
margin: 0;
width: 35%;
font-size: small;
}
.recentchanges .pagelinks,
.recentchanges .revert {
float: right;
margin: 0;
width: 60%;
}
.blogform, #blogform {
padding: 10px 10px;
border: 1px solid #aaa;
background: #eee;
color: black !important;
width: auto;
overflow: auto;
}
.inlinepage {
padding: 10px 10px;
border: 1px solid #aaa;
overflow: auto;
}
.pagedate,
.pagelicense,
.pagecopyright {
font-style: italic;
display: block;
margin-top: 1em;
}
.archivepagedate {
font-style: italic;
}
.archivepage {
margin-bottom: 1em;
}
.error {
color: #C00;
}
.sidebar {
width: 20ex;
float: right;
margin-left: 4px;
margin-bottom: 4px;
margin-top: -1px;
padding: 0ex 2ex;
background: white;
border: 1px solid black;
color: black !important;
}
hr.poll {
height: 10pt;
color: white !important;
background: #eee;
border: 2px solid black;
}
div.poll {
margin-top: 1ex;
margin-bottom: 1ex;
padding: 1ex 1ex;
border: 1px solid #aaa;
}
span.color {
padding: 2px;
}
.comment-header,
.microblog-header {
font-style: italic;
margin-top: .3em;
}
.comment .author,
.microblog .author {
font-weight: bold;
}
.comment-subject {
font-weight: bold;
}
.comment-avatar {
float: right;
}
.comment {
border: 1px solid #aaa;
padding: 3px;
}
div.progress {
margin-top: 1ex;
margin-bottom: 1ex;
border: 1px solid #888;
width: 400px;
background: #eee;
color: black !important;
padding: 1px;
}
div.progress-done {
background: #ea6 !important;
color: black !important;
text-align: center;
padding: 1px;
}
/* things to hide in printouts */
@media print {
.actions { display: none; }
.tags { display: none; }
.trails { display: none; }
.feedbutton { display: none; }
#searchform { display: none; }
.blogform, #blogform { display: none; }
#backlinks { display: none; }
.addcomment { display: none; }
}
/* infobox template */
.infobox {
float: right;
margin-left: 2ex;
margin-top: 1ex;
margin-bottom: 1ex;
padding: 1ex 1ex;
border: 1px solid #aaa;
background: white;
color: black !important;
}
/* notebox template */
.notebox {
float: right;
margin-left: 2ex;
margin-top: 1ex;
margin-bottom: 1ex;
padding: 1ex 1ex;
border: 1px solid #aaa;
width: 25%;
background: white;
color: black !important;
}
/* popup template and backlinks hiding */
.popup {
border-bottom: 1px dotted #366;
color: #366;
}
.popup .balloon,
.popup .paren,
.popup .expand {
display: none;
text-align: left;
}
.popup:hover .balloon,
.popup:focus .balloon {
position: absolute;
display: inline;
margin: 1em 0 0 -2em;
padding: 0.625em;
border: 2px solid;
background-color: #dee;
color: black;
}
/* form styling */
fieldset {
margin: 1ex 0;
border: 1px solid black;
}
legend {
padding: 0 1ex;
}
.fb_submit {
float: left;
margin: 2px 0;
}
label.block {
display: block;
}
label.inline {
display: inline;
}
input#openid_identifier {
background: url(wikiicons/openidlogin-bg.gif) no-repeat;
background-color: #fff;
background-position: 0 50%;
color: #000;
padding-left: 18px;
}
input#searchbox {
background: url(wikiicons/search-bg.gif) no-repeat;
background-color: #fff;
background-position: 100% 50%;
color: #000;
padding-right: 16px;
}
/* invalid form fields */
.fb_invalid {
color: red;
background: white !important;
}
/* required form fields */
.fb_required {
font-weight: bold;
}
/* highlight plugin */
pre.hl { color:#000000; background-color:#ffffff; }
.hl.num { color:#2928ff; }
.hl.esc { color:#ff00ff; }
.hl.str { color:#ff0000; }
.hl.dstr { color:#818100; }
.hl.slc { color:#838183; font-style:italic; }
.hl.com { color:#838183; font-style:italic; }
.hl.dir { color:#008200; }
.hl.sym { color:#000000; }
.hl.line { color:#555555; }
.hl.mark { background-color:#ffffbb; }
.hl.kwa { color:#000000; font-weight:bold; }
.hl.kwb { color:#830000; }
.hl.kwc { color:#000000; font-weight:bold; }
.hl.kwd { color:#010181; }
/* calendar plugin */
.month-calendar-day-this-day,
.year-calendar-this-month {
background-color: #eee;
}
.month-calendar-day-head,
.month-calendar-day-nolink,
.month-calendar-day-link,
.month-calendar-day-this-day,
.month-calendar-day-future {
text-align: right;
}
.month-calendar-arrow A:link,
.year-calendar-arrow A:link,
.month-calendar-arrow A:visited,
.year-calendar-arrow A:visited {
text-decoration: none;
font-weight: normal;
font-size: 150%;
}
/* outlines */
li.L1 { list-style: upper-roman; }
li.L2 { list-style: decimal; }
li.L3 { list-style: lower-alpha; }
li.L4 { list-style: disc; }
li.L5 { list-style: square; }
li.L6 { list-style: circle; }
li.L7 { list-style: lower-roman; }
li.L8 { list-style: upper-alpha; }
/* tag cloud */
.pagecloud {
float: right;
width: 30%;
text-align: center;
padding: 10px 10px;
border: 1px solid #aaa;
background: #eee;
color: black !important;
}
.smallestPC { font-size: 70%; }
.smallPC { font-size: 85%; }
.normalPC { font-size: 100%; }
.bigPC { font-size: 115%; }
.biggestPC { font-size: 130%; }
/* orange feed button */
.feedbutton {
background: #ff6600;
color: white !important;
border-left: 1px solid #cc9966;
border-top: 1px solid #ccaa99;
border-right: 1px solid #993300;
border-bottom: 1px solid #331100;
padding: 0px 0.5em 0px 0.5em;
font-family: sans-serif;
font-weight: bold;
font-size: small;
text-decoration: none;
margin-top: 1em;
}
.feedbutton:hover {
color: white !important;
background: #ff9900;
}
.FlattrButton {
display: none;
}
/* login selector */
#login_choice {
display: none;
}
#login_input_area {
clear: both;
padding: 10px;
}
#login_btns, #login_btns br {
clear: both;
}
#login_highlight {
background-color: black;
float: left;
}
.login_large_btn {
padding: 1em 1.5em;
border: 1px solid #DDD;
margin: 3px;
float: left;
}
.login_small_btn {
padding: 4px 4px;
border: 1px solid #DDD;
margin: 3px;
float: left;
}
a.login_large_btn:focus {
outline: none;
}
a.login_large_btn:focus {
outline-style: none;
}
.login_selected {
border: 4px solid #DDD;
}
.fileupload-content .ui-progressbar {
width: 200px;
height: 20px;
}
.fileupload-content .ui-progressbar-value {
background: url(ikiwiki/images/pbar-ani.gif);
}
.trails {
margin-top: 1em;
margin-bottom: 1em;
}
.trail {
display: block;
clear: both;
position: relative;
}
.trailprev {
display: block;
text-align: left;
position: absolute;
top: 0%;
left: 3%;
width: 30%;
}
.trailup {
display: block;
text-align: center;
margin-left: 35%;
margin-right: 35%;
}
.trailnext {
display: block;
text-align: right;
position: absolute;
top: 0%;
width: 30%;
right: 3%;
}
.trailsep {
display: none;
}
/* mobile/small-screen-friendly layout */
@media (max-width: 600px) {
.sidebar {
width: auto;
float: none;
margin-top: 0;
border: none;
}
/* if the mobile browser is new enough, use flex layout to shuffle
* the sidebar to the end */
.page {
display: -webkit-box;
display: -webkit-flexbox;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-flex-direction: tb;
-webkit-flex-direction: column;
-webkit-flex-flow: column;
-ms-flex-direction: column;
flex-direction: column;
}
#pageheader {
-webkit-box-ordinal-group: -1;
-webkit-order: -1;
-ms-box-ordinal-group: -1;
-ms-flex-order: -1;
order: -1;
}
.sidebar, #footer {
-webkit-box-ordinal-group: 1;
-webkit-order: 1;
-ms-box-ordinal-group: 1;
-ms-flex-order: 1;
order: 1;
}
.blogform, #blogform {
padding: 4px 4px;
}
}

View file

@ -1,14 +0,0 @@
[[!meta title="HTTP 404: Not Found"]]
# HTTP 404
## Not Found
### The page could not be found or you don't have permission to view it.
<hr/>
The resource that you are attempting to access does not exist or you don't have the necessary permissions to view it.
Make sure the address is correct and that the page hasn't moved.
Please contact us using [our support page](https://support.ilot.io) if you think this is a mistake.
You can also check our [network status](https://status.ilot.io) for up-to-date status information on our services

View file

@ -1,10 +0,0 @@
[[!meta title="HTTP 422: Unprocessable content"]]
# HTTP 422
## Unprocessable content
### The change you requested is rejected.
<hr/>
Make sure you have access to the thing you tried to changee
Please contact us using [our support page](https://support.ilot.io) if you think this is a mistake

View file

@ -1,12 +0,0 @@
[[!meta title="HTTP 500: Internal Server Error"]]
# HTTP 500
## Internal Server Error
### We're sorry. Something went wrong on our end
<hr/>
Try refreshing the page, or going back and attempting the action again.
Please contact us using [our support page](https://support.ilot.io) if this problem persists.
You can also check our [network status](https://status.ilot.io) for up-to-date status information on our services

View file

@ -1,13 +0,0 @@
[[!meta title="HTTP 502: Bad Gateway Error"]]
# HTTP 502
## Bad Gateway error
### We're sorry. ilot is currently unavailable.
<hr/>
Try refreshing the page, or going back and attempting the action again.
Please contact us using [our support page](https://support.ilot.io) if this problem persists.
You can also check our [network status](https://status.ilot.io) for up-to-date status information on our services

View file

@ -1,12 +0,0 @@
[[!meta title="HTTP 503: Service unavailable"]]
# HTTP 503
## Service unavailable
### We're sorry. ilot is currently unavailable.
<hr/>
Try refreshing the page, or going back and attempting the action again.
Please contact us using [our support page](https://support.ilot.io) if this problem persists.
You can also check our [network status](https://status.ilot.io) for up-to-date status information on our services

Binary file not shown.

View file

@ -1,79 +0,0 @@
<p class="text-muted">
<div class="container">
<div class="row">
<div class="col-sm-3">
<h5>Support</h5>
<ul>
<li>[[FAQs|https://support.ilot.io/en/hc/706927618]]</li>
<li>[[Known issues|https://forge.ilot.io/ilot/-/projects/3]]</li>
<li>[[Support ticket|https://support.ilot.io/help/706927618]]</li>
</ul>
</div>
<div class="col-sm-3">
<h5>Contribute</h5>
<ul>
<li>[[Become a member|join]]
<li>[[Donate|https://opencollective.com/ilot]]</li>
<li>[[Git Forge|https://forge.ilot.io/ilot/-/projects]]</li>
<li>[[Wiki|https://wiki.ilot.io]]</li>
</ul>
</div>
<div class="col-sm-3">
<h5>About us</h5>
<ul>
<li>[[Code of conduct|meta/code-of-conduct]]</li>
<li>[[Licenses|meta/license]]</li>
<li>[[Network Status|https://status.ilot.io/status/ilot]]</li>
</div>
<div class="col-sm-3 listmonk-form">
<h5>News</h5>
<p>Subscribe to our [[newsletter|https://notif.ilot.io/archive]]</p>
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
<!-- Converts enter key to tab -->
<script>
document.addEventListener('keydown', function (event) {
if (event.keyCode === 13 && event.target.nodeName === 'INPUT') {
var form = event.target.form;
var index = Array.prototype.indexOf.call(form, event.target);
form.elements[index + 1].focus();
event.preventDefault();
}
});
</script>
<input type="hidden" name="nonce" />
<input id="39425" type="hidden" name="l" value="39425113-44b5-46f7-9897-91151467b05f" />
<div class="t">
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
</div>
<button aria-label="Subscribe" class="btn" type="button" data-bs-toggle="modal" data-bs-target="#hcaptchamodal">Subscribe</button>
<div class="modal fade" id="hcaptchamodal" tabindex="-1" aria-labelledby="haptcha" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="hcapatchamodallabel">Are you a robot?</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="h-captcha" data-sitekey="be08a59e-ae24-472e-8a80-22d07016ee90" data-callback="submitSubscribe"></div>
<script src="https://js.hcaptcha.com/1/api.js" async defer></script>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</p>

View file

@ -16,7 +16,7 @@ adminuser: []
# users who are banned from the wiki
banned_users: []
# where the source of the wiki is located
srcdir: ./
srcdir: ./content
# where to build the wiki
destdir: ./public
# base url to the wiki
@ -46,7 +46,6 @@ add_plugins:
- typography
- sidebar2
- po
- inline
# plugins to disable
disable_plugins:
- htmlscrubber
@ -55,6 +54,7 @@ templatedir: ./templates
#templatedir: /usr/share/ikiwiki/templates
# base wiki source location
#underlaydir: /usr/share/ikiwiki/basewiki
underlaydir: ./basewiki
# display verbose messages?
verbose: 1
# log to syslog?
@ -92,7 +92,7 @@ hardlink: 0
# group for wrappers to run in
#wrappergroup: ikiwiki
# extra library and plugin directories
libdirs: [plugins]
libdirs: [lib]
# extra library and plugin directory (searched after libdirs)
libdir: ''
# environment variables
@ -102,7 +102,7 @@ timezone: :/etc/localtime
# regexp of normally excluded files to include
#include: ^\.htaccess$
# regexp of files that should be skipped
exclude: ^(tools/.*|public/.*|plugins/.*)$
#exclude: ^(*\.private|Makefile)$
# specifies the characters that are allowed in source filenames
wiki_file_chars: -[:alnum:]+/.:_
# allow symlinks in the path leading to the srcdir (potentially insecure)

View file

@ -1,113 +0,0 @@
# Traduction de ikiwiki
# Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
# This file is distributed under the same license as the PACKAGE Ikiwiki.
#
msgid ""
msgstr ""
"Project-Id-Version: ilot.io\n"
"POT-Creation-Date: 2024-09-08 12:28-0400\n"
"PO-Revision-Date: 2025-04-03 18:45-0400\n"
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
"Language-Team: dev@ayakael.net\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.5\n"
#. type: Plain text
#, no-wrap
msgid "[[!meta title=\"Home\"]]\n"
msgstr "[[!meta title=\"Accueil\"]]\n"
#. type: Plain text
#, no-wrap
msgid ""
"<header class=\"text-center\">\n"
" <img src=\"images/ilot_black_256x256.png\" />\n"
" <h1>WELCOME</h1>\n"
" <hr>\n"
"</header>\n"
msgstr ""
"<header class=\"text-center\">\n"
" <img src=\"images/ilot_black_256x256.png\" />\n"
" <h1>BIENVENUE</h1>\n"
" <hr>\n"
"</header>\n"
#. type: Plain text
msgid ""
"[[ilot|https://ilot.io]] is a cooperative corner of the internet. We operate "
"a Nextcloud instance, a free and open-source collaboration platform "
"analoguous to Google Drive. We aim to eventually incorporate as a "
"cooperative to create a digital infrastructure that is by and for its users "
"as an alternative to the siloed and privatized internet of today. Members "
"fund our operations and decide how to set our community policies, steward "
"our data, and manage our shared technologies. Members also provide the labor "
"to run ilot at all levels."
msgstr ""
"[[ilot|https://ilot.io]] est une ile coopérative de l'internet. Nous "
"administrons une instance de Nextcloud, une plateforme libre de travail et "
"de stockage de donnée analogue à Google Drive. Notre objectif est de nous "
"constituer en coopérative afin de créer une infrastructure numérique par et "
"pour ses utilisateur-ice-s, en alternative à l'internet cloisonné et "
"privatisé d'aujourd'hui. Les membres financent nos opérations et décident de "
"la manière de définir nos politiques communautaires, de gérer nos données et "
"nos technologies partagées. Les membres fournissent également la main-"
"d'œuvre nécessaire au fonctionnement de l'ilot à tous les niveaux."
#. type: Plain text
msgid ""
"The project is currently in beta, as there is still a lot of work left to "
"do. While the technical infrastructure is setup and stable, the governance "
"and community guidelines are still a work in progress. If you are interested "
"in joining ilot, visit our [[registration form|join]]."
msgstr ""
"Le projet est actuellement en version bêta, car il reste encore beaucoup de "
"travail à faire. Alors que l'infrastructure technique est mise en place et "
"stable, la gouvernance et les lignes directrices de la communauté sont "
"encore en cours d'élaboration. Si vous souhaitez vous joindre à notre "
"projet, compléter notre [[formulaire d'inscription|join]]."
#. type: Plain text
msgid ""
"ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and "
"immigration studies sudent association of UQAM, wanted to create its own "
"digital infrastructure. Since then, we have worked toward the goal of making "
"the project useful to other organisations and individuals."
msgstr ""
"ilot a vu le jour en 2021 lorsque l'AESA-CIRI, l'association des étudiants "
"en sociologie, anthropologie et études de l'immigration de l'UQAM, a voulu "
"créer sa propre infrastructure numérique. Depuis, nous travaillons dans le "
"but de rendre le projet utile à d'autres organisations et individus."
#. type: Title ##
#, no-wrap
msgid "Learn more"
msgstr "En savoir plus"
#. type: Plain text
msgid "To learn more please visit some of the pages:"
msgstr "Pour en savoir plus, veuillez consulter ces pages :"
#. type: Plain text
#, no-wrap
msgid "[[Platforms]] - The online spaces we use and manage \n"
msgstr "[[Plateformes|platforms]] - Les espaces en ligne que nous utilisons et gérons \n"
#, no-wrap
#~ msgid "[[Archives|https://notif.ilot.io/archive]] - Archives of our communications with our members \n"
#~ msgstr "[[Archives|https://notif.ilot.io/archive]] - Archives de nos communications avec nos membres \n"
#, no-wrap
#~ msgid "[[Support|https://support.ilot.io/en/hc/706927618]] - Guides for how to do things on ilot and to get help \n"
#~ msgstr "[[Support|https://support.ilot.io/fr/hc/706927618]] - Guides sur la façon de faire les choses sur l'ilot et d'obtenir de l'aide \n"
#~ msgid "Welcome to your new wiki."
#~ msgstr "Bienvenue sur votre nouveau wiki."
#~ msgid "All wikis are supposed to have a [[SandBox]], so this one does too."
#~ msgstr "Comme tous les wikis, ce wiki possède une page [[SandBox]]."
#~ msgid "This wiki is powered by [[ikiwiki]]."
#~ msgstr "Ce wiki est propulsé par [[ikiwiki]]."

View file

@ -1,19 +0,0 @@
[[!meta title="Home"]]
<header class="text-center">
<img src="images/ilot_black_256x256.png" />
<h1>WELCOME</h1>
<hr>
</header>
[[ilot|https://ilot.io]] is a cooperative corner of the internet. We operate a Nextcloud instance, a free and open-source collaboration platform analoguous to Google Drive. We aim to eventually incorporate as a cooperative to create a digital infrastructure that is by and for its users as an alternative to the siloed and privatized internet of today. Members fund our operations and decide how to set our community policies, steward our data, and manage our shared technologies. Members also provide the labor to run ilot at all levels.
The project is currently in beta, as there is still a lot of work left to do. While the technical infrastructure is setup and stable, the governance and community guidelines are still a work in progress. If you are interested in joining ilot, visit our [[registration form|join]].
ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals.
## Learn more
To learn more please visit some of the pages:
[[Platforms]] - The online spaces we use and manage

View file

@ -1,78 +0,0 @@
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2024-09-11 14:44-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. type: Plain text
#, markdown-text, no-wrap
msgid "[[!meta title=\"Home\"]]\n"
msgstr ""
#. type: Plain text
#, markdown-text, no-wrap
msgid ""
"<header class=\"text-center\">\n"
" <img src=\"images/ilot_black_256x256.png\" />\n"
" <h1>WELCOME</h1>\n"
" <hr>\n"
"</header>\n"
msgstr ""
#. type: Plain text
#, markdown-text
msgid ""
"[[ilot|https://ilot.io]] is a cooperative corner of the internet. We operate "
"a Nextcloud instance, a free and open-source collaboration platform "
"analoguous to Google Drive. We aim to eventually incorporate as a "
"cooperative to create a digital infrastructure that is by and for its users "
"as an alternative to the siloed and privatized internet of today. Members "
"fund our operations and decide how to set our community policies, steward "
"our data, and manage our shared technologies. Members also provide the labor "
"to run ilot at all levels."
msgstr ""
#. type: Plain text
#, markdown-text
msgid ""
"The project is currently in beta, as there is still a lot of work left to "
"do. While the technical infrastructure is setup and stable, the governance "
"and community guidelines are still a work in progress. If you are interested "
"in joining ilot, visit our [[registration form|join]]."
msgstr ""
#. type: Plain text
#, markdown-text
msgid ""
"ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and "
"immigration studies sudent association of UQAM, wanted to create its own "
"digital infrastructure. Since then, we have worked toward the goal of making "
"the project useful to other organisations and individuals."
msgstr ""
#. type: Title ##
#, markdown-text, no-wrap
msgid "Learn more"
msgstr ""
#. type: Plain text
#, markdown-text
msgid "To learn more please visit some of the pages:"
msgstr ""
#. type: Plain text
#, markdown-text, no-wrap
msgid "[[Platforms]] - The online spaces we use and manage \n"
msgstr ""

Binary file not shown.

View file

@ -1,77 +0,0 @@
<script>
async function checkDuplicate() {
var url='https://forge.ilot.io/api/v1/repos/ilot/registration/issues';
var email = document.getElementById("email").value;
const response = await fetch(url, {
headers: {
'authorization': 'token b8d8617bb6049c0e47b7bba5cd0931799f54609c',
'Content-Type': 'application/json',
},
})
const result = await response.json();
let index = result
.findIndex(item => item.title === email);
if (index !== -1) {
return true;
} else {
return false;
}
}
async function createIssue() {
var url = 'https://forge.ilot.io/api/v1/repos/ilot/registration/issues';
var mathspamtrap = document.getElementById("math-spam-trap").value;
var agreetoterms = document.getElementById("agree-to-terms").checked;
var email = document.getElementById("email").value;
if(!agreetoterms) {
alert("Vous devez être en accord avec notre code de conduite.");
return false;
}
if(!email) {
alert("Le courriel ne peut pas être vide.");
return false;
}
if(mathspamtrap != "9") {
alert("Ceci n'est pas la bonne réponse à l'exercise mathématique.");
return false;
}
if(await checkDuplicate(email) === true) {
alert("Ce courriel a déjà fait l'objet d'une demande de compte.");
return false;
}
var name = document.getElementById("name").value;
var name = name.replace (/^/,'Name: ');
var aboutme = document.getElementById("about-me").value;
var aboutme = aboutme.replace (/^/,'About me: ');
var howfound = document.getElementById("how-found").value;
var howfound = howfound.replace (/^/,'How I found ilot: ');
var ocuser = document.getElementById("oc-user").value;
var ocuser = ocuser.replace (/^/,'OpenCollective Profile: ');
var description = name + "\n\n" + aboutme + "\n\n" + howfound + "\n\n" + ocuser;
console.log('Description:', description);
fetch(url, {
method: 'POST',
headers: {
'authorization': 'token b8d8617bb6049c0e47b7bba5cd0931799f54609c',
'Content-Type': 'application/json',
},
body: JSON.stringify({ title: email, body: description }),
})
.then(response => response.json())
.then(result => {
console.log('Success:', result);
alert("Votre demande a été soumise. Un membre d'un groupe de travail va traiter votre demande sous peu. Si vous ne recevez pas de nouvelle d'ici sept jours, contactez-vous via support@ilot.io.");
})
.catch(error => {
console.error('Error:', error)
});
}
</script>

Some files were not shown because too many files have changed in this diff Show more