Mentions légales du service

Skip to content
Snippets Groups Projects

feat: add image segmentation to NIIHW project

Open Mathis Boultoureau requested to merge image-segmentation into master
Files
324
+ 67
2
@@ -3,7 +3,7 @@
function starti18n(){
if(!array_key_exists("lang",$_SESSION)){
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0,2);
$usedLang = ['fr', 'en','ka'];
$usedLang = ['fr', 'en','ka', 'ja'];
$lang = in_array($lang, $usedLang) ? $lang : 'en';
$_SESSION['lang']=$lang;
}
@@ -136,9 +136,74 @@ function starti18n(){
"main page"=>"მთავარი გვერდი"
);
$ja = array(
// template-main.tmpl
"Projects"=>"プロジェク",
"Contribute!"=>"貢献せよ!",
"Embark others"=>"リクルート",
"Progress"=>"進捗状況",
"Forum"=>"フォーラム",
"View feedbacks"=>"フィードバック",
"Tools"=>"ツール",
"Monitor"=>"ダッシュボード",
"Reset"=>"リセット",
"Logged as"=>"ログイン",
"Edit profile"=>"プロフィールの編集",
"Logout"=>"ログアウト",
"About"=>"バージョン情報",
"Credits"=>"クレジット",
"Our project"=>"プロジェクト",
"Source"=>"情報源",
"Wiki"=>"ウィキ",
"Documentation"=>"ドキュメント",
"Thank you for your feedback ! We will take it into consideration."=>"ご意見ありがとうございます!私たちはそれを考慮します。",
"Any feedback"=>"ご感想は ?",
"What do you think we should improve on this page?"=>"このページの改善点は?",
"Cancel"=>"キャンセル",
"Send feedback"=>"送信",
// showtask.php
"Then Contribute!"=>"それから貢献しよう",
"Choose your activity..."=>"活動を選択してください...",
"Task Description"=>"タスクの説明",
"Relevance Score"=>"関連性",
"Start!"=>"スタート!",
"Error: skill not found task or user skill identify"=>"エラー:タスクまたはユーザーのスキルが見つかりません",
// profile.php
"'s profile"=>" : プロフィール",
"Availability:" => "利用可能時間: ",
"Indicate how often you plan on coming on the platform:"=>"プラットフォームへの来訪頻度をご記入ください :",
"As often as possible"=>"できるだけ頻繁に",
"Once per week or so" =>"1週間に1回程度",
"Some times per month"=>"月に何度か",
"Some times per year" =>"回年に数",
"Accept conditions below and save changes"=>"以下の条件を承諾し、変更を保存する",
// skills.php
"Manage you skills" =>"スキルの管理 !",
"Please indicate/update your skills on this dashboard. " =>"このダッシュボードであなたのスキルを表示/更新してください、",
"Rookie......Fair........Expert"=>"初心者......アマチュア......上級者",
"Common sense"=>"一般常識",
"Browse skills"=>"スキルを検索",
// Forum
"Welcome on the forum"=>"フォーラムへようこそ",
"There are currently "=>"現在ある",
"There is currently "=>"現在ある",
" topics in the forum."=>"フォーラム内のトピッ",
" topic in the forum."=>"トピックを検",
"Search a topic"=>"トピックを検索",
"Create a topic"=>"トピックの作成",
"Last change: "=>"最終更新 : ",
// Monitor
"Monitor Board"=>"モニター掲示板",
// Headache
"Ouuuch! ... Headache!"=>"痛い!大きな頭痛!",
"Sorry, we got an internal error. We are on it. Try going back to the "=>"申し訳ありません。 現在作業中です。 このページに戻ってください。 ",
"main page"=>"ページ"
);
$GLOBALS['T']=array(
"fr"=>$fr,
"ka"=>$ka
"ka"=>$ka,
"ja"=>$ja
);
}
Loading