Skip to content

Commit 733c1df

Browse files
authored
Applies translations (#30)
1 parent 74e25df commit 733c1df

File tree

5 files changed

+25
-12
lines changed

5 files changed

+25
-12
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,22 @@ This plugin adds configurable text blocks for replying to issues.
1313
## Installation
1414

1515
To install Redmine text blocks plugin, download or clone this repository in your Redmine installation plugins directory!
16-
```
16+
17+
```sh
1718
cd path/to/plugin/directory
1819
git clone https://github.com/gtt-project/redmine_text_blocks.git
1920
```
2021

2122
Then run
2223

23-
```
24+
```sh
2425
bundle install
2526
bundle exec rake redmine:plugins:migrate
2627
```
2728

2829
After restarting Redmine, you should be able to see the Redmine Text Blocks plugin in the Plugins page.
2930

30-
More information on installing (and uninstalling) Redmine plugins can be found here: http://www.redmine.org/wiki/redmine/Plugins
31+
More information on installing (and uninstalling) Redmine plugins can be found in [Redmine Plugins](http://www.redmine.org/wiki/redmine/Plugins) documentation.
3132

3233
## How to use
3334

@@ -48,11 +49,11 @@ See [all releases](https://github.com/gtt-project/redmine_text_blocks/releases)
4849

4950
## Authors
5051

51-
- [Jens Kraemer](https://github.com/jkraemer)
52-
- [Daniel Kastl](https://github.com/dkastl)
53-
- [Thibault Mutabazi](https://github.com/eyewritecode)
54-
- [Ko Nagase](https://github.com/sanak)
55-
- ... [and others](https://github.com/gtt-project/redmine_text_blocks/graphs/contributors)
52+
- [Jens Kraemer](https://github.com/jkraemer)
53+
- [Daniel Kastl](https://github.com/dkastl)
54+
- [Thibault Mutabazi](https://github.com/eyewritecode)
55+
- [Ko Nagase](https://github.com/sanak)
56+
- ... [and others](https://github.com/gtt-project/redmine_text_blocks/graphs/contributors)
5657

5758
## LICENSE
5859

config/locales/de.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
de:
2+
field_text_block_text: Text
3+
label_select_text_block: "Textbaustein auswählen…"
4+
label_text_block_name: Name
5+
label_text_block_text: Text
6+
label_text_block_plural: Textbausteine
7+
label_text_block_new: Neuer Textbaustein
8+
permission_view_text_blocks: "Textbausteine ansehen"
9+
permission_manage_text_blocks: "Textbausteine verwalten"
10+
project_module_text_blocks: "Textbausteine"
11+
model:
12+
text_block:
13+
name_uniqueness: Ein Textbaustein mit diesem Namen ist bereits vorhanden.

config/locales/en.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
en:
22
field_text_block_text: Text
3-
label_select_text_block: "Select text block..."
3+
label_select_text_block: "Select text block"
44
label_text_block_name: Name
55
label_text_block_text: Text
66
label_text_block_plural: Text blocks

config/locales/ja.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ja:
22
field_text_block_text: テンプレート
3-
label_select_text_block: "テンプレートを選択..."
3+
label_select_text_block: "テンプレートを選択"
44
label_text_block_name: タイトル
55
label_text_block_text: テンプレート
66
label_text_block_plural: テンプレート

init.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
author_url 'https://github.com/georepublic'
1818
url 'https://github.com/gtt-project/redmine_text_blocks'
1919
description 'Adds configurable text blocks for replying to issues'
20-
version '2.0.0'
20+
version '2.0.1'
2121

2222
requires_redmine version_or_higher: '4.0.0'
2323

@@ -37,4 +37,3 @@
3737
{ controller: 'text_blocks', action: 'index' },
3838
caption: :label_text_block_plural, :html => {:class => 'icon icon-text-blocks'}
3939
end
40-

0 commit comments

Comments
 (0)