Restore
This commit is contained in:
parent
e2c890e078
commit
32fdbc66bb
41 changed files with 6160 additions and 0 deletions
21
LICENSE
Normal file
21
LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2020 Md. Emruz Hossain
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
240
README.md
Normal file
240
README.md
Normal file
|
@ -0,0 +1,240 @@
|
|||
**Warning: This theme is going through a heavy re-write. The `main` branch contains some undocumented changes. Please, do not use `main` branch. Use latest release instead. We will release a new version once the re-write is done and the changes are documented.**
|
||||
|
||||
# Toha
|
||||
|
||||
[](https://app.netlify.com/sites/toha/deploys)
|
||||
[](https://actions-badge.atrox.dev/hugo-toha/toha/goto?ref=main)
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
[](https://percy.io/b7cb60ab/hugo-toha.github.io)
|
||||
|
||||
A [Hugo](https://gohugo.io/) theme for a personal portfolio with minimalist design and responsiveness.
|
||||
|
||||

|
||||
|
||||
- **Example Site:** [hugo-toha.github.io](https://hugo-toha.github.io)
|
||||
- **Documentation:** [toha-guides.netlify.app](https://toha-guides.netlify.app/posts)
|
||||
|
||||
## Features
|
||||
|
||||
- Minimalist Design
|
||||
- Fully Responsive
|
||||
- Multiple Language Support
|
||||
- Carefully Designed Cards
|
||||
- Experience Timeline
|
||||
- Achievement Gallery
|
||||
- Sidebar to Categorize the Posts
|
||||
- Short Codes
|
||||
- Analytics Support
|
||||
- GoatCounter
|
||||
- counter.dev
|
||||
- Google Analytics
|
||||
- Matomo/Piwik
|
||||
- Comment Support
|
||||
- [Disqus](https://disqus.com/)
|
||||
- [Valine](https://valine.js.org/)
|
||||
- [Uttarances](https://utteranc.es/)
|
||||
- [Giscus](https://giscus.app/)
|
||||
|
||||
For more details about the features please visit [here](https://toha-guides.netlify.app/posts/features/).
|
||||
|
||||
## Available Translations
|
||||
|
||||
- English
|
||||
- বাংলা
|
||||
- Français
|
||||
- Indonesian
|
||||
- Deutsch
|
||||
- Español
|
||||
- 简体中文
|
||||
- हिन्दी
|
||||
- Italiano
|
||||
- 日本語
|
||||
- 한국어
|
||||
- русский
|
||||
- suomi
|
||||
- Tiếng Việt
|
||||
- Turkish
|
||||
- Arabic (العربية)
|
||||
- Português
|
||||
- Català
|
||||
- Português Brasileiro
|
||||
|
||||
To know more about how to translate your site, please visit [here](https://toha-guides.netlify.app/posts/translation/). Follow, the data and post format from this [example site](https://hugo-toha.github.io).
|
||||
|
||||
## Screenshots
|
||||
|
||||
Here are few screenshots from the [example site](https://hugo-toha.github.io).
|
||||
|
||||
##### Home Page Sections
|
||||
|
||||

|
||||
|
||||
##### List Page
|
||||
|
||||

|
||||
|
||||
##### Reading Page
|
||||
|
||||

|
||||
|
||||
## Requirements
|
||||
|
||||
- Hugo Version 0.109.0 (extended) or higher
|
||||
- Go language 1.18 or higher (require for hugo modules)
|
||||
- Node version v18.x or later and npm 8.x or later.
|
||||
|
||||
## Usage
|
||||
|
||||
The easiest way to use this theme is to fork [hugo-toha.github.io](https://github.com/hugo-toha/hugo-toha.github.io) sample repo.Then change the configurations according to your need.
|
||||
|
||||
If you want to start from scratch, then follow these steps:
|
||||
|
||||
##### 1. Initialize Hugo module on you repo
|
||||
|
||||
At first, initialize [Hugo modules](https://gohugo.io/hugo-modules/) in your repo. This will create a `go.mod` file.
|
||||
|
||||
```bash
|
||||
hugo mod init github.com/<your username>/<your repo name>
|
||||
```
|
||||
|
||||
##### 2. Add this theme as your module dependency
|
||||
|
||||
Now, in your `config.yaml` file, add a `module` section.
|
||||
|
||||
```yaml
|
||||
# Use Hugo modules to add theme
|
||||
module:
|
||||
imports:
|
||||
- path: github.com/hugo-toha/toha/v4
|
||||
```
|
||||
|
||||
Check this sample [config.yaml](https://github.com/hugo-toha/hugo-toha.github.io/blob/main/config.yaml) for further reference.
|
||||
|
||||
##### 3. Update your module
|
||||
|
||||
Now, run this command to load this theme as your module.
|
||||
|
||||
```bash
|
||||
hugo mod tidy
|
||||
```
|
||||
|
||||
#### Running Locally
|
||||
|
||||
Now, you can run your hugo site locally with the following steps:
|
||||
|
||||
##### 1. Generate node dependency configuration
|
||||
|
||||
Now run the following command to generate node dependency configuration. This will create the a `package.json` file in you repo.
|
||||
|
||||
```bash
|
||||
hugo mod npm pack
|
||||
```
|
||||
|
||||
##### 2. Install dependencies
|
||||
|
||||
Install the node dependencies using following command:
|
||||
```bash
|
||||
npm install
|
||||
```
|
||||
|
||||
##### 3. Run your site
|
||||
|
||||
Now, run you site locally using following command.
|
||||
|
||||
```bash
|
||||
hugo server -w
|
||||
```
|
||||
|
||||
When you run your site for first time, it will start with the default parameters. It should look similar to the [example site](https://hugo-toha.github.io). However, it will not have any sections in the homepage as we haven't configured them yet. You can configure your site by following the guides from [here](https://toha-guides.netlify.app/posts/configuration/).
|
||||
|
||||
## Shortcodes
|
||||
|
||||
Here, are some handy shortcodes you can use with this theme.
|
||||
|
||||
- [Alert](https://toha-guides.netlify.app/posts/shortcodes/#alert)
|
||||
- [Image](https://toha-guides.netlify.app/posts/shortcodes/#image)
|
||||
- [Split](https://toha-guides.netlify.app/posts/shortcodes/#split)
|
||||
- [Vertical Space](https://toha-guides.netlify.app/posts/shortcodes/#vertical-space)
|
||||
- [Video](https://toha-guides.netlify.app/posts/shortcodes/#video)
|
||||
- [Mermaid](https://hugo-toha.github.io/posts/shortcodes/#mermaid)
|
||||
|
||||
## Contributing
|
||||
|
||||
You can contribute to this theme in various ways. You can report a [bug](https://github.com/hugo-toha/toha/issues/new?template=bug.md), file an [feature request](https://github.com/hugo-toha/toha/issues/new?template=feature_request.md), send a PR, [share your thoughts](https://github.com/hugo-toha/toha/issues/new?template=question.md) etc.
|
||||
|
||||
Pull requests are most welcome and I will be happy to review. Just follow the following principles:
|
||||
|
||||
- Keep it simple.
|
||||
- Keep it consistent with the design.
|
||||
- Use as few dependencies as possible.
|
||||
- Have patience.
|
||||
|
||||
> I am not a web developer. I have created this theme for my personal needs. So, it is reasonable to have some flaws in the codes. Feel free to open issues and PRs acknowledging the problems.
|
||||
|
||||
## Local Development
|
||||
|
||||
For local development, you can make changes in the theme submodule and test the changes against your own site or this [example site](https://github.com/hugo-toha/hugo-toha.github.io) locally.
|
||||
|
||||
### Fork
|
||||
|
||||
At first, fork [this repo](https://github.com/hugo-toha/toha). Then, follow the following steps to use the forked theme for local developments,
|
||||
|
||||
**Using the forked theme in your own site:**
|
||||
|
||||
If you want to run your local development against your own site, follow the following steps:
|
||||
|
||||
```bash
|
||||
# add the original theme as a submodule of your site if you haven't done already
|
||||
$ git submodule add https://github.com/hugo-toha/toha.git themes/toha
|
||||
# navigate into the toha theme folder
|
||||
$ cd themes/toha
|
||||
# add your own fork as a remote
|
||||
$ git remote add my-fork https://github.com/<your-github-user>/toha
|
||||
# create a new branch for your changes
|
||||
$ git checkout -b my-feature-branch
|
||||
```
|
||||
|
||||
**Using the forked theme in the example site:**
|
||||
|
||||
If your want to run your local development against this [example site](https://github.com/hugo-toha/hugo-toha.github.io), follow the following steps:
|
||||
|
||||
```bash
|
||||
# clone the example site along with the submodules
|
||||
$ git clone git@github.com:hugo-toha/hugo-toha.github.io.git --recursive
|
||||
# navigate into the toha theme folder
|
||||
$ cd themes/toha
|
||||
# add your own fork as a remote
|
||||
$ git remote add my-fork https://github.com/<your-github-user>/toha
|
||||
# create a new branch for your changes
|
||||
$ git checkout -b my-feature-branch
|
||||
```
|
||||
|
||||
From there you can make changes to the source code of the theme while testing with your running Hugo site or the example site.
|
||||
|
||||
### Open a PR
|
||||
|
||||
When the changes look good, commit and push them to your fork.
|
||||
|
||||
```bash
|
||||
# stage all the changes
|
||||
$ git add .
|
||||
# commit the changes with a meaning full commit message
|
||||
$ git commit -m "A meaningful commit message"
|
||||
# push the commit to your fork
|
||||
$ git push my-fork my-feature-branch
|
||||
```
|
||||
|
||||
Then, open a PR against `main` branch of [hugo-toha/toha](https://github.com/hugo-toha/toha) from the `my-feature-branch` branch of your own fork.
|
||||
|
||||
## Attribution
|
||||
|
||||
- Thanks [Anup Deb](https://dribbble.com/anupdeb) for his design guidance.
|
||||
- Many of the illustrations have been taken from [iconscout](http://iconscout.com/).
|
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
---
|
||||
|
10
assets/jsconfig.json
Normal file
10
assets/jsconfig.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"*": [
|
||||
"../themes/toha/assets/*"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
38
config.yaml
Normal file
38
config.yaml
Normal file
|
@ -0,0 +1,38 @@
|
|||
baseURL: https://hugo-toha.github.io
|
||||
|
||||
languageCode: en-us
|
||||
title: "John's Blog"
|
||||
theme: "toha"
|
||||
|
||||
# Manage languages
|
||||
# For any more details, you can check the official documentation: https://gohugo.io/content-management/multilingual/
|
||||
languages:
|
||||
en:
|
||||
languageName: English
|
||||
weight: 1
|
||||
|
||||
# Control TOC depth
|
||||
markup:
|
||||
tableOfContents:
|
||||
startLevel: 2
|
||||
endLevel: 6
|
||||
ordered: false
|
||||
|
||||
# Enable global emoji support
|
||||
enableEmoji: true
|
||||
|
||||
# Site parameters
|
||||
params:
|
||||
# GitHub repo URL of your site
|
||||
gitRepo: https://github.com/hugo-toha/hugo-toha.github.io
|
||||
|
||||
# specify whether you want to write some blog posts or not
|
||||
enableBlogPost: true
|
||||
|
||||
# specify whether you want to show Table of Contents in reading page
|
||||
enableTOC: true
|
||||
|
||||
# Provide newsletter configuration. This feature hasn't been implemented yet.
|
||||
# Currently, you can just hide it from the footer.
|
||||
newsletter:
|
||||
enable: true
|
292
exampleSite/config.yaml
Normal file
292
exampleSite/config.yaml
Normal file
|
@ -0,0 +1,292 @@
|
|||
|
||||
baseURL: http://example.org/
|
||||
languageCode: en-us
|
||||
title: Example Site
|
||||
|
||||
module:
|
||||
imports:
|
||||
- path: github.com/hugo-toha/hugo-toha.github.io
|
||||
disable: false
|
||||
mounts:
|
||||
- source: content
|
||||
target: content
|
||||
- source: layouts
|
||||
target: layouts
|
||||
- source: data
|
||||
target: data
|
||||
- source: assets
|
||||
target: assets
|
||||
- source: static
|
||||
target: static
|
||||
- path: github.com/hugo-toha/toha/v4
|
||||
|
||||
# Manage languages
|
||||
# For any more details, you can check the official documentation: https://gohugo.io/content-management/multilingual/
|
||||
languages:
|
||||
en:
|
||||
languageName: English
|
||||
weight: 1
|
||||
bn:
|
||||
languageName: বাংলা
|
||||
weight: 3
|
||||
|
||||
# Force a locale to be use, really useful to develop the application ! Should be commented in production, the "weight" should rocks.
|
||||
# DefaultContentLanguage: bn
|
||||
|
||||
# Allow raw html in markdown file
|
||||
markup:
|
||||
goldmark:
|
||||
renderer:
|
||||
unsafe: true
|
||||
tableOfContents:
|
||||
startLevel: 2
|
||||
endLevel: 6
|
||||
ordered: false
|
||||
|
||||
# At least HTML and JSON are required for the main HTML content and
|
||||
# client-side JavaScript search
|
||||
outputs:
|
||||
home:
|
||||
- HTML
|
||||
- RSS
|
||||
- JSON
|
||||
|
||||
# Enable global emoji support
|
||||
enableEmoji: true
|
||||
|
||||
# Site parameters
|
||||
params:
|
||||
# Background image of the landing page
|
||||
background: /images/site/background.jpg
|
||||
|
||||
# Provide logos for your site. The inverted logo will be used in the initial
|
||||
# transparent navbar and the main logo will be used in the non-transparent navbar.
|
||||
logo:
|
||||
main: /images/site/main-logo.png
|
||||
inverted: /images/site/inverted-logo.png
|
||||
favicon: /images/site/favicon.png
|
||||
|
||||
# GitHub repo of your site
|
||||
gitRepo: https://github.com/hugo-toha/hugo-toha.github.io
|
||||
# Default branch of your Git repo
|
||||
gitBranch: main
|
||||
|
||||
# Configure the number of section title visible in the top navbar
|
||||
topNavbar:
|
||||
maxVisibleSections: 5
|
||||
|
||||
# Configure various features of this theme
|
||||
features:
|
||||
|
||||
# Enable dark theme
|
||||
darkMode:
|
||||
enable: false
|
||||
services:
|
||||
darkreader:
|
||||
defaultColorScheme: system # options are 'system', 'dark', 'light'
|
||||
fixes:
|
||||
invert: ['img[src$=".svg"]'] # inverts svg colors.
|
||||
theme:
|
||||
brightness: 100
|
||||
contrast: 100
|
||||
sepia: 0
|
||||
|
||||
# Enable and configure portfolio
|
||||
portfolio:
|
||||
enable: true
|
||||
|
||||
# Enable and configure blog posts
|
||||
blog:
|
||||
enable: true
|
||||
# Share post on different social media
|
||||
shareButtons:
|
||||
facebook: true
|
||||
twitter: true
|
||||
linkedin: true
|
||||
reddit: true
|
||||
whatsapp: true
|
||||
email: true
|
||||
# tumblr: true
|
||||
# pocket: true
|
||||
# diaspora: true
|
||||
# mastodon: true
|
||||
|
||||
# Enable & configure "Notes" features
|
||||
notes:
|
||||
enable: true
|
||||
|
||||
# Enable comment feature. There, should be only one of them.
|
||||
comment:
|
||||
enable: false
|
||||
services:
|
||||
disqus:
|
||||
shortName: toha-example-site
|
||||
# valine:
|
||||
# appId: HTV6askWxVo3vOxlqjjaq2hd-MsYXbMMI
|
||||
# appKey: pVrT3C85KGIuk27t07eh6bUC
|
||||
# avatar: retro
|
||||
# placeholder: Share your thought.
|
||||
# lang: en
|
||||
# recordIP: true
|
||||
# enableQQ: true
|
||||
# utteranc:
|
||||
# repo: github.com/hugo-toha/hugo-toha.github.io
|
||||
# issueTerm: title
|
||||
# theme: github-light
|
||||
# giscus:
|
||||
# repo: your-repo/name
|
||||
# repoID: your-repo-id
|
||||
# category: your-category
|
||||
# categoryID: your-category-id
|
||||
# theme: light
|
||||
# map: url
|
||||
# reaction: 1
|
||||
# metadata: 0
|
||||
# inputPosition: bottom
|
||||
# crossOrigin: anonymous
|
||||
# commento:
|
||||
# serverURL: cdn.commento.io
|
||||
# autoInit: true
|
||||
# hideDeleted: false
|
||||
|
||||
# Enable Analytics
|
||||
analytics:
|
||||
enabled: false
|
||||
services:
|
||||
# Google Analytics
|
||||
google:
|
||||
id: G-H4LBG7NDFZ
|
||||
# # CounterDev
|
||||
# counterDev:
|
||||
# id: <your counterdev id>
|
||||
# # GoatCounter
|
||||
# goatCounter:
|
||||
# code: <your goat counter code>
|
||||
# # Matomo / Piwik
|
||||
# matomo:
|
||||
# instance: matomo.example.com
|
||||
# siteId: 1 # Or any other number
|
||||
|
||||
# Enable Support
|
||||
support:
|
||||
enable: false
|
||||
services:
|
||||
kofi:
|
||||
user: hossainemruz
|
||||
text: Tip Me
|
||||
textColor: '#f9fafc'
|
||||
backgroundColor: '#248aaa'
|
||||
# buymeacoffee:
|
||||
# user: <your buymeacoffee.com user>
|
||||
# text: Support me on Buy me a coffee!
|
||||
# info: Buy me a coffee!
|
||||
# color: '#FFDD00'
|
||||
|
||||
# specify whether you want to show Table of Contents in reading page
|
||||
toc:
|
||||
enable: true
|
||||
|
||||
# Show tags under the post title
|
||||
tags:
|
||||
enable: true
|
||||
|
||||
# Specify whether to show flag in the language selector. Default is true.
|
||||
flags:
|
||||
enable: true
|
||||
# # If you want to use different country flag for a language, specify them here.
|
||||
# flagOverwrites:
|
||||
# - languageCode: en
|
||||
# countryCode: us
|
||||
|
||||
# Enable this to use `embed-pdf` shortcode.
|
||||
embedpdf:
|
||||
enable: false
|
||||
|
||||
# Enable this to create flowcharts using shortcodes.
|
||||
flowchart:
|
||||
enable: false
|
||||
services:
|
||||
# Uncomment for `mermaid` shortcode.
|
||||
mermaid:
|
||||
# For config options, see: https://mermaid-js.github.io/mermaid/#/Setup?id=configuration
|
||||
# theme: dark
|
||||
|
||||
# Enable this to create mathematic expressions using `$$` blocks
|
||||
math:
|
||||
enable: false
|
||||
services:
|
||||
# https://katex.org/docs/autorender.html#api for more configurations
|
||||
katex:
|
||||
delimiters:
|
||||
- left: $$
|
||||
right: $$
|
||||
display: true
|
||||
- left: \\[
|
||||
right: \\]
|
||||
display: true
|
||||
- left: $
|
||||
right: $
|
||||
display: false
|
||||
- left: \\(
|
||||
right: \\)
|
||||
display: false
|
||||
|
||||
# Enable to use custom syntax highlight
|
||||
# Please note, Hugo comes with it's own html based syntax highlighter.
|
||||
# Your code block will still be syntax highlighted by hugo.
|
||||
# For more details: https://gohugo.io/content-management/syntax-highlighting/
|
||||
# To disable Hugo's builtin syntax highlight,
|
||||
# see: https://gohugo.io/getting-started/configuration-markup#highlight
|
||||
# ```
|
||||
# # config.yaml
|
||||
# markup:
|
||||
# # this disables hugo's syntax highlighting.
|
||||
# codeFences: false
|
||||
# ```
|
||||
syntaxHighlight:
|
||||
enable: true
|
||||
services:
|
||||
hljs:
|
||||
# see: https://highlightjs.readthedocs.io/en/latest/api.html#configure
|
||||
noHighlightRe: /^no-highlight$/i
|
||||
|
||||
# Enable to use `video-player` shortcode
|
||||
videoPlayer:
|
||||
enable: false
|
||||
services:
|
||||
# convert .js-player class into video player via https://plyr.io/
|
||||
# Can play HTML5 Video, Audio, Youtube, Vimeo.
|
||||
# For more info on setup: https://github.com/sampotts/plyr#quick-setup
|
||||
plyr:
|
||||
# options doc: https://github.com/sampotts/plyr#options
|
||||
# fullscreen: true
|
||||
|
||||
|
||||
# Provide footer configuration.
|
||||
footer:
|
||||
enable: true
|
||||
# You can provide your custom footer template using this option.
|
||||
# Put your template in "layouts/partials" folder of your repo.
|
||||
template: footer.html
|
||||
# Show/hide navigation in the footer. Default is "true".
|
||||
navigation:
|
||||
enable: true
|
||||
# show custom menus in the footer
|
||||
customMenus: true
|
||||
# Show/hide "Contact Me" section in the footer. Default is "true".
|
||||
contactMe:
|
||||
enable: true
|
||||
# Show/hide credentials section in the footer. Default is "true".
|
||||
credentials:
|
||||
enable: true
|
||||
|
||||
# Show/hide newsletter section in the footer. Default is "true".
|
||||
# Currently, it supports "mailchimp".
|
||||
newsletter:
|
||||
enable: true
|
||||
provider: mailchimp
|
||||
mailchimpURL: https://github.us1.list-manage.com/subscribe/post?u=19de52a4603135aae97163fd8&id=094a24c76e
|
||||
|
||||
# Show/hide disclaimer notice in the footer. Default is "false".
|
||||
disclaimer:
|
||||
enable: true
|
8
exampleSite/go.mod
Normal file
8
exampleSite/go.mod
Normal file
|
@ -0,0 +1,8 @@
|
|||
module github.com/hugo-toha/toha/exampleSite
|
||||
|
||||
go 1.19
|
||||
|
||||
require github.com/hugo-toha/hugo-toha.github.io v0.0.0-20221228191121-007f31838bd6 // indirect
|
||||
|
||||
replace github.com/hugo-toha/toha/v4 => ../../toha
|
||||
// replace github.com/hugo-toha/hugo-toha.github.io => ../../hugo-toha.github.io
|
2
exampleSite/go.sum
Normal file
2
exampleSite/go.sum
Normal file
|
@ -0,0 +1,2 @@
|
|||
github.com/hugo-toha/hugo-toha.github.io v0.0.0-20221228191121-007f31838bd6 h1:TPFhOZAnuH4wjLIdzimswCRa2qCcc1teKVTatADJU2g=
|
||||
github.com/hugo-toha/hugo-toha.github.io v0.0.0-20221228191121-007f31838bd6/go.mod h1:OMMaP9Hh9NsKd41lVIazBQRPa0s6Z57AfJoY3DcCNNY=
|
8
go.mod
Normal file
8
go.mod
Normal file
|
@ -0,0 +1,8 @@
|
|||
module github.com/hugo-toha/toha/exampleSite
|
||||
|
||||
go 1.19
|
||||
|
||||
require github.com/hugo-toha/hugo-toha.github.io v0.0.0-20221228191121-007f31838bd6 // indirect
|
||||
|
||||
replace github.com/hugo-toha/toha/v4 => ../../toha
|
||||
// replace github.com/hugo-toha/hugo-toha.github.io => ../../hugo-toha.github.io
|
2
go.sum
Normal file
2
go.sum
Normal file
|
@ -0,0 +1,2 @@
|
|||
github.com/hugo-toha/hugo-toha.github.io v0.0.0-20221228191121-007f31838bd6 h1:TPFhOZAnuH4wjLIdzimswCRa2qCcc1teKVTatADJU2g=
|
||||
github.com/hugo-toha/hugo-toha.github.io v0.0.0-20221228191121-007f31838bd6/go.mod h1:OMMaP9Hh9NsKd41lVIazBQRPa0s6Z57AfJoY3DcCNNY=
|
126
i18n/ad.toml
Normal file
126
i18n/ad.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Inici"
|
||||
|
||||
[posts]
|
||||
other = "Publicacions"
|
||||
|
||||
[toc_heading]
|
||||
other = "Taula de Continguts"
|
||||
|
||||
[tags]
|
||||
other = "Etiquetes"
|
||||
|
||||
[categories]
|
||||
other = "Categories"
|
||||
|
||||
[at]
|
||||
other = "a"
|
||||
|
||||
[resume]
|
||||
other = "El meu currículum"
|
||||
|
||||
[navigation]
|
||||
other = "Navegació"
|
||||
|
||||
[contact_me]
|
||||
other = "Contacta'm:"
|
||||
|
||||
[email]
|
||||
other = "Correu electrònic"
|
||||
|
||||
[phone]
|
||||
other = "Telèfon"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Subscriure's"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "Entra l'email"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "Al entrar la vostra direcció de correu electrònic, esteu acceptant rebre el butlletí d'aquest lloc web."
|
||||
|
||||
[submit]
|
||||
other = "Enviar"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Impulsat per"
|
||||
|
||||
[prev]
|
||||
other = "Anterior"
|
||||
|
||||
[next]
|
||||
other = "Següent"
|
||||
|
||||
[share_on]
|
||||
other = "Compartir a"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Millorar aquesta pàgina"
|
||||
|
||||
[out_of]
|
||||
other = "de"
|
||||
|
||||
[publications]
|
||||
other = "Publicacions"
|
||||
|
||||
[taken_courses]
|
||||
other = "Cursos realitzats"
|
||||
|
||||
[course_name]
|
||||
other = "Nom del curs"
|
||||
|
||||
[total_credit]
|
||||
other = "Crèdits Totals"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Crèdits Obtinguts"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Activitats Extracurriculars"
|
||||
|
||||
[show_more]
|
||||
other = "Mostra'n més"
|
||||
|
||||
[show_less]
|
||||
other = "Mostra'n menys"
|
||||
|
||||
[responsibilities]
|
||||
other = "Responsabilitats:"
|
||||
|
||||
[present]
|
||||
other = "Actualitat"
|
||||
|
||||
[comments_javascript]
|
||||
other = "Si us plau, activa Javascript per mostrar"
|
||||
|
||||
[comments_by]
|
||||
other = "Comentaris per"
|
||||
|
||||
[read]
|
||||
other = "Llegir"
|
||||
|
||||
[project_star]
|
||||
other = "Preferit"
|
||||
|
||||
[project_details]
|
||||
other = "Detalls"
|
||||
|
||||
[err_404]
|
||||
other = "La pàgina que està cercant encara no existeix."
|
||||
|
||||
[more]
|
||||
other = "Més"
|
||||
|
||||
[view_certificate]
|
||||
other = "Mostrar Certificat"
|
||||
|
||||
[notes]
|
||||
other = "Notes"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Avís de Responsabilitat"
|
||||
|
||||
[search]
|
||||
other = "Cerca"
|
126
i18n/ar.toml
Normal file
126
i18n/ar.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "الصفحة الرئيسية"
|
||||
|
||||
[posts]
|
||||
other = "المنشورات"
|
||||
|
||||
[toc_heading]
|
||||
other = "قائمة المحتويات"
|
||||
|
||||
[tags]
|
||||
other = "الوسوم"
|
||||
|
||||
[categories]
|
||||
other = "الأقسام"
|
||||
|
||||
[at]
|
||||
other = "at"
|
||||
|
||||
[resume]
|
||||
other = "سيرتي الذاتية"
|
||||
|
||||
[navigation]
|
||||
other = "التصفح"
|
||||
|
||||
[contact_me]
|
||||
other = "اتصل بي:"
|
||||
|
||||
[email]
|
||||
other = "البريد الإلكتروني"
|
||||
|
||||
[phone]
|
||||
other = "الهاتف"
|
||||
|
||||
[newsletter_text]
|
||||
other = "ابق على اتصال من خلال القائمة البريدية"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "ادخل بريدك الالكتروني"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "بإدخال بريدك الإلكتروني، أنت توافق على تلقي رسائل إلكترونية دورية من هذا الموقع."
|
||||
|
||||
[submit]
|
||||
other = "إرسال"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "صنع باستخدام"
|
||||
|
||||
[prev]
|
||||
other = "السابق"
|
||||
|
||||
[next]
|
||||
other = "التالي"
|
||||
|
||||
[share_on]
|
||||
other = "المشاركة على"
|
||||
|
||||
[improve_this_page]
|
||||
other = "ساعد في تحسين هذه الصفحة"
|
||||
|
||||
[out_of]
|
||||
other = "من"
|
||||
|
||||
[publications]
|
||||
other = "المنشورات"
|
||||
|
||||
[taken_courses]
|
||||
other = "الدروس"
|
||||
|
||||
[course_name]
|
||||
other = "اسم المادة"
|
||||
|
||||
[total_credit]
|
||||
other = "العلامة العامة"
|
||||
|
||||
[obtained_credit]
|
||||
other = "العلامة"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "نشاطات خارجية"
|
||||
|
||||
[show_more]
|
||||
other = "إظهار المزيد"
|
||||
|
||||
[show_less]
|
||||
other = "إخفاء"
|
||||
|
||||
[responsibilities]
|
||||
other = "المسؤوليات:"
|
||||
|
||||
[present]
|
||||
other = "حاليا"
|
||||
|
||||
[comments_javascript]
|
||||
other = "من فضلك قم بتفعيل جافاسكريب لإظهار"
|
||||
|
||||
[comments_by]
|
||||
other = "التعليقات موفرة بواسطة"
|
||||
|
||||
[read]
|
||||
other = "قراءة"
|
||||
|
||||
[project_star]
|
||||
other = "نجمة"
|
||||
|
||||
[project_details]
|
||||
other = "التفاصيل"
|
||||
|
||||
[err_404]
|
||||
other = "الصفحة التي تبحث عنها ليست بعد هناك."
|
||||
|
||||
[more]
|
||||
other = "المزيد"
|
||||
|
||||
[view_certificate]
|
||||
other = "إظهار الشهادة"
|
||||
|
||||
[notes]
|
||||
other = "ملاحظات"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "إشعار بالمسؤولية"
|
||||
|
||||
[search]
|
||||
other = "بحث"
|
123
i18n/bn.toml
Normal file
123
i18n/bn.toml
Normal file
|
@ -0,0 +1,123 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "হোম"
|
||||
|
||||
[posts]
|
||||
other = "পোষ্ট সমূহ"
|
||||
|
||||
[toc_heading]
|
||||
other = "সুচিপত্র"
|
||||
|
||||
[tags]
|
||||
other = "ট্যাগ সমুহ"
|
||||
|
||||
[categories]
|
||||
other = "বিভাগ সমুহ"
|
||||
|
||||
[resume]
|
||||
other = "আমার জীবনবৃত্তান্ত"
|
||||
|
||||
[navigation]
|
||||
other = "নেভিগেশন"
|
||||
|
||||
[contact_me]
|
||||
other = "আমার সাথে যোগাযোগ করুনঃ"
|
||||
|
||||
[email]
|
||||
other = "ইমেইল"
|
||||
|
||||
[phone]
|
||||
other = "ফোন"
|
||||
|
||||
[newsletter_text]
|
||||
other = "ইমেইল নোটিফিকেশান এর মাধ্যমে সর্বশেষ তথ্য জানুন"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "ইমেইল প্রবেশ করান"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "আপনার ইমেইল ঠিকানা প্রবেশের মাধমে আপনি এই ওয়েবসাইটের নিউজ লেটার পেতে সম্মত হচ্ছেন।"
|
||||
|
||||
[submit]
|
||||
other = "জমা দিন"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "পাওয়ারড বাই"
|
||||
|
||||
[prev]
|
||||
other = "পূর্ববর্তী"
|
||||
|
||||
[next]
|
||||
other = "পরবর্তী"
|
||||
|
||||
[share_on]
|
||||
other = "শেয়ার করুন"
|
||||
|
||||
[improve_this_page]
|
||||
other = "এই পৃষ্ঠাটি উন্নত করুন"
|
||||
|
||||
[out_of]
|
||||
other = "এর মধ্যে"
|
||||
|
||||
[publications]
|
||||
other = "প্রকাশনা সমূহ"
|
||||
|
||||
[taken_courses]
|
||||
other = "গৃহীত কোর্সসমূহ"
|
||||
|
||||
[course_name]
|
||||
other = "কোর্সের নাম"
|
||||
|
||||
[total_credit]
|
||||
other = "মোট ক্রেডিট"
|
||||
|
||||
[obtained_credit]
|
||||
other = "অর্জিত ক্রেডিট"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "পাঠক্রম বহির্ভূত কার্যক্রম"
|
||||
|
||||
[show_more]
|
||||
other = "আরো দেখান"
|
||||
|
||||
[show_less]
|
||||
other = "কম দেখান"
|
||||
|
||||
[responsibilities]
|
||||
other = "দায়িত্বসমুহ:"
|
||||
|
||||
[present]
|
||||
other = "বর্তমান"
|
||||
|
||||
# [comments_javascript]
|
||||
# other = "Please enable JavaScript to view the"
|
||||
|
||||
# [comments_by]
|
||||
# other = "comments powered by"
|
||||
|
||||
# [read]
|
||||
# other = "Read"
|
||||
|
||||
# [project_star]
|
||||
# other = "Star"
|
||||
|
||||
# [project_details]
|
||||
# other = "Details"
|
||||
|
||||
# [err_404]
|
||||
# other = "The page you are looking for is not there yet."
|
||||
|
||||
[more]
|
||||
other = "আরো"
|
||||
|
||||
[view_certificate]
|
||||
other = "সার্টিফিকেট দেখুন"
|
||||
|
||||
[notes]
|
||||
other = "নোট সমূহ"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "দায় বিজ্ঞপ্তি"
|
||||
|
||||
[search]
|
||||
other = "অনুসন্ধান করুন"
|
126
i18n/de.toml
Normal file
126
i18n/de.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Home"
|
||||
|
||||
[posts]
|
||||
other = "Beiträge"
|
||||
|
||||
[toc_heading]
|
||||
other = "Inhaltsverzeichnis"
|
||||
|
||||
[tags]
|
||||
other = "Stichworte"
|
||||
|
||||
[categories]
|
||||
other = "Kategorien"
|
||||
|
||||
[at]
|
||||
other = "bei"
|
||||
|
||||
[resume]
|
||||
other = "Mein Lebenslauf"
|
||||
|
||||
[navigation]
|
||||
other = "Navigation"
|
||||
|
||||
[contact_me]
|
||||
other = "Kontaktiere mich:"
|
||||
|
||||
[email]
|
||||
other = "E-Mail"
|
||||
|
||||
[phone]
|
||||
other = "Telefon"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Mit dem Newsletter auf dem neuesten Stand bleiben"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "E-Mail Adresse eingeben"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "Mit der Eingabe Ihrer E-Mail-Adresse erklären Sie sich damit einverstanden, den Newsletter dieser Website zu erhalten."
|
||||
|
||||
[submit]
|
||||
other = "Absenden"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Unterstützt von"
|
||||
|
||||
[prev]
|
||||
other = "Vorherige"
|
||||
|
||||
[next]
|
||||
other = "Nächste"
|
||||
|
||||
# [share_on]
|
||||
# other = "Share on"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Diese Seite verbessern"
|
||||
|
||||
[out_of]
|
||||
other = "aus"
|
||||
|
||||
[publications]
|
||||
other = "Publikationen"
|
||||
|
||||
[taken_courses]
|
||||
other = "Belegte Kurse"
|
||||
|
||||
[course_name]
|
||||
other = "Kursname"
|
||||
|
||||
[total_credit]
|
||||
other = "Mögliche Punktzahl"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Note"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Außerschulische Aktivitäten"
|
||||
|
||||
[show_more]
|
||||
other = "Mehr anzeigen"
|
||||
|
||||
[show_less]
|
||||
other = "Weniger anzeigen"
|
||||
|
||||
[responsibilities]
|
||||
other = "Verantwortlichkeiten:"
|
||||
|
||||
[present]
|
||||
other = "heute"
|
||||
|
||||
[comments_javascript]
|
||||
other = "Bitte aktiviere JavaScript um die Kommentare zu sehen"
|
||||
|
||||
[comments_by]
|
||||
other = "Kommentare Unterstützt von"
|
||||
|
||||
[read]
|
||||
other = "Lesen"
|
||||
|
||||
[project_star]
|
||||
other = "Star"
|
||||
|
||||
[project_details]
|
||||
other = "Details"
|
||||
|
||||
[err_404]
|
||||
other = "Die von Ihnen gesuchte Seite ist noch nicht vorhanden."
|
||||
|
||||
[more]
|
||||
other = "Mehr"
|
||||
|
||||
[view_certificate]
|
||||
other = "Zertifikat ansehen"
|
||||
|
||||
[notes]
|
||||
other = "Notizen"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Haftungshinweis"
|
||||
|
||||
[search]
|
||||
other = "Suche"
|
126
i18n/en.toml
Normal file
126
i18n/en.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Home"
|
||||
|
||||
[posts]
|
||||
other = "Posts"
|
||||
|
||||
[toc_heading]
|
||||
other = "Table of Contents"
|
||||
|
||||
[tags]
|
||||
other = "Tags"
|
||||
|
||||
[categories]
|
||||
other = "Categories"
|
||||
|
||||
[at]
|
||||
other = "at"
|
||||
|
||||
[resume]
|
||||
other = "My resume"
|
||||
|
||||
[navigation]
|
||||
other = "Navigation"
|
||||
|
||||
[contact_me]
|
||||
other = "Contact me:"
|
||||
|
||||
[email]
|
||||
other = "Email"
|
||||
|
||||
[phone]
|
||||
other = "Phone"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Stay up to date with email notification"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "Enter email"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "By entering your email address, you agree to receive the newsletter of this website."
|
||||
|
||||
[submit]
|
||||
other = "Submit"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Powered by"
|
||||
|
||||
[prev]
|
||||
other = "Prev"
|
||||
|
||||
[next]
|
||||
other = "Next"
|
||||
|
||||
[share_on]
|
||||
other = "Share on"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Improve this page"
|
||||
|
||||
[out_of]
|
||||
other = "out of"
|
||||
|
||||
[publications]
|
||||
other = "Publications"
|
||||
|
||||
[taken_courses]
|
||||
other = "Taken Courses"
|
||||
|
||||
[course_name]
|
||||
other = "Course Name"
|
||||
|
||||
[total_credit]
|
||||
other = "Total Credit"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Obtained Credit"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Extracurricular Activities"
|
||||
|
||||
[show_more]
|
||||
other = "Show More"
|
||||
|
||||
[show_less]
|
||||
other = "Show Less"
|
||||
|
||||
[responsibilities]
|
||||
other = "Responsibilities:"
|
||||
|
||||
[present]
|
||||
other = "Present"
|
||||
|
||||
[comments_javascript]
|
||||
other = "Please enable JavaScript to view the"
|
||||
|
||||
[comments_by]
|
||||
other = "comments powered by"
|
||||
|
||||
[read]
|
||||
other = "Read"
|
||||
|
||||
[project_star]
|
||||
other = "Star"
|
||||
|
||||
[project_details]
|
||||
other = "Details"
|
||||
|
||||
[err_404]
|
||||
other = "The page you are looking for is not there yet."
|
||||
|
||||
[more]
|
||||
other = "More"
|
||||
|
||||
[view_certificate]
|
||||
other = "View Certificate"
|
||||
|
||||
[notes]
|
||||
other = "Notes"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Liability Notice"
|
||||
|
||||
[search]
|
||||
other = "Search"
|
126
i18n/es.toml
Normal file
126
i18n/es.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Inicio"
|
||||
|
||||
[posts]
|
||||
other = "Posts"
|
||||
|
||||
[toc_heading]
|
||||
other = "Contenido"
|
||||
|
||||
[tags]
|
||||
other = "Etiquetas"
|
||||
|
||||
[categories]
|
||||
other = "Categorías"
|
||||
|
||||
[at]
|
||||
other = "en"
|
||||
|
||||
[resume]
|
||||
other = "Mi currículum"
|
||||
|
||||
[navigation]
|
||||
other = "Navegación"
|
||||
|
||||
[contact_me]
|
||||
other = "Contacto"
|
||||
|
||||
[email]
|
||||
other = "Email"
|
||||
|
||||
[phone]
|
||||
other = "Teléfono"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Subscribirse"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "Ingrese email"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "Al ingresar su dirección de correo electrónico, acepta recibir el boletín de este sitio web."
|
||||
|
||||
[submit]
|
||||
other = "Enviar"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Funcionando con"
|
||||
|
||||
[prev]
|
||||
other = "Anterior"
|
||||
|
||||
[next]
|
||||
other = "Siguiente"
|
||||
|
||||
[share_on]
|
||||
other = "Compartir en"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Mejorar esta página"
|
||||
|
||||
[out_of]
|
||||
other = "de"
|
||||
|
||||
[publications]
|
||||
other = "Publicaciones"
|
||||
|
||||
[taken_courses]
|
||||
other = "Cursos tomados"
|
||||
|
||||
[course_name]
|
||||
other = "Nombre del curso"
|
||||
|
||||
[total_credit]
|
||||
other = "Crédito total"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Crédito obtenido"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Actividades extracurriculares"
|
||||
|
||||
[show_more]
|
||||
other = "Ver más"
|
||||
|
||||
[show_less]
|
||||
other = "Muestra menos"
|
||||
|
||||
[responsibilities]
|
||||
other = "Responsabilidades:"
|
||||
|
||||
[present]
|
||||
other = "Presente"
|
||||
|
||||
[comments_javascript]
|
||||
other = "Por favor, activa JavaScript para ver el"
|
||||
|
||||
[comments_by]
|
||||
other = "comentarios cortesía de"
|
||||
|
||||
[read]
|
||||
other = "Leer"
|
||||
|
||||
[project_star]
|
||||
other = "Favorito"
|
||||
|
||||
[project_details]
|
||||
other = "Detalles"
|
||||
|
||||
[err_404]
|
||||
other = "La página que estás buscando no está aquí (todavía)"
|
||||
|
||||
[more]
|
||||
other = "Más"
|
||||
|
||||
[view_certificate]
|
||||
other = "Ver Certificado"
|
||||
|
||||
[notes]
|
||||
other = "Notas"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Aviso de responsabilidad"
|
||||
|
||||
[search]
|
||||
other = "Búsqueda"
|
126
i18n/fi.toml
Normal file
126
i18n/fi.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Koti"
|
||||
|
||||
[posts]
|
||||
other = "Artikkelit"
|
||||
|
||||
[toc_heading]
|
||||
other = "Sisällysluettelo"
|
||||
|
||||
[tags]
|
||||
other = "Tagit"
|
||||
|
||||
[categories]
|
||||
other = "Kategoriat"
|
||||
|
||||
[at]
|
||||
other = "at"
|
||||
|
||||
[resume]
|
||||
other = "Ansioluetteloni"
|
||||
|
||||
[navigation]
|
||||
other = "Navigointi"
|
||||
|
||||
[contact_me]
|
||||
other = "Ota yhteyttä minuun:"
|
||||
|
||||
[email]
|
||||
other = "Sähköposti"
|
||||
|
||||
[phone]
|
||||
other = "Puhelin"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Pysy ajan tasalla tilaamalla sähköposti-ilmoitukset"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "Syötä sähköpostiosoite"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "Syöttämällä sähköpostin, hyväksyt että haluat vastaanottaa uutiskirjeen tältä sivustolta."
|
||||
|
||||
[submit]
|
||||
other = "Lähetä"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Voimanlähteenä"
|
||||
|
||||
[prev]
|
||||
other = "Edellinen"
|
||||
|
||||
[next]
|
||||
other = "Seuraava"
|
||||
|
||||
[share_on]
|
||||
other = "Jaa"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Paranna tätä sivua"
|
||||
|
||||
[out_of]
|
||||
other = "out of"
|
||||
|
||||
[publications]
|
||||
other = "Julkaisut"
|
||||
|
||||
[taken_courses]
|
||||
other = "Käydyt kurssit"
|
||||
|
||||
[course_name]
|
||||
other = "Kurssin nimi"
|
||||
|
||||
[total_credit]
|
||||
other = "Opintopisteet yhteensä"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Saadut opintopisteet"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Opetusohjelman ulkopuolinen toiminta"
|
||||
|
||||
[show_more]
|
||||
other = "Näytä lisää"
|
||||
|
||||
[show_less]
|
||||
other = "Näytä vähemmän"
|
||||
|
||||
[responsibilities]
|
||||
other = "Työtehtävät:"
|
||||
|
||||
[present]
|
||||
other = "Tämä päivä"
|
||||
|
||||
[comments_javascript]
|
||||
other = "Ole hyvä ja enabloi JavaScript katsoaksesi"
|
||||
|
||||
[comments_by]
|
||||
other = "kommentit mahdollistavat"
|
||||
|
||||
[read]
|
||||
other = "Lue"
|
||||
|
||||
[project_star]
|
||||
other = "Tähti"
|
||||
|
||||
[project_details]
|
||||
other = "Yksityiskohdat"
|
||||
|
||||
[err_404]
|
||||
other = "Sivua jota etsit ei löydy."
|
||||
|
||||
[more]
|
||||
other = "Lisää"
|
||||
|
||||
[view_certificate]
|
||||
other = "Katso todistus"
|
||||
|
||||
[notes]
|
||||
other = "Muistiinpanot"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Vastuuilmoitus"
|
||||
|
||||
[search]
|
||||
other = "Haku"
|
126
i18n/fr.toml
Normal file
126
i18n/fr.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Accueil"
|
||||
|
||||
[posts]
|
||||
other = "Articles"
|
||||
|
||||
[toc_heading]
|
||||
other = "Table des matières"
|
||||
|
||||
[tags]
|
||||
other = "Mots clés"
|
||||
|
||||
[categories]
|
||||
other = "Catégories"
|
||||
|
||||
[at]
|
||||
other = "chez"
|
||||
|
||||
[resume]
|
||||
other = "Mon Curriculum Vitæ"
|
||||
|
||||
[navigation]
|
||||
other = "Navigation"
|
||||
|
||||
[contact_me]
|
||||
other = "Contactez moi :"
|
||||
|
||||
[email]
|
||||
other = "Email"
|
||||
|
||||
[phone]
|
||||
other = "Téléphone"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Restez à jour par e-mail"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "Entrez une adresse e-mail"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "En renseignant votre adresse e-mail, vous acceptez de recevoir la newsletter de ce site."
|
||||
|
||||
[submit]
|
||||
other = "Envoyer"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Alimenté par"
|
||||
|
||||
[prev]
|
||||
other = "Précédent"
|
||||
|
||||
[next]
|
||||
other = "Suivant"
|
||||
|
||||
[share_on]
|
||||
other = "Partager sur"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Améliorez cette page"
|
||||
|
||||
[out_of]
|
||||
other = "sur"
|
||||
|
||||
[publications]
|
||||
other = "Publications"
|
||||
|
||||
[taken_courses]
|
||||
other = "Cours suivis"
|
||||
|
||||
[course_name]
|
||||
other = "Intitulé du cours"
|
||||
|
||||
[total_credit]
|
||||
other = "Crédit total"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Crédit obtenu"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Activités extra-scolaires"
|
||||
|
||||
[show_more]
|
||||
other = "En savoir plus"
|
||||
|
||||
[show_less]
|
||||
other = "Montrer moins"
|
||||
|
||||
[responsibilities]
|
||||
other = "Responsabilités :"
|
||||
|
||||
[present]
|
||||
other = "Aujourd'hui"
|
||||
|
||||
[comments_javascript]
|
||||
other = "Merci d'activer JavaScript pour voir le"
|
||||
|
||||
[comments_by]
|
||||
other = "commentaires fournis par"
|
||||
|
||||
[read]
|
||||
other = "Lire"
|
||||
|
||||
# [project_star]
|
||||
# other = "Star"
|
||||
|
||||
[project_details]
|
||||
other = "Détails"
|
||||
|
||||
[err_404]
|
||||
other = "La page que vous recherchez n'est pas disponible."
|
||||
|
||||
[more]
|
||||
other = "Suite"
|
||||
|
||||
[view_certificate]
|
||||
other = "Afficher le certificat"
|
||||
|
||||
[notes]
|
||||
other = "Remarques"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Avis de responsabilité"
|
||||
|
||||
[search]
|
||||
other = "Chercher"
|
126
i18n/hi.toml
Normal file
126
i18n/hi.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "होम"
|
||||
|
||||
[posts]
|
||||
other = "पोस्ट"
|
||||
|
||||
[toc_heading]
|
||||
other = "विषयसूची"
|
||||
|
||||
[tags]
|
||||
other = "टैग"
|
||||
|
||||
[categories]
|
||||
other = "श्रेणियाँ"
|
||||
|
||||
[at]
|
||||
other = "अन्य"
|
||||
|
||||
[resume]
|
||||
other = "बायोडाटा"
|
||||
|
||||
[navigation]
|
||||
other = "पथ प्रदर्शन"
|
||||
|
||||
[contact_me]
|
||||
other = "मुझसे संपर्क करो:"
|
||||
|
||||
[email]
|
||||
other = "ईमेल"
|
||||
|
||||
[phone]
|
||||
other = "फ़ोन"
|
||||
|
||||
[newsletter_text]
|
||||
other = "ईमेल अधिसूचना से अवगत रहें"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "ईमेल दर्ज करें"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "अपना ईमेल पता दर्ज करके, आप इस वेबसाइट का न्यूज़लेटर प्राप्त करने के लिए सहमत होते हैं।"
|
||||
|
||||
[submit]
|
||||
other = "जमा करें"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "द्वारा संचालित"
|
||||
|
||||
[prev]
|
||||
other = "पिछला"
|
||||
|
||||
[next]
|
||||
other = "आगे"
|
||||
|
||||
# [share_on]
|
||||
# other = "Share on"
|
||||
|
||||
[improve_this_page]
|
||||
other = "इस पृष्ठ को सुधारें"
|
||||
|
||||
[out_of]
|
||||
other = "में से बाहर"
|
||||
|
||||
[publications]
|
||||
other = "प्रकाशन"
|
||||
|
||||
[taken_courses]
|
||||
other = "पाठ्यक्रम लिया"
|
||||
|
||||
[course_name]
|
||||
other = "कोर्स का नाम"
|
||||
|
||||
[total_credit]
|
||||
other = "कुल क्रेडिट"
|
||||
|
||||
[obtained_credit]
|
||||
other = "श्रेय प्राप्त किया"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "अतिरिक्त पाठयक्रम गतिविधियों"
|
||||
|
||||
[show_more]
|
||||
other = "और देखें"
|
||||
|
||||
[show_less]
|
||||
other = "कम दिखाएं"
|
||||
|
||||
# [responsibilities]
|
||||
# other = "Responsibilities:"
|
||||
|
||||
# [present]
|
||||
# other = "Present"
|
||||
|
||||
# [comments_javascript]
|
||||
# other = "Please enable JavaScript to view the"
|
||||
|
||||
# [comments_by]
|
||||
# other = "comments powered by"
|
||||
|
||||
# [read]
|
||||
# other = "Read"
|
||||
|
||||
# [project_star]
|
||||
# other = "Star"
|
||||
|
||||
# [project_details]
|
||||
# other = "Details"
|
||||
|
||||
# [err_404]
|
||||
# other = "The page you are looking for is not there yet."
|
||||
|
||||
[more]
|
||||
other = "अधिक"
|
||||
|
||||
[view_certificate]
|
||||
other = "प्रमाणपत्र देखें"
|
||||
|
||||
[notes]
|
||||
other = "टिप्पणियाँ"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "दायित्व सूचना"
|
||||
|
||||
[search]
|
||||
other = "खोज"
|
126
i18n/id.toml
Normal file
126
i18n/id.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Beranda"
|
||||
|
||||
[posts]
|
||||
other = "Artikel"
|
||||
|
||||
[toc_heading]
|
||||
other = "Daftar Isi"
|
||||
|
||||
[tags]
|
||||
other = "Tags"
|
||||
|
||||
[categories]
|
||||
other = "Kategori"
|
||||
|
||||
[at]
|
||||
other = "at"
|
||||
|
||||
[resume]
|
||||
other = "Resume saya"
|
||||
|
||||
[navigation]
|
||||
other = "Navigasi"
|
||||
|
||||
[contact_me]
|
||||
other = "Hubungi saya:"
|
||||
|
||||
[email]
|
||||
other = "Surel"
|
||||
|
||||
[phone]
|
||||
other = "Telepon"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Ingin selalu update dengan notifikasi email"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "Masukkan email"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "Dengan memasukkan alamat email Anda, Anda setuju untuk menerima buletin situs web ini."
|
||||
|
||||
[submit]
|
||||
other = "Kirim"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Didukung oleh"
|
||||
|
||||
[prev]
|
||||
other = "Sebelumnya"
|
||||
|
||||
[next]
|
||||
other = "Lanjut"
|
||||
|
||||
# [share_on]
|
||||
# other = "Share on"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Perbaiki halaman ini"
|
||||
|
||||
[out_of]
|
||||
other = "dari"
|
||||
|
||||
[publications]
|
||||
other = "Publikasi"
|
||||
|
||||
[taken_courses]
|
||||
other = "Kursus yang Diambil"
|
||||
|
||||
[course_name]
|
||||
other = "Nama kursus"
|
||||
|
||||
[total_credit]
|
||||
other = "Total Kredit"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Memperoleh Kredit"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Kegiatan ekstrakulikuler"
|
||||
|
||||
[show_more]
|
||||
other = "Lihat Selengkapnya"
|
||||
|
||||
[show_less]
|
||||
other = "Tampilkan Lebih Sedikit"
|
||||
|
||||
# [responsibilities]
|
||||
# other = "Responsibilities:"
|
||||
|
||||
# [present]
|
||||
# other = "Present"
|
||||
|
||||
# [comments_javascript]
|
||||
# other = "Please enable JavaScript to view the"
|
||||
|
||||
# [comments_by]
|
||||
# other = "comments powered by"
|
||||
|
||||
# [read]
|
||||
# other = "Read"
|
||||
|
||||
# [project_star]
|
||||
# other = "Star"
|
||||
|
||||
# [project_details]
|
||||
# other = "Details"
|
||||
|
||||
# [err_404]
|
||||
# other = "The page you are looking for is not there yet."
|
||||
|
||||
[more]
|
||||
other = "Lebih"
|
||||
|
||||
[view_certificate]
|
||||
other = "Lihat Sertifikat"
|
||||
|
||||
[notes]
|
||||
other = "Catatan"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Pemberitahuan Kewajiban"
|
||||
|
||||
[search]
|
||||
other = "Mencari"
|
126
i18n/it.toml
Normal file
126
i18n/it.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Home"
|
||||
|
||||
[posts]
|
||||
other = "Post"
|
||||
|
||||
[toc_heading]
|
||||
other = "Contenuti"
|
||||
|
||||
[tags]
|
||||
other = "Tags"
|
||||
|
||||
[categories]
|
||||
other = "Categorie"
|
||||
|
||||
[at]
|
||||
other = "presso"
|
||||
|
||||
[resume]
|
||||
other = "Il mio curriculum"
|
||||
|
||||
[navigation]
|
||||
other = "Navigazione"
|
||||
|
||||
[contact_me]
|
||||
other = "Contattami:"
|
||||
|
||||
[email]
|
||||
other = "Email"
|
||||
|
||||
[phone]
|
||||
other = "Telefono"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Resta aggiornato con la notifica di email"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "Inserisci l'email"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "Inserendo il tuo indirizzo email, accetti di ricevere la newsletter di questo sito."
|
||||
|
||||
[submit]
|
||||
other = "Invia"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Creato con"
|
||||
|
||||
[prev]
|
||||
other = "Precedente"
|
||||
|
||||
[next]
|
||||
other = "Successivo"
|
||||
|
||||
[share_on]
|
||||
other = "Condividi su:"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Migliora questa pagina"
|
||||
|
||||
[out_of]
|
||||
other = "su"
|
||||
|
||||
[publications]
|
||||
other = "Pubblicazioni"
|
||||
|
||||
[taken_courses]
|
||||
other = "Corsi presi"
|
||||
|
||||
[course_name]
|
||||
other = "Nome del corso"
|
||||
|
||||
[total_credit]
|
||||
other = "Credito totale"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Credito ottenuto"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Attività extracurriculari"
|
||||
|
||||
[show_more]
|
||||
other = "Vedi altro"
|
||||
|
||||
[show_less]
|
||||
other = "Mostra meno"
|
||||
|
||||
[responsibilities]
|
||||
other = "Responsabilità:"
|
||||
|
||||
[present]
|
||||
other = "Ad oggi"
|
||||
|
||||
# [comments_javascript]
|
||||
# other = "Please enable JavaScript to view the"
|
||||
|
||||
# [comments_by]
|
||||
# other = "comments powered by"
|
||||
|
||||
# [read]
|
||||
# other = "Read"
|
||||
|
||||
# [project_star]
|
||||
# other = "Star"
|
||||
|
||||
# [project_details]
|
||||
# other = "Details"
|
||||
|
||||
# [err_404]
|
||||
# other = "The page you are looking for is not there yet."
|
||||
|
||||
[more]
|
||||
other = "Di più"
|
||||
|
||||
[view_certificate]
|
||||
other = "Vedi certificato"
|
||||
|
||||
[notes]
|
||||
other = "Appunti"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Avviso di responsabilità"
|
||||
|
||||
[search]
|
||||
other = "Ricerca"
|
123
i18n/jp.toml
Normal file
123
i18n/jp.toml
Normal file
|
@ -0,0 +1,123 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "ホーム"
|
||||
|
||||
[posts]
|
||||
other = "記事"
|
||||
|
||||
[toc_heading]
|
||||
other = "目次"
|
||||
|
||||
[tags]
|
||||
other = "タグ"
|
||||
|
||||
[categories]
|
||||
other = "カテゴリ"
|
||||
|
||||
[resume]
|
||||
other = "職務経歴書"
|
||||
|
||||
[navigation]
|
||||
other = "メニュー"
|
||||
|
||||
[contact_me]
|
||||
other = "連絡先"
|
||||
|
||||
[email]
|
||||
other = "メール"
|
||||
|
||||
[phone]
|
||||
other = "電話番号"
|
||||
|
||||
[newsletter_text]
|
||||
other = "メールで最新情報を受け取る"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "ここにメールアドレスを入力"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "メールアドレスを入力すると、このウェブサイトのニュースレターを受け取ることに同意したことになります。"
|
||||
|
||||
[submit]
|
||||
other = "登録"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "搭載"
|
||||
|
||||
[prev]
|
||||
other = "前"
|
||||
|
||||
[next]
|
||||
other = "次"
|
||||
|
||||
# [share_on]
|
||||
# other = "Share on"
|
||||
|
||||
[improve_this_page]
|
||||
other = "編集リクエストを送る"
|
||||
|
||||
[out_of]
|
||||
other = "のうち"
|
||||
|
||||
[publications]
|
||||
other = "出版物"
|
||||
|
||||
[taken_courses]
|
||||
other = "受講したコース"
|
||||
|
||||
[course_name]
|
||||
other = "コース名"
|
||||
|
||||
[total_credit]
|
||||
other = "合計クレジット"
|
||||
|
||||
[obtained_credit]
|
||||
other = "取得したクレジット"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "課外活動"
|
||||
|
||||
[show_more]
|
||||
other = "続きを見る"
|
||||
|
||||
[show_less]
|
||||
other = "表示を減らす"
|
||||
|
||||
# [responsibilities]
|
||||
# other = "Responsibilities:"
|
||||
|
||||
# [present]
|
||||
# other = "Present"
|
||||
|
||||
# [comments_javascript]
|
||||
# other = "Please enable JavaScript to view the"
|
||||
|
||||
# [comments_by]
|
||||
# other = "comments powered by"
|
||||
|
||||
# [read]
|
||||
# other = "Read"
|
||||
|
||||
# [project_star]
|
||||
# other = "Star"
|
||||
|
||||
# [project_details]
|
||||
# other = "Details"
|
||||
|
||||
# [err_404]
|
||||
# other = "The page you are looking for is not there yet."
|
||||
|
||||
[more]
|
||||
other = "もっと"
|
||||
|
||||
[view_certificate]
|
||||
other = "ビューの証明書"
|
||||
|
||||
[notes]
|
||||
other = "ノート"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "責任通知"
|
||||
|
||||
[search]
|
||||
other = "検索"
|
126
i18n/ko.toml
Normal file
126
i18n/ko.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Home"
|
||||
|
||||
[posts]
|
||||
other = "게시글"
|
||||
|
||||
[toc_heading]
|
||||
other = "목차"
|
||||
|
||||
[tags]
|
||||
other = "태그"
|
||||
|
||||
[categories]
|
||||
other = "카테고리"
|
||||
|
||||
[at]
|
||||
other = "at"
|
||||
|
||||
[resume]
|
||||
other = "이력서"
|
||||
|
||||
[navigation]
|
||||
other = "바로가기"
|
||||
|
||||
[contact_me]
|
||||
other = "Contact me:"
|
||||
|
||||
[email]
|
||||
other = "Email"
|
||||
|
||||
[phone]
|
||||
other = "Phone"
|
||||
|
||||
[newsletter_text]
|
||||
other = "이메일 알림으로 최신 상태를 유지해보세요"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "이메일을 입력하세요"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "이메일 주소를 입력하면이 웹 사이트의 뉴스 레터 수신에 동의하는 것입니다."
|
||||
|
||||
[submit]
|
||||
other = "제출"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Powered by"
|
||||
|
||||
[prev]
|
||||
other = "이전"
|
||||
|
||||
[next]
|
||||
other = "다음"
|
||||
|
||||
# [share_on]
|
||||
# other = "Share on"
|
||||
|
||||
[improve_this_page]
|
||||
other = "이 페이지를 개선"
|
||||
|
||||
[out_of]
|
||||
other = "out of"
|
||||
|
||||
[publications]
|
||||
other = "Publications"
|
||||
|
||||
[taken_courses]
|
||||
other = "이수 과목"
|
||||
|
||||
[course_name]
|
||||
other = "과목명"
|
||||
|
||||
[total_credit]
|
||||
other = "총 수익"
|
||||
|
||||
[obtained_credit]
|
||||
other = "획득한 수익"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "기타 활동"
|
||||
|
||||
[show_more]
|
||||
other = "더보기"
|
||||
|
||||
[show_less]
|
||||
other = "간단히보기"
|
||||
|
||||
# [responsibilities]
|
||||
# other = "Responsibilities:"
|
||||
|
||||
# [present]
|
||||
# other = "Present"
|
||||
|
||||
# [comments_javascript]
|
||||
# other = "Please enable JavaScript to view the"
|
||||
|
||||
# [comments_by]
|
||||
# other = "comments powered by"
|
||||
|
||||
# [read]
|
||||
# other = "Read"
|
||||
|
||||
# [project_star]
|
||||
# other = "Star"
|
||||
|
||||
# [project_details]
|
||||
# other = "Details"
|
||||
|
||||
# [err_404]
|
||||
# other = "The page you are looking for is not there yet."
|
||||
|
||||
[more]
|
||||
other = "더"
|
||||
|
||||
[view_certificate]
|
||||
other = "인증서보기"
|
||||
|
||||
[notes]
|
||||
other = "메모"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "책임 고지"
|
||||
|
||||
[search]
|
||||
other = "찾다"
|
125
i18n/nl.toml
Normal file
125
i18n/nl.toml
Normal file
|
@ -0,0 +1,125 @@
|
|||
[home]
|
||||
other = "Hoofdpagina"
|
||||
|
||||
[posts]
|
||||
other = "Posts"
|
||||
|
||||
[toc_heading]
|
||||
other = "Inhoudsopgave"
|
||||
|
||||
[tags]
|
||||
other = "Tags"
|
||||
|
||||
[categories]
|
||||
other = "Categorieën"
|
||||
|
||||
[at]
|
||||
other = "bij"
|
||||
|
||||
[resume]
|
||||
other = "Curriculum Vitae"
|
||||
|
||||
[navigation]
|
||||
other = "Navigatie"
|
||||
|
||||
[contact_me]
|
||||
other = "Contactgegevens"
|
||||
|
||||
[email]
|
||||
other = "E-Mail"
|
||||
|
||||
[phone]
|
||||
other = "Telefoon"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Ontvang updates via email"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "Email ingeven"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "Door uw e-mailadres in te voeren, gaat u akkoord met het ontvangen van de nieuwsbrief van deze website."
|
||||
|
||||
[submit]
|
||||
other = "Opslaan"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Mogelijk gemaakt met"
|
||||
|
||||
[prev]
|
||||
other = "Vorige"
|
||||
|
||||
[next]
|
||||
other = "Volgende"
|
||||
|
||||
[share_on]
|
||||
other = "Delen op"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Deze pagina verbeteren"
|
||||
|
||||
[out_of]
|
||||
other = "van de"
|
||||
|
||||
[publications]
|
||||
other = "Publicaties"
|
||||
|
||||
[taken_courses]
|
||||
other = "Gevolgde cursussen"
|
||||
|
||||
[course_name]
|
||||
other = "Cursus naam"
|
||||
|
||||
[total_credit]
|
||||
other = "Totaal krediet"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Krediet verkregen"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Buitenschoolse activiteiten"
|
||||
|
||||
[show_more]
|
||||
other = "Bekijk meer"
|
||||
|
||||
[show_less]
|
||||
other = "Laat minder zien"
|
||||
|
||||
[responsibilities]
|
||||
other = "Verantwoordelijkheden:"
|
||||
|
||||
[present]
|
||||
other = "Heden"
|
||||
|
||||
# [comments_javascript]
|
||||
# other = "Please enable JavaScript to view the"
|
||||
|
||||
# [comments_by]
|
||||
# other = "comments powered by"
|
||||
|
||||
# [read]
|
||||
# other = "Read"
|
||||
|
||||
# [project_star]
|
||||
# other = "Star"
|
||||
|
||||
[project_details]
|
||||
other = "Details"
|
||||
|
||||
[err_404]
|
||||
other = "De pagina waar je voor zoekt bestaat nog niet."
|
||||
|
||||
[more]
|
||||
other = "Meer"
|
||||
|
||||
[view_certificate]
|
||||
other = "Bekijk certificaat"
|
||||
|
||||
[notes]
|
||||
other = "Opmerkingen"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Aansprakelijkheidsverklaring"
|
||||
|
||||
[search]
|
||||
other = "Zoek"
|
126
i18n/pt-br.toml
Normal file
126
i18n/pt-br.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Início"
|
||||
|
||||
[posts]
|
||||
other = "Postagens"
|
||||
|
||||
[toc_heading]
|
||||
other = "Tabela de conteúdos"
|
||||
|
||||
[tags]
|
||||
other = "Etiquetas"
|
||||
|
||||
[categories]
|
||||
other = "Categorias"
|
||||
|
||||
[at]
|
||||
other = "em"
|
||||
|
||||
[resume]
|
||||
other = "Currículo"
|
||||
|
||||
[navigation]
|
||||
other = "Navegação"
|
||||
|
||||
[contact_me]
|
||||
other = "Contato:"
|
||||
|
||||
[email]
|
||||
other = "E-mail"
|
||||
|
||||
[phone]
|
||||
other = "Telefone"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Se mantenha atualizado com notificações por e-mail"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "Inserir email"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "Ao assinar nossa newsletter, você está concordando em receber a newsletter deste site."
|
||||
|
||||
[submit]
|
||||
other = "Enviar"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Desenvolvido por"
|
||||
|
||||
[prev]
|
||||
other = "Anterior"
|
||||
|
||||
[next]
|
||||
other = "Próximo"
|
||||
|
||||
[share_on]
|
||||
other = "Compartilhe"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Melhore esta página"
|
||||
|
||||
[out_of]
|
||||
other = "de"
|
||||
|
||||
[publications]
|
||||
other = "Publicações"
|
||||
|
||||
[taken_courses]
|
||||
other = "Cursos realizados"
|
||||
|
||||
[course_name]
|
||||
other = "Nome do Curso"
|
||||
|
||||
[total_credit]
|
||||
other = "Créditos Totais"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Créditos Obtidos"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Atividades Extracurriculares"
|
||||
|
||||
[show_more]
|
||||
other = "Ver Mais"
|
||||
|
||||
[show_less]
|
||||
other = "Ver Menos"
|
||||
|
||||
[responsibilities]
|
||||
other = "Responsabilidades:"
|
||||
|
||||
[present]
|
||||
other = "Presente"
|
||||
|
||||
[comments_javascript]
|
||||
other = "Por favor ative JavaScript para ver o"
|
||||
|
||||
[comments_by]
|
||||
other = "comentários por"
|
||||
|
||||
[read]
|
||||
other = "Ler"
|
||||
|
||||
[project_star]
|
||||
other = "Star"
|
||||
|
||||
[project_details]
|
||||
other = "Detalhes"
|
||||
|
||||
[err_404]
|
||||
other = "A página que você está procurando ainda não está aqui."
|
||||
|
||||
[more]
|
||||
other = "Mais"
|
||||
|
||||
[view_certificate]
|
||||
other = "Ver Certificado"
|
||||
|
||||
[notes]
|
||||
other = "Notas"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Nota legal"
|
||||
|
||||
[search]
|
||||
other = "Pesquisar"
|
126
i18n/pt.toml
Normal file
126
i18n/pt.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Início"
|
||||
|
||||
[posts]
|
||||
other = "Artigos"
|
||||
|
||||
[toc_heading]
|
||||
other = "Tabela de conteúdos"
|
||||
|
||||
[tags]
|
||||
other = "Etiquetas"
|
||||
|
||||
[categories]
|
||||
other = "Categorias"
|
||||
|
||||
[at]
|
||||
other = "em"
|
||||
|
||||
[resume]
|
||||
other = "O meu Currículo"
|
||||
|
||||
[navigation]
|
||||
other = "Navegação"
|
||||
|
||||
[contact_me]
|
||||
other = "Contacte-me:"
|
||||
|
||||
[email]
|
||||
other = "Email"
|
||||
|
||||
[phone]
|
||||
other = "Telefone"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Mantenha-se actualizado com notificações por email"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "Inserir email"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "Ao submeter o seu endereço de email, concorda em receber a newsletter deste website."
|
||||
|
||||
[submit]
|
||||
other = "Enviar"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Desenvolvido por"
|
||||
|
||||
[prev]
|
||||
other = "Anterior"
|
||||
|
||||
[next]
|
||||
other = "Próximo"
|
||||
|
||||
[share_on]
|
||||
other = "Partilha"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Melhore esta página"
|
||||
|
||||
[out_of]
|
||||
other = "de"
|
||||
|
||||
[publications]
|
||||
other = "Publicações"
|
||||
|
||||
[taken_courses]
|
||||
other = "Cursos frequentados"
|
||||
|
||||
[course_name]
|
||||
other = "Nome do Curso"
|
||||
|
||||
[total_credit]
|
||||
other = "Créditos Totais"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Créditos Obtidos"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Actividades Extracurriculares"
|
||||
|
||||
[show_more]
|
||||
other = "Ver Mais"
|
||||
|
||||
[show_less]
|
||||
other = "Ver Menos"
|
||||
|
||||
[responsibilities]
|
||||
other = "Responsabilidades:"
|
||||
|
||||
[present]
|
||||
other = "Presente"
|
||||
|
||||
[comments_javascript]
|
||||
other = "Por favor active JavaScript para ver o"
|
||||
|
||||
[comments_by]
|
||||
other = "comentários por"
|
||||
|
||||
[read]
|
||||
other = "Ler"
|
||||
|
||||
[project_star]
|
||||
other = "Star"
|
||||
|
||||
[project_details]
|
||||
other = "Detalhes"
|
||||
|
||||
[err_404]
|
||||
other = "A página que procura ainda não está aqui."
|
||||
|
||||
[more]
|
||||
other = "Mais"
|
||||
|
||||
[view_certificate]
|
||||
other = "Ver Certificado"
|
||||
|
||||
[notes]
|
||||
other = "Notas"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Nota legal"
|
||||
|
||||
[search]
|
||||
other = "Pesquisar"
|
126
i18n/ru.toml
Normal file
126
i18n/ru.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Главная"
|
||||
|
||||
[posts]
|
||||
other = "Посты"
|
||||
|
||||
[toc_heading]
|
||||
other = "Оглавление"
|
||||
|
||||
[tags]
|
||||
other = "Теги"
|
||||
|
||||
[categories]
|
||||
other = "Категории"
|
||||
|
||||
[at]
|
||||
other = "в"
|
||||
|
||||
[resume]
|
||||
other = "Резюме"
|
||||
|
||||
[navigation]
|
||||
other = "Навигация"
|
||||
|
||||
[contact_me]
|
||||
other = "Контакты:"
|
||||
|
||||
[email]
|
||||
other = "Email"
|
||||
|
||||
[phone]
|
||||
other = "Телефон"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Подпишитесь на уведомления, чтобы не пропустить новый пост"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "Введите email"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "Вводя свой адрес электронной почты, вы соглашаетесь получать информационный бюллетень этого веб-сайта."
|
||||
|
||||
[submit]
|
||||
other = "Подтвердить"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Создано при помощи"
|
||||
|
||||
[prev]
|
||||
other = "Предыдущий"
|
||||
|
||||
[next]
|
||||
other = "Следующий"
|
||||
|
||||
# [share_on]
|
||||
# other = "Share on"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Улучшить эту страницу"
|
||||
|
||||
[out_of]
|
||||
other = "из"
|
||||
|
||||
[publications]
|
||||
other = "Публикации"
|
||||
|
||||
[taken_courses]
|
||||
other = "Пройденные курсы"
|
||||
|
||||
[course_name]
|
||||
other = "Название курса"
|
||||
|
||||
[total_credit]
|
||||
other = "Общий кредит"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Полученный кредит"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Внеклассные занятия"
|
||||
|
||||
[show_more]
|
||||
other = "Узнать больше"
|
||||
|
||||
[show_less]
|
||||
other = "Показывай меньше"
|
||||
|
||||
# [responsibilities]
|
||||
# other = "Responsibilities:"
|
||||
|
||||
# [present]
|
||||
# other = "Present"
|
||||
|
||||
# [comments_javascript]
|
||||
# other = "Please enable JavaScript to view the"
|
||||
|
||||
# [comments_by]
|
||||
# other = "comments powered by"
|
||||
|
||||
# [read]
|
||||
# other = "Read"
|
||||
|
||||
# [project_star]
|
||||
# other = "Star"
|
||||
|
||||
# [project_details]
|
||||
# other = "Details"
|
||||
|
||||
# [err_404]
|
||||
# other = "The page you are looking for is not there yet."
|
||||
|
||||
[more]
|
||||
other = "Более"
|
||||
|
||||
[view_certificate]
|
||||
other = "Просмотреть сертификат"
|
||||
|
||||
[notes]
|
||||
other = "Ноты"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Уведомление об ответственности"
|
||||
|
||||
[search]
|
||||
other = "Поиск"
|
126
i18n/tr.toml
Normal file
126
i18n/tr.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Anasayfa"
|
||||
|
||||
[posts]
|
||||
other = "Gönderiler"
|
||||
|
||||
[toc_heading]
|
||||
other = "İçerik Tablosu"
|
||||
|
||||
[tags]
|
||||
other = "Etiketler"
|
||||
|
||||
[categories]
|
||||
other = "Kategoriler"
|
||||
|
||||
[at]
|
||||
other = ","
|
||||
|
||||
[resume]
|
||||
other = "Özgeçmişim"
|
||||
|
||||
[navigation]
|
||||
other = "Menü"
|
||||
|
||||
[contact_me]
|
||||
other = "İletişime geç:"
|
||||
|
||||
[email]
|
||||
other = "E-Posta"
|
||||
|
||||
[phone]
|
||||
other = "Telefon"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Yeni içeriklerden haberdar olmak için E-Posta adresinizi giriniz."
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "E-Posta adresi giriniz."
|
||||
|
||||
[newsletter_warning]
|
||||
other = "E-Posta adresini girerseniz, bu web sitesinin haber bültenini almayı kabul ediyorsunuz."
|
||||
|
||||
[submit]
|
||||
other = "Onayla"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = ""
|
||||
|
||||
[prev]
|
||||
other = "Önceki"
|
||||
|
||||
[next]
|
||||
other = "Sonraki"
|
||||
|
||||
[share_on]
|
||||
other = "Paylaş"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Bu sayfaya katkıda bulunun"
|
||||
|
||||
[out_of]
|
||||
other = "/"
|
||||
|
||||
[publications]
|
||||
other = "Akademik Yayınlar"
|
||||
|
||||
[taken_courses]
|
||||
other = "Alınan Dersler"
|
||||
|
||||
[course_name]
|
||||
other = "Ders Adı"
|
||||
|
||||
[total_credit]
|
||||
other = "Üzerinden"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Alınan Not"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Ders Dışı Aktiviteler"
|
||||
|
||||
[show_more]
|
||||
other = "Devamını Göster"
|
||||
|
||||
[show_less]
|
||||
other = "Gizle"
|
||||
|
||||
[responsibilities]
|
||||
other = "Sorumluluklar:"
|
||||
|
||||
[present]
|
||||
other = "Halen"
|
||||
|
||||
[comments_javascript]
|
||||
other = "Görüntüleyebilmek için lüften Javascript etkinleştirin"
|
||||
|
||||
[comments_by]
|
||||
other = "comments powered by"
|
||||
|
||||
[read]
|
||||
other = "Oku"
|
||||
|
||||
[project_star]
|
||||
other = "Star"
|
||||
|
||||
[project_details]
|
||||
other = "Detaylar"
|
||||
|
||||
[err_404]
|
||||
other = "Aradığınız sayfa bulunamadı."
|
||||
|
||||
[more]
|
||||
other = "Devamını Göster"
|
||||
|
||||
[view_certificate]
|
||||
other = "Sertifikayı Görüntüle"
|
||||
|
||||
[notes]
|
||||
other = "Notlar"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Yükümlülük Bildirisi"
|
||||
|
||||
[search]
|
||||
other = "Ara"
|
126
i18n/vn.toml
Normal file
126
i18n/vn.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "Trang chủ"
|
||||
|
||||
[posts]
|
||||
other = "Bài viết"
|
||||
|
||||
[toc_heading]
|
||||
other = "Mục lục"
|
||||
|
||||
[tags]
|
||||
other = "Thẻ"
|
||||
|
||||
[categories]
|
||||
other = "Thể loại"
|
||||
|
||||
[at]
|
||||
other = "tại"
|
||||
|
||||
[resume]
|
||||
other = "Sơ yếu lý lịch của tôi"
|
||||
|
||||
[navigation]
|
||||
other = "Điều hướng"
|
||||
|
||||
[contact_me]
|
||||
other = "Liên hệ với tôi"
|
||||
|
||||
[email]
|
||||
other = "Email"
|
||||
|
||||
[phone]
|
||||
other = "Điện thoại"
|
||||
|
||||
[newsletter_text]
|
||||
other = "Nhận email cập nhật thông tin"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "Nhập email"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "Bằng cách nhập địa chỉ email của bạn, bạn đồng ý nhận bản tin của trang web này."
|
||||
|
||||
[submit]
|
||||
other = "Gửi"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Được cung cấp bởi"
|
||||
|
||||
[prev]
|
||||
other = "Trước"
|
||||
|
||||
[next]
|
||||
other = "Tiếp theo"
|
||||
|
||||
# [share_on]
|
||||
# other = "Share on"
|
||||
|
||||
[improve_this_page]
|
||||
other = "Cải thiện trang này"
|
||||
|
||||
[out_of]
|
||||
other = "trên"
|
||||
|
||||
[publications]
|
||||
other = "Ấn phẩm"
|
||||
|
||||
[taken_courses]
|
||||
other = "Đã thực hiện các khóa học"
|
||||
|
||||
[course_name]
|
||||
other = "Tên khóa học"
|
||||
|
||||
[total_credit]
|
||||
other = "Tổng số tín dụng"
|
||||
|
||||
[obtained_credit]
|
||||
other = "Tín dụng thu được"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "Các hoạt động ngoại khóa"
|
||||
|
||||
[show_more]
|
||||
other = "Xem thêm"
|
||||
|
||||
[show_less]
|
||||
other = "Hiện ít hơn"
|
||||
|
||||
# [responsibilities]
|
||||
# other = "Responsibilities:"
|
||||
|
||||
# [present]
|
||||
# other = "Present"
|
||||
|
||||
# [comments_javascript]
|
||||
# other = "Please enable JavaScript to view the"
|
||||
|
||||
# [comments_by]
|
||||
# other = "comments powered by"
|
||||
|
||||
# [read]
|
||||
# other = "Read"
|
||||
|
||||
# [project_star]
|
||||
# other = "Star"
|
||||
|
||||
# [project_details]
|
||||
# other = "Details"
|
||||
|
||||
# [err_404]
|
||||
# other = "The page you are looking for is not there yet."
|
||||
|
||||
[more]
|
||||
other = "Hơn"
|
||||
|
||||
[view_certificate]
|
||||
other = "Xem chứng chỉ"
|
||||
|
||||
[notes]
|
||||
other = "Ghi chú"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "Thông báo trách nhiệm"
|
||||
|
||||
[search]
|
||||
other = "Tìm kiếm"
|
126
i18n/zh-cn.toml
Normal file
126
i18n/zh-cn.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "主页"
|
||||
|
||||
[posts]
|
||||
other = "博文"
|
||||
|
||||
[toc_heading]
|
||||
other = "目录"
|
||||
|
||||
[tags]
|
||||
other = "标签"
|
||||
|
||||
[categories]
|
||||
other = "类别"
|
||||
|
||||
[at]
|
||||
other = "at"
|
||||
|
||||
[resume]
|
||||
other = "我的简历"
|
||||
|
||||
[navigation]
|
||||
other = "导航"
|
||||
|
||||
[contact_me]
|
||||
other = "联系方式:"
|
||||
|
||||
[email]
|
||||
other = "邮箱"
|
||||
|
||||
[phone]
|
||||
other = "电话"
|
||||
|
||||
[newsletter_text]
|
||||
other = "通过电子邮件接收最新信息"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "填入 E-mail"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "输入您的电子邮件地址,即表示您同意接收本网站的时事通讯"
|
||||
|
||||
[submit]
|
||||
other = "提交"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Powered by"
|
||||
|
||||
[prev]
|
||||
other = "上一篇"
|
||||
|
||||
[next]
|
||||
other = "下一篇"
|
||||
|
||||
[share_on]
|
||||
other = "分享"
|
||||
|
||||
[improve_this_page]
|
||||
other = "改善此页面"
|
||||
|
||||
[out_of]
|
||||
other = "/"
|
||||
|
||||
[publications]
|
||||
other = "刊物"
|
||||
|
||||
[taken_courses]
|
||||
other = "选修课程"
|
||||
|
||||
[course_name]
|
||||
other = "课程名"
|
||||
|
||||
[total_credit]
|
||||
other = "满分"
|
||||
|
||||
[obtained_credit]
|
||||
other = "获得分数"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "课外活动"
|
||||
|
||||
[show_more]
|
||||
other = "查看更多"
|
||||
|
||||
[show_less]
|
||||
other = "显示较少"
|
||||
|
||||
[responsibilities]
|
||||
other = "职责:"
|
||||
|
||||
[present]
|
||||
other = "至今"
|
||||
|
||||
[comments_javascript]
|
||||
other = "请启用 JavaScript 以查看"
|
||||
|
||||
[comments_by]
|
||||
other = "评论支持 by"
|
||||
|
||||
[read]
|
||||
other = "阅读"
|
||||
|
||||
[project_star]
|
||||
other = "Star"
|
||||
|
||||
[project_details]
|
||||
other = "详情"
|
||||
|
||||
[err_404]
|
||||
other = "您查找的页面已私奔。"
|
||||
|
||||
[more]
|
||||
other = "更多的"
|
||||
|
||||
[view_certificate]
|
||||
other = "查看证书"
|
||||
|
||||
[notes]
|
||||
other = "笔记"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "免责声明"
|
||||
|
||||
[search]
|
||||
other = "搜索"
|
126
i18n/zh-tw.toml
Normal file
126
i18n/zh-tw.toml
Normal file
|
@ -0,0 +1,126 @@
|
|||
# More documentation here: https://github.com/nicksnyder/go-i18n
|
||||
[home]
|
||||
other = "首頁"
|
||||
|
||||
[posts]
|
||||
other = "文章"
|
||||
|
||||
[toc_heading]
|
||||
other = "目錄"
|
||||
|
||||
[tags]
|
||||
other = "标签"
|
||||
|
||||
[categories]
|
||||
other = "类别"
|
||||
|
||||
[at]
|
||||
other = "at"
|
||||
|
||||
[resume]
|
||||
other = "履歷"
|
||||
|
||||
[navigation]
|
||||
other = "導覽列"
|
||||
|
||||
[contact_me]
|
||||
other = "聯絡方式:"
|
||||
|
||||
[email]
|
||||
other = "信箱"
|
||||
|
||||
[phone]
|
||||
other = "電話"
|
||||
|
||||
[newsletter_text]
|
||||
other = "通過電子郵件接收最新消息"
|
||||
|
||||
[newsletter_input_placeholder]
|
||||
other = "在此輸入您的電子郵件地址"
|
||||
|
||||
[newsletter_warning]
|
||||
other = "輸入您的電子郵件地址,即表示您同意接受本網站的最新消息"
|
||||
|
||||
[submit]
|
||||
other = "提交"
|
||||
|
||||
[hugoAttributionText]
|
||||
other = "Powered by"
|
||||
|
||||
[prev]
|
||||
other = "上一篇"
|
||||
|
||||
[next]
|
||||
other = "下一篇"
|
||||
|
||||
[share_on]
|
||||
other = "分享"
|
||||
|
||||
[improve_this_page]
|
||||
other = "改善此頁面"
|
||||
|
||||
[out_of]
|
||||
other = "/"
|
||||
|
||||
[publications]
|
||||
other = "出版"
|
||||
|
||||
[taken_courses]
|
||||
other = "修習課程"
|
||||
|
||||
[course_name]
|
||||
other = "課程名稱"
|
||||
|
||||
[total_credit]
|
||||
other = "總分"
|
||||
|
||||
[obtained_credit]
|
||||
other = "獲得學分"
|
||||
|
||||
[extracurricular_activities]
|
||||
other = "課外活動"
|
||||
|
||||
[show_more]
|
||||
other = "查看更多"
|
||||
|
||||
[show_less]
|
||||
other = "顯示較少"
|
||||
|
||||
[responsibilities]
|
||||
other = "職責:"
|
||||
|
||||
[present]
|
||||
other = "現在"
|
||||
|
||||
[comments_javascript]
|
||||
other = "請開啟 JavaScript 查看"
|
||||
|
||||
[comments_by]
|
||||
other = "評論由"
|
||||
|
||||
[read]
|
||||
other = "閱讀"
|
||||
|
||||
[project_star]
|
||||
other = "Star"
|
||||
|
||||
[project_details]
|
||||
other = "詳情"
|
||||
|
||||
[err_404]
|
||||
other = "您訪問的頁面不存在"
|
||||
|
||||
[more]
|
||||
other = "更多的"
|
||||
|
||||
[view_certificate]
|
||||
other = "查看證書"
|
||||
|
||||
[notes]
|
||||
other = "筆記"
|
||||
|
||||
[disclaimer_text]
|
||||
other = "免責聲明"
|
||||
|
||||
[search]
|
||||
other = "搜索"
|
BIN
images/about.png
Normal file
BIN
images/about.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 141 KiB |
BIN
images/list.png
Normal file
BIN
images/list.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 289 KiB |
BIN
images/screenshot.png
Normal file
BIN
images/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 638 KiB |
BIN
images/single.png
Normal file
BIN
images/single.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 118 KiB |
BIN
images/tn.png
Normal file
BIN
images/tn.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 119 KiB |
BIN
images/tn2.png
Normal file
BIN
images/tn2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 315 KiB |
2725
package-lock.json
generated
Normal file
2725
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
48
package.hugo.json
Normal file
48
package.hugo.json
Normal file
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"name": "toha",
|
||||
"version": "1.0.0",
|
||||
"description": "A [Hugo](https://gohugo.io/) theme for a personal portfolio with minimalist design and responsiveness.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "eslint --fix .",
|
||||
"autoprefixer": "postcss static/css/*/*.css --use autoprefixer -r --no-map"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/hugo-toha/toha.git"
|
||||
},
|
||||
"author": "Emruz Hossain",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/hugo-toha/toha/issues"
|
||||
},
|
||||
"homepage": "https://github.com/hugo-toha/toha#readme",
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^10.4.13",
|
||||
"eslint": "^8.31.0",
|
||||
"eslint-config-prettier": "^8.6.0",
|
||||
"eslint-config-standard": "^17.0.0",
|
||||
"eslint-plugin-import": "^2.26.0",
|
||||
"eslint-plugin-n": "^15.6.0",
|
||||
"eslint-plugin-no-jquery": "^2.7.0",
|
||||
"eslint-plugin-promise": "^6.1.1",
|
||||
"postcss": "^8.4.21",
|
||||
"postcss-cli": "^8.3.1",
|
||||
"@fontsource/mulish": "4.5.13",
|
||||
"@fortawesome/fontawesome-free": "^6.2.0",
|
||||
"bootstrap": "^4.6.2",
|
||||
"darkreader": "^4.9.58",
|
||||
"filterizr": "^2.2.4",
|
||||
"flag-icon-css": "^4.1.7",
|
||||
"fuse.js": "^6.6.2",
|
||||
"highlight.js": "^11.6.0",
|
||||
"imagesloaded": "^5.0.0",
|
||||
"ityped": "^1.0.3",
|
||||
"katex": "^0.16.3",
|
||||
"mark.js": "^8.11.1",
|
||||
"mermaid": "^9.2.1",
|
||||
"plyr": "^3.7.2",
|
||||
"popper.js": "^1.16.1"
|
||||
}
|
||||
}
|
81
package.json
Normal file
81
package.json
Normal file
|
@ -0,0 +1,81 @@
|
|||
{
|
||||
"author": "Emruz Hossain",
|
||||
"bugs": {
|
||||
"url": "https://github.com/hugo-toha/toha/issues"
|
||||
},
|
||||
"comments": {
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@fontsource/mulish": "project",
|
||||
"@fortawesome/fontawesome-free": "project",
|
||||
"autoprefixer": "project",
|
||||
"bootstrap": "project",
|
||||
"darkreader": "project",
|
||||
"eslint": "project",
|
||||
"eslint-config-prettier": "project",
|
||||
"eslint-config-standard": "project",
|
||||
"eslint-plugin-import": "project",
|
||||
"eslint-plugin-n": "project",
|
||||
"eslint-plugin-no-jquery": "project",
|
||||
"eslint-plugin-promise": "project",
|
||||
"filterizr": "project",
|
||||
"flag-icon-css": "project",
|
||||
"fuse.js": "project",
|
||||
"highlight.js": "project",
|
||||
"imagesloaded": "project",
|
||||
"ityped": "project",
|
||||
"katex": "project",
|
||||
"mark.js": "project",
|
||||
"mermaid": "project",
|
||||
"plyr": "project",
|
||||
"popper.js": "project",
|
||||
"postcss": "project",
|
||||
"postcss-cli": "project"
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"jquery": "^3.6.4"
|
||||
},
|
||||
"description": "A [Hugo](https://gohugo.io/) theme for a personal portfolio with minimalist design and responsiveness.",
|
||||
"devDependencies": {
|
||||
"@fontsource/mulish": "4.5.13",
|
||||
"@fortawesome/fontawesome-free": "^6.2.0",
|
||||
"autoprefixer": "^10.4.13",
|
||||
"bootstrap": "^4.6.2",
|
||||
"darkreader": "^4.9.58",
|
||||
"eslint": "^8.31.0",
|
||||
"eslint-config-prettier": "^8.6.0",
|
||||
"eslint-config-standard": "^17.0.0",
|
||||
"eslint-plugin-import": "^2.26.0",
|
||||
"eslint-plugin-n": "^15.6.0",
|
||||
"eslint-plugin-no-jquery": "^2.7.0",
|
||||
"eslint-plugin-promise": "^6.1.1",
|
||||
"filterizr": "^2.2.4",
|
||||
"flag-icon-css": "^4.1.7",
|
||||
"fuse.js": "^6.6.2",
|
||||
"highlight.js": "^11.6.0",
|
||||
"imagesloaded": "^5.0.0",
|
||||
"ityped": "^1.0.3",
|
||||
"katex": "^0.16.3",
|
||||
"mark.js": "^8.11.1",
|
||||
"mermaid": "^9.2.1",
|
||||
"plyr": "^3.7.2",
|
||||
"popper.js": "^1.16.1",
|
||||
"postcss": "^8.4.21",
|
||||
"postcss-cli": "^8.3.1"
|
||||
},
|
||||
"homepage": "https://github.com/hugo-toha/toha#readme",
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "toha",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/hugo-toha/toha.git"
|
||||
},
|
||||
"scripts": {
|
||||
"autoprefixer": "postcss static/css/*/*.css --use autoprefixer -r --no-map",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "eslint --fix ."
|
||||
},
|
||||
"version": "1.0.0"
|
||||
}
|
40
theme.toml
Normal file
40
theme.toml
Normal file
|
@ -0,0 +1,40 @@
|
|||
# theme.toml template for a Hugo theme
|
||||
# See https://github.com/gohugoio/hugoThemes#themetoml for an example
|
||||
description = "A simple hugo theme for personal portfolio"
|
||||
homepage = "https://hugo-toha.github.io/"
|
||||
license = "MIT"
|
||||
licenselink = "https://github.com/hugo-toha/toha/blob/master/LICENSE"
|
||||
min_version = "0.109.0"
|
||||
name = "Toha"
|
||||
|
||||
features = [
|
||||
"Minimalist Design",
|
||||
"Fully Responsive",
|
||||
"Multiple Language Support",
|
||||
"Carefully Designed Cards",
|
||||
"Experience Timeline",
|
||||
"Achievement Gallery",
|
||||
"Sidebar to Categorize the Posts",
|
||||
"Short Codes",
|
||||
"Google Analytics Support",
|
||||
"Disqus Comment Support",
|
||||
]
|
||||
tags = [
|
||||
"Portfolio",
|
||||
"Blog",
|
||||
"Resume",
|
||||
"Projects",
|
||||
"Gallery",
|
||||
"Multilingual",
|
||||
"Minimalist",
|
||||
"Responsive",
|
||||
"Customizable",
|
||||
"Google analytics",
|
||||
"Disqus",
|
||||
"Bootstrap",
|
||||
"Syntax highlighting",
|
||||
]
|
||||
|
||||
[author]
|
||||
homepage = "https://hossainemruz.github.io"
|
||||
name = "Emruz Hossain"
|
Loading…
Add table
Add a link
Reference in a new issue