wwwjdic 16.0.0 → 16.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG +10 -1
- data/Gemfile +2 -4
- data/README.md +5 -4
- data/Rakefile +2 -4
- data/copyright.md +5 -5
- data/examples/basics.rb +2 -4
- data/examples/translate.rb +2 -4
- data/examples/uri.rb +2 -6
- data/html/CHANGELOG.html +34 -24
- data/html/COPYING_md.html +22 -23
- data/html/Gemfile.html +23 -24
- data/html/Object.html +393 -394
- data/html/README_md.html +27 -28
- data/html/Rakefile.html +23 -24
- data/html/WWWJDic.html +42 -43
- data/html/WWWJDic/ParsableDuckType.html +35 -36
- data/html/WWWJDic/Parser.html +47 -48
- data/html/WWWJDic/Parsers.html +28 -29
- data/html/WWWJDic/Parsers/Dict.html +47 -48
- data/html/WWWJDic/Parsers/Display.html +42 -43
- data/html/WWWJDic/Parsers/Key.html +42 -43
- data/html/WWWJDic/Parsers/Search.html +38 -39
- data/html/WWWJDic/Parsers/Server.html +42 -43
- data/html/WWWJDic/Splitter.html +76 -77
- data/html/WWWJDic/Utils.html +29 -30
- data/html/WWWJDic/Utils/Downloader.html +40 -35
- data/html/WWWJDic/Utils/Downloader/Downloader.html +52 -45
- data/html/WWWJDic/Utils/Raisers.html +43 -44
- data/html/WWWJDic/WWWJDic.html +162 -163
- data/html/copyright_md.html +27 -28
- data/html/created.rid +33 -33
- data/html/css/rdoc.css +638 -619
- data/html/index.html +26 -27
- data/html/js/darkfish.js +84 -84
- data/html/js/navigation.js.gz +0 -0
- data/html/js/search.js +109 -110
- data/html/js/search_index.js +1 -1
- data/html/js/search_index.js.gz +0 -0
- data/html/js/searcher.js +228 -229
- data/html/js/searcher.js.gz +0 -0
- data/html/table_of_contents.html +10 -10
- data/lib/wwwjdic.rb +3 -5
- data/lib/wwwjdic/application.rb +4 -5
- data/lib/wwwjdic/constants.rb +11 -5
- data/lib/wwwjdic/locales/de.yml +2 -2
- data/lib/wwwjdic/locales/en.yml +2 -2
- data/lib/wwwjdic/locales/es.yml +2 -2
- data/lib/wwwjdic/locales/fr.yml +2 -2
- data/lib/wwwjdic/locales/hu.yml +2 -2
- data/lib/wwwjdic/locales/it.yml +2 -2
- data/lib/wwwjdic/locales/ja.yml +4 -4
- data/lib/wwwjdic/locales/nl.yml +2 -2
- data/lib/wwwjdic/locales/ru.yml +2 -2
- data/lib/wwwjdic/locales/sl.yml +2 -2
- data/lib/wwwjdic/locales/sv.yml +2 -2
- data/lib/wwwjdic/parser.rb +3 -5
- data/lib/wwwjdic/parsers/dict.rb +3 -5
- data/lib/wwwjdic/parsers/display.rb +3 -5
- data/lib/wwwjdic/parsers/key.rb +3 -5
- data/lib/wwwjdic/parsers/search.rb +3 -5
- data/lib/wwwjdic/parsers/server.rb +3 -5
- data/lib/wwwjdic/utils/downloader.rb +14 -8
- data/lib/wwwjdic/utils/raisers.rb +4 -6
- data/lib/wwwjdic/utils/splitter.rb +4 -5
- data/lib/wwwjdic/version.rb +10 -4
- data/test/test_helper.rb +2 -4
- data/test/test_wwwjdic.rb +2 -4
- data/test/wwwjdic/locales/de.yml +2 -2
- data/test/wwwjdic/locales/en.yml +2 -2
- data/test/wwwjdic/locales/es.yml +2 -2
- data/test/wwwjdic/locales/fr.yml +2 -2
- data/test/wwwjdic/locales/hu.yml +2 -2
- data/test/wwwjdic/locales/it.yml +2 -2
- data/test/wwwjdic/locales/ja.yml +4 -4
- data/test/wwwjdic/locales/nl.yml +2 -2
- data/test/wwwjdic/locales/ru.yml +2 -2
- data/test/wwwjdic/locales/sl.yml +2 -2
- data/test/wwwjdic/locales/sv.yml +2 -2
- data/test/wwwjdic/locales/test_locales.rb +2 -4
- data/test/wwwjdic/parsers/test_dict.rb +2 -4
- data/test/wwwjdic/parsers/test_display.rb +2 -4
- data/test/wwwjdic/parsers/test_key.rb +2 -4
- data/test/wwwjdic/parsers/test_server.rb +2 -4
- data/test/wwwjdic/test_application.rb +3 -5
- data/test/wwwjdic/test_parsable_duck_type.rb +4 -5
- data/test/wwwjdic/utils/test_downloader.rb +2 -4
- data/test/wwwjdic/utils/test_raisers.rb +2 -4
- data/wwwjdic.gemspec +2 -4
- metadata +11 -11
data/lib/wwwjdic/parsers/key.rb
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
#--
|
4
4
|
# wwwjdic
|
5
|
-
#
|
6
|
-
# © 2014 Marco Bresciani
|
7
|
-
# rubocop:enable Style/AsciiComments
|
5
|
+
# © 2014-2021 Marco Bresciani
|
8
6
|
#
|
9
7
|
# This file is part of wwwjdic.
|
10
8
|
#
|
@@ -21,7 +19,7 @@
|
|
21
19
|
# You should have received a copy of the GNU General Public License
|
22
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
23
21
|
#
|
24
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
25
23
|
#
|
26
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
27
25
|
#++
|
@@ -64,7 +62,7 @@ module WWWJDic
|
|
64
62
|
# displayed.
|
65
63
|
#
|
66
64
|
# Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
|
67
|
-
# Copyright::
|
65
|
+
# Copyright:: © 2014-2021 Marco Bresciani
|
68
66
|
# License:: GNU General Public License version 3
|
69
67
|
class Key
|
70
68
|
include Utils::Raisers
|
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
#--
|
4
4
|
# wwwjdic
|
5
|
-
#
|
6
|
-
# © 2014 Marco Bresciani
|
7
|
-
# rubocop:enable Style/AsciiComments
|
5
|
+
# © 2014-2021 Marco Bresciani
|
8
6
|
#
|
9
7
|
# This file is part of wwwjdic.
|
10
8
|
#
|
@@ -21,7 +19,7 @@
|
|
21
19
|
# You should have received a copy of the GNU General Public License
|
22
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
23
21
|
#
|
24
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
25
23
|
#
|
26
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
27
25
|
#++
|
@@ -55,7 +53,7 @@ module WWWJDic
|
|
55
53
|
# * for example sentence lookups using a regular expression, use T.
|
56
54
|
#
|
57
55
|
# Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
|
58
|
-
# Copyright::
|
56
|
+
# Copyright:: © 2014-2021 Marco Bresciani
|
59
57
|
# License:: GNU General Public License version 3
|
60
58
|
class Search
|
61
59
|
# The parsable duck type interface to every parser usage.
|
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
#--
|
4
4
|
# wwwjdic
|
5
|
-
#
|
6
|
-
# © 2014 Marco Bresciani
|
7
|
-
# rubocop:enable Style/AsciiComments
|
5
|
+
# © 2014-2021 Marco Bresciani
|
8
6
|
#
|
9
7
|
# This file is part of wwwjdic.
|
10
8
|
#
|
@@ -21,7 +19,7 @@
|
|
21
19
|
# You should have received a copy of the GNU General Public License
|
22
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
23
21
|
#
|
24
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
25
23
|
#
|
26
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
27
25
|
#++
|
@@ -35,7 +33,7 @@ module WWWJDic
|
|
35
33
|
# with +true+ for regular.
|
36
34
|
#
|
37
35
|
# Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
|
38
|
-
# Copyright::
|
36
|
+
# Copyright:: © 2014-2021 Marco Bresciani
|
39
37
|
# License:: GNU General Public License version 3
|
40
38
|
class Server
|
41
39
|
include Utils::Raisers
|
@@ -3,7 +3,7 @@
|
|
3
3
|
#--
|
4
4
|
# wwwjdic
|
5
5
|
# rubocop:disable Style/AsciiComments
|
6
|
-
# © 2014 Marco Bresciani
|
6
|
+
# © 2014-2021 Marco Bresciani
|
7
7
|
# rubocop:enable Style/AsciiComments
|
8
8
|
#
|
9
9
|
# This file is part of wwwjdic.
|
@@ -21,19 +21,20 @@
|
|
21
21
|
# You should have received a copy of the GNU General Public License
|
22
22
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
23
23
|
#
|
24
|
-
# SPDX-FileCopyrightText:
|
24
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
25
25
|
#
|
26
|
-
# SPDX-License-Identifier:
|
26
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
27
27
|
#++
|
28
28
|
|
29
29
|
module WWWJDic
|
30
30
|
module Utils
|
31
|
-
# This module is a simple wrapper container for
|
32
|
-
# gist.
|
31
|
+
# This module is a simple wrapper container for Jon Maken gist.
|
33
32
|
#
|
34
|
-
# Author:: {
|
35
|
-
#
|
36
|
-
#
|
33
|
+
# Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
|
34
|
+
# rubocop:disable Style/AsciiComments
|
35
|
+
# Copyright:: © 2014-2021 Marco Bresciani
|
36
|
+
# rubocop:enable Style/AsciiComments
|
37
|
+
# License:: GNU General Public License version 3
|
37
38
|
module Downloader
|
38
39
|
require 'net/http'
|
39
40
|
require 'net/ftp'
|
@@ -41,6 +42,11 @@ module WWWJDic
|
|
41
42
|
require 'fileutils'
|
42
43
|
require 'tempfile'
|
43
44
|
|
45
|
+
# rubocop:disable Style/AsciiComments
|
46
|
+
# Copyright:: © 2012 Jon Maken
|
47
|
+
# rubocop:enable Style/AsciiComments
|
48
|
+
# see https://gist.github.com/jonforums/2202048
|
49
|
+
#
|
44
50
|
# An HTTP/HTTPS/FTP file downloader library/CLI based upon
|
45
51
|
# MiniPortile's HTTP implementation.
|
46
52
|
#
|
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
#--
|
4
4
|
# wwwjdic
|
5
|
-
#
|
6
|
-
# © 2014 Marco Bresciani
|
7
|
-
# rubocop:enable Style/AsciiComments
|
5
|
+
# © 2014-2021 Marco Bresciani
|
8
6
|
#
|
9
7
|
# This file is part of wwwjdic.
|
10
8
|
#
|
@@ -21,7 +19,7 @@
|
|
21
19
|
# You should have received a copy of the GNU General Public License
|
22
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
23
21
|
#
|
24
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
25
23
|
#
|
26
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
27
25
|
#++
|
@@ -34,14 +32,14 @@ module WWWJDic
|
|
34
32
|
# methods...
|
35
33
|
#
|
36
34
|
# Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
|
37
|
-
# Copyright::
|
35
|
+
# Copyright:: © 2014-2021 Marco Bresciani
|
38
36
|
# License:: GNU General Public License version 3
|
39
37
|
module Utils
|
40
38
|
# This module contains some utility method to raise errors according
|
41
39
|
# to (possibly) common conditions.
|
42
40
|
#
|
43
41
|
# Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
|
44
|
-
# Copyright::
|
42
|
+
# Copyright:: © 2014-2021 Marco Bresciani
|
45
43
|
# License:: GNU General Public License version 3
|
46
44
|
module Raisers
|
47
45
|
# Raises an +ArgumentError+ according to parameters, unless the
|
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
#--
|
4
4
|
# wwwjdic
|
5
|
-
#
|
6
|
-
# © 2014 Marco Bresciani
|
7
|
-
# rubocop:enable Style/AsciiComments
|
5
|
+
# © 2014-2021 Marco Bresciani
|
8
6
|
#
|
9
7
|
# This file is part of wwwjdic.
|
10
8
|
#
|
@@ -21,7 +19,7 @@
|
|
21
19
|
# You should have received a copy of the GNU General Public License
|
22
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
23
21
|
#
|
24
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
25
23
|
#
|
26
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
27
25
|
#++
|
@@ -34,8 +32,9 @@ require_relative '../constants'
|
|
34
32
|
module WWWJDic
|
35
33
|
# This class is a simple API to interact with WWWJDic Backboor
|
36
34
|
# Entry/API.
|
35
|
+
#
|
37
36
|
# Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
|
38
|
-
# Copyright::
|
37
|
+
# Copyright:: © 2014-2021 Marco Bresciani
|
39
38
|
# License:: GNU General Public License version 3
|
40
39
|
class Splitter
|
41
40
|
# Creates a +Splitter+ object.
|
data/lib/wwwjdic/version.rb
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
#--
|
4
4
|
# wwwjdic
|
5
|
-
#
|
6
|
-
# © 2014 Marco Bresciani
|
7
|
-
# rubocop:enable Style/AsciiComments
|
5
|
+
# © 2014-2021 Marco Bresciani
|
8
6
|
#
|
9
7
|
# This file is part of wwwjdic.
|
10
8
|
#
|
@@ -20,9 +18,17 @@
|
|
20
18
|
#
|
21
19
|
# You should have received a copy of the GNU General Public License
|
22
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
21
|
+
#
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
23
|
+
#
|
24
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
23
25
|
#++
|
24
26
|
|
25
27
|
module WWWJDic
|
28
|
+
# Author:: {Marco Bresciani}[mailto:marcobresciani_1974@libero.it]
|
29
|
+
# Copyright:: © 2014-2021 Marco Bresciani
|
30
|
+
# License:: GNU General Public License version 3
|
31
|
+
|
26
32
|
# Current version number for WWWJDic gem.
|
27
|
-
VERSION = '16.
|
33
|
+
VERSION = '16.1.0'
|
28
34
|
end
|
data/test/test_helper.rb
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
#--
|
4
4
|
# wwwjdic
|
5
|
-
#
|
6
|
-
# © 2014 Marco Bresciani
|
7
|
-
# rubocop:enable Style/AsciiComments
|
5
|
+
# © 2014-2021 Marco Bresciani
|
8
6
|
#
|
9
7
|
# This file is part of wwwjdic.
|
10
8
|
#
|
@@ -21,7 +19,7 @@
|
|
21
19
|
# You should have received a copy of the GNU General Public License
|
22
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
23
21
|
#
|
24
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
25
23
|
#
|
26
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
27
25
|
#++
|
data/test/test_wwwjdic.rb
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
#--
|
4
4
|
# wwwjdic
|
5
|
-
#
|
6
|
-
# © 2014 Marco Bresciani
|
7
|
-
# rubocop:enable Style/AsciiComments
|
5
|
+
# © 2014-2021 Marco Bresciani
|
8
6
|
#
|
9
7
|
# This file is part of wwwjdic.
|
10
8
|
#
|
@@ -21,7 +19,7 @@
|
|
21
19
|
# You should have received a copy of the GNU General Public License
|
22
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
23
21
|
#
|
24
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
25
23
|
#
|
26
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
27
25
|
#++
|
data/test/wwwjdic/locales/de.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# wwwjdic
|
3
3
|
# rubocop:disable Style/AsciiComments
|
4
|
-
# © 2014 Marco Bresciani
|
4
|
+
# © 2014-2021 Marco Bresciani
|
5
5
|
# rubocop:enable Style/AsciiComments
|
6
6
|
#
|
7
7
|
# This file is part of wwwjdic.
|
@@ -19,7 +19,7 @@
|
|
19
19
|
# You should have received a copy of the GNU General Public License
|
20
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
21
21
|
#
|
22
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
23
23
|
#
|
24
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
25
25
|
#++
|
data/test/wwwjdic/locales/en.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# wwwjdic
|
3
3
|
# rubocop:disable Style/AsciiComments
|
4
|
-
# © 2014 Marco Bresciani
|
4
|
+
# © 2014-2021 Marco Bresciani
|
5
5
|
# rubocop:enable Style/AsciiComments
|
6
6
|
#
|
7
7
|
# This file is part of wwwjdic.
|
@@ -19,7 +19,7 @@
|
|
19
19
|
# You should have received a copy of the GNU General Public License
|
20
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
21
21
|
#
|
22
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
23
23
|
#
|
24
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
25
25
|
#++
|
data/test/wwwjdic/locales/es.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# wwwjdic
|
3
3
|
# rubocop:disable Style/AsciiComments
|
4
|
-
# © 2014 Marco Bresciani
|
4
|
+
# © 2014-2021 Marco Bresciani
|
5
5
|
# rubocop:enable Style/AsciiComments
|
6
6
|
#
|
7
7
|
# This file is part of wwwjdic.
|
@@ -19,7 +19,7 @@
|
|
19
19
|
# You should have received a copy of the GNU General Public License
|
20
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
21
21
|
#
|
22
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
23
23
|
#
|
24
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
25
25
|
#++
|
data/test/wwwjdic/locales/fr.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# wwwjdic
|
3
3
|
# rubocop:disable Style/AsciiComments
|
4
|
-
# © 2014 Marco Bresciani
|
4
|
+
# © 2014-2021 Marco Bresciani
|
5
5
|
# rubocop:enable Style/AsciiComments
|
6
6
|
#
|
7
7
|
# This file is part of wwwjdic.
|
@@ -19,7 +19,7 @@
|
|
19
19
|
# You should have received a copy of the GNU General Public License
|
20
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
21
21
|
#
|
22
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
23
23
|
#
|
24
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
25
25
|
#++
|
data/test/wwwjdic/locales/hu.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# wwwjdic
|
3
3
|
# rubocop:disable Style/AsciiComments
|
4
|
-
# © 2014 Marco Bresciani
|
4
|
+
# © 2014-2021 Marco Bresciani
|
5
5
|
# rubocop:enable Style/AsciiComments
|
6
6
|
#
|
7
7
|
# This file is part of wwwjdic.
|
@@ -19,7 +19,7 @@
|
|
19
19
|
# You should have received a copy of the GNU General Public License
|
20
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
21
21
|
#
|
22
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
23
23
|
#
|
24
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
25
25
|
#++
|
data/test/wwwjdic/locales/it.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# wwwjdic
|
3
3
|
# rubocop:disable Style/AsciiComments
|
4
|
-
# © 2014 Marco Bresciani
|
4
|
+
# © 2014-2021 Marco Bresciani
|
5
5
|
# rubocop:enable Style/AsciiComments
|
6
6
|
#
|
7
7
|
# This file is part of wwwjdic.
|
@@ -19,7 +19,7 @@
|
|
19
19
|
# You should have received a copy of the GNU General Public License
|
20
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
21
21
|
#
|
22
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
23
23
|
#
|
24
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
25
25
|
#++
|
data/test/wwwjdic/locales/ja.yml
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
#--
|
2
2
|
# wwwjdic
|
3
|
-
# © 2013 新部裕
|
4
3
|
# rubocop:disable Style/AsciiComments
|
5
|
-
# ©
|
4
|
+
# © 2013 新部裕
|
5
|
+
# © 2014-2021 Marco Bresciani
|
6
6
|
# rubocop:enable Style/AsciiComments
|
7
7
|
#
|
8
8
|
# This file is part of wwwjdic.
|
@@ -20,8 +20,8 @@
|
|
20
20
|
# You should have received a copy of the GNU General Public License
|
21
21
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
22
22
|
#
|
23
|
-
# SPDX-FileCopyrightText: 2013
|
24
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
23
|
+
# SPDX-FileCopyrightText: 2013 新部裕
|
24
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
25
25
|
#
|
26
26
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
27
27
|
#++
|
data/test/wwwjdic/locales/nl.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# wwwjdic
|
3
3
|
# rubocop:disable Style/AsciiComments
|
4
|
-
# © 2014 Marco Bresciani
|
4
|
+
# © 2014-2021 Marco Bresciani
|
5
5
|
# rubocop:enable Style/AsciiComments
|
6
6
|
#
|
7
7
|
# This file is part of wwwjdic.
|
@@ -19,7 +19,7 @@
|
|
19
19
|
# You should have received a copy of the GNU General Public License
|
20
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
21
21
|
#
|
22
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
23
23
|
#
|
24
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
25
25
|
#++
|
data/test/wwwjdic/locales/ru.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#--
|
2
2
|
# wwwjdic
|
3
3
|
# rubocop:disable Style/AsciiComments
|
4
|
-
# © 2014 Marco Bresciani
|
4
|
+
# © 2014-2021 Marco Bresciani
|
5
5
|
# rubocop:enable Style/AsciiComments
|
6
6
|
#
|
7
7
|
# This file is part of wwwjdic.
|
@@ -19,7 +19,7 @@
|
|
19
19
|
# You should have received a copy of the GNU General Public License
|
20
20
|
# along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
21
21
|
#
|
22
|
-
# SPDX-FileCopyrightText: 2014 Marco Bresciani
|
22
|
+
# SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
|
23
23
|
#
|
24
24
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
25
25
|
#++
|