Fix #2, Fix #4, Fix #6

This commit is contained in:
2018-08-20 21:28:07 +03:00
parent b3a8d30bd2
commit 3e361325b4
4 changed files with 22 additions and 6 deletions

View File

@@ -5,7 +5,7 @@
b-col(sm="12" md="12" lg="6" xl="6") b-col(sm="12" md="12" lg="6" xl="6")
b-card(title="Fasm4Delphi" class="mb-3") b-card(title="Fasm4Delphi" class="mb-3")
p(class="card-text") {{$t('fasm4delphi_description')}} p(class="card-text") {{$t('fasm4delphi_description')}}
b-button(:to="{name:'View Project', params: {project_name: 'fasm4delphi'}}") {{$t('project_site')}} b-button(:to="{name:'View Project', params: {project_name: 'fasm4delphi'}}") {{$t('project_page')}}
//span https://teamfnd.ru/#/viewproject/fasm4delphi //span https://teamfnd.ru/#/viewproject/fasm4delphi
b-col(sm="12" md="12" lg="6" xl="6") b-col(sm="12" md="12" lg="6" xl="6")
b-card(title="TeamFND" class="mb-3") b-card(title="TeamFND" class="mb-3")
@@ -15,8 +15,12 @@
b-col(sm="12" md="12" lg="6" xl="6") b-col(sm="12" md="12" lg="6" xl="6")
b-card(title="FasmOnDelphi" class="mb-3") b-card(title="FasmOnDelphi" class="mb-3")
p(class="card-text") {{$t('fasmondelphi_description')}} p(class="card-text") {{$t('fasmondelphi_description')}}
b-button(:to="{name:'View Project', params: {project_name: 'fasmondelphi'}}") {{$t('project_site')}} b-button(:to="{name:'View Project', params: {project_name: 'fasmondelphi'}}") {{$t('project_page')}}
//span https://teamfnd.ru/#/viewproject/fasmondelphi //span https://teamfnd.ru/#/viewproject/fasmondelphi
b-col(sm="12" md="12" lg="6" xl="6")
b-card(title="AGLogs" class="mb-3")
p(class="card-text") {{$t('aglogs_description')}}
b-button(:to="{name:'View Project', params: {project_name: 'aglogs'}}") {{$t('project_page')}}
// //
b-col(sm="12" md="12" lg="6" xl="6") b-col(sm="12" md="12" lg="6" xl="6")
b-card(title="Name") b-card(title="Name")

View File

@@ -16,7 +16,7 @@
</ul> </ul>
<h2>GitHub</h2> <h2>GitHub</h2>
<ul> <ul>
<li>GitHub Link: <a :href="'https://github.com/' + $t('github_link_' + this.$route.params.project_name)" target="_blank">https://github.com/{{$t('github_link_' + this.$route.params.project_name)}}</a> or</li> <li>GitHub {{ $t('link') }}: <a :href="'https://github.com/' + $t('github_link_' + this.$route.params.project_name)" target="_blank">https://github.com/{{$t('github_link_' + this.$route.params.project_name)}}</a> {{ $t('or') }}</li>
</ul> </ul>
<b-form-input type="text" disabled :value="'git clone https://github.com/' + $t('github_link_' + this.$route.params.project_name) + '.git'"></b-form-input> <b-form-input type="text" disabled :value="'git clone https://github.com/' + $t('github_link_' + this.$route.params.project_name) + '.git'"></b-form-input>
<h2>{{ $t('donate') }}:</h2> <h2>{{ $t('donate') }}:</h2>

View File

@@ -1,14 +1,17 @@
en: en:
project_page: "Project page"
project_site: "Project website" project_site: "Project website"
fasm4delphi_description: "Use FASM assembler in your Delphi or FreePascal code" fasm4delphi_description: "Use FASM assembler in your Delphi or FreePascal code"
teamfind_description: "A website for searching teams or players in CS:GO" teamfind_description: "A website for searching teams or players in CS:GO"
fasmondelphi_description: "A library for using in Delphi FlatAssembler, in contrast to Fasm4Delphi does not depend on operating system and bit type. Connects to the compiler from the command line." fasmondelphi_description: "A library for using in Delphi FlatAssembler, in contrast to Fasm4Delphi does not depend on operating system and bit type. Connects to the compiler from the command line."
aglogs_description: "Library of classes to log to different places: to file, to memory, to command-line Windows only for Delphi and FPC."
jp: jp:
project_site: "プロジェクトウェブサイト" project_site: "プロジェクトウェブサイト"
fasm4delphi_description: "DelphiとFreePascalのコドにFlat assemblerをつかうことのためにライブラリです。" fasm4delphi_description: "DelphiとFreePascalのコドにFlat assemblerをつかうことのためにライブラリです。"
teamfind_description: "A website for searching teams or players in CS:GO" teamfind_description: "A website for searching teams or players in CS:GO"
fasmondelphi_description: "DelphiとFreePascalのコドにFlat assemblerをつかうことのために拡張ライブラリです。(Linux/Unix/Win64サポートもっと簡単なAPIFront-EndとしてFasm4Delphiをあるとをつかいます)" fasmondelphi_description: "DelphiとFreePascalのコドにFlat assemblerをつかうことのために拡張ライブラリです。(Linux/Unix/Win64サポートもっと簡単なAPIFront-EndとしてFasm4Delphiをあるとをつかいます)"
ru: ru:
project_page: "Страница проекта"
project_site: "Веб-сайт проекта" project_site: "Веб-сайт проекта"
fasm4delphi_description: "Библиотека, реализующая биндинги flat ассемблера для Delphi. Совместима с FreePascal" fasm4delphi_description: "Библиотека, реализующая биндинги flat ассемблера для Delphi. Совместима с FreePascal"
teamfind_description: "Веб-сайт для поиска команды или игроков для игры в CS:GO" teamfind_description: "Веб-сайт для поиска команды или игроков для игры в CS:GO"

View File

@@ -6,9 +6,10 @@ en:
documentation: "Documentation" documentation: "Documentation"
latest_version: "Latest version" latest_version: "Latest version"
all_downloads: "All downloads" all_downloads: "All downloads"
auto: "Auto"
read_online: "Read online" read_online: "Read online"
view_on_github: "View on GitHub" view_on_github: "View on GitHub"
link: "link"
or: "or"
app_name_fasm4delphi: "Fasm4Delphi" app_name_fasm4delphi: "Fasm4Delphi"
description_fasm4delphi: "A simple library for compiling FASM assembly code to Delphi and FreePascal" description_fasm4delphi: "A simple library for compiling FASM assembly code to Delphi and FreePascal"
@@ -28,6 +29,12 @@ en:
main_fasmondelphi: "A library for using in Delphi FlatAssembler, in contrast to Fasm4Delphi not depend on operating system and bit type. Connects to the compiler from the command line. Win32 can connect to fasm.dll via Fasm4Delphi. Also, its Api is easier to use." main_fasmondelphi: "A library for using in Delphi FlatAssembler, in contrast to Fasm4Delphi not depend on operating system and bit type. Connects to the compiler from the command line. Win32 can connect to fasm.dll via Fasm4Delphi. Also, its Api is easier to use."
github_link_fasmondelphi: "TeamFND/FasmOnDelphi" github_link_fasmondelphi: "TeamFND/FasmOnDelphi"
app_name_aglogs: "AGLogs"
description_aglogs: "Library of classes to log to different places: to file, to memory, to command-line Windows only for Delphi and FPC."
main_aglogs: "Library of classes to log to different places: to file, to memory, to command-line Windows only. Supported Delphi and FPC."
keywords_aglogs: "Delphi FPC FreePascal logging commandline-logging memory-logging"
github_link_aglogs: "TeamFND/AGLogs"
ru: ru:
description_word: "Описание:" description_word: "Описание:"
download_word: "Загрузки:" download_word: "Загрузки:"
@@ -36,7 +43,10 @@ ru:
documentation: "Документация" documentation: "Документация"
latest_version: "Последняя версия" latest_version: "Последняя версия"
all_downloads: "Все загрузки" all_downloads: "Все загрузки"
auto: "Автоматически" read_online: "Читать онлаин"
view_on_github: "Смотреть на GitHub"
link: "ссылка"
or: "или"
main_fasm4delphi: "Библиотека, реализующая биндинги flat ассемблера для Delphi. Совместима с FreePascal" main_fasm4delphi: "Библиотека, реализующая биндинги flat ассемблера для Delphi. Совместима с FreePascal"
app_name_fasm4delphi: "Fasm4Delphi" app_name_fasm4delphi: "Fasm4Delphi"
@@ -56,7 +66,6 @@ jp:
documentation: "ヘルプ" documentation: "ヘルプ"
latest_version: "最新版" latest_version: "最新版"
all_downloads: "すべてのダウンロード" all_downloads: "すべてのダウンロード"
auto: "オート"
app_name_fasm4delphi: "Fasm4Delphi" app_name_fasm4delphi: "Fasm4Delphi"
description_fasm4delphi: "DelphiのFASMのライブラリ" description_fasm4delphi: "DelphiのFASMのライブラリ"