Skip to content

Commit f8d175e

Browse files
committed
chore: add licenses and copyright notices
1 parent 3f048d0 commit f8d175e

File tree

8 files changed

+481
-4
lines changed

8 files changed

+481
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Welcome!
22

3-
Welcome to the Axolotl language files, first off, thank you for taking the time to consider contributing!
3+
Welcome to the Axolotl locale files, first off, thank you for taking the time to consider contributing!
44
All contributions are extremely helpful and greatly appreciated!
55

66
This document contains a set of guides for contributing to this project.

LICENSE

Lines changed: 395 additions & 0 deletions
Large diffs are not rendered by default.

LICENSE-CODE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Joshua Sing <[email protected]>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Axolotl language files
1+
# Axolotl locale files
22

3-
The language files used by Hypera Development's Axolotl Discord bot.
3+
The locale files used by Hypera Development's Axolotl Discord bot.
44

55
## What is Axolotl?
66

77
Axolotl is the Discord bot used by Hypera Development to run our Discord servers.<br/>
88
In order to make Axolotl super helpful, we have decided to support multiple locales so that users can easily understand
99
and interact with Axolotl.
1010

11-
This module (`hypera.dev/axolotl-lang/v2`) contains the translatable language files used by Axolotl to display messages
11+
This module (`hypera.dev/axolotl-lang/v2`) contains the translatable locale files used by Axolotl to display messages
1212
in Discord.
1313

1414
### Supported languages
@@ -27,6 +27,13 @@ contribute! If you would like to contribute to this project, please see our [con
2727
We are also looking to translate messages into more languages as well! If you know a language that Axolotl does not
2828
currently support, please contribute translations so that we can reach more people who know your language!
2929

30+
### License
31+
32+
The content of the locale files (specifically in [`locales/`](locales)) are available
33+
under [Creative Commons BY 4.0](LICENSE), except where otherwise stated.
34+
35+
The other code in this repository is licensed under the [MIT License](LICENSE-CODE).
36+
3037
## Contact
3138

3239
You can contact us in our [official Discord server](https://discord.hypera.dev/) (fastest) or emailing us

cmd/lang-lint/main.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
* This file is a part of hypera.dev/lib, licensed under the MIT License.
3+
*
4+
* Copyright (c) 2024 Joshua Sing <[email protected]>
5+
*
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the "Software"), to deal
8+
* in the Software without restriction, including without limitation the rights
9+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
* copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in all
14+
* copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
* SOFTWARE.
23+
*/
24+
125
package main
226

327
import (

lang.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
* This file is a part of hypera.dev/axolotl-lang/v2, licensed under the MIT License.
3+
*
4+
* Copyright (c) 2024 Joshua Sing <[email protected]>
5+
*
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the "Software"), to deal
8+
* in the Software without restriction, including without limitation the rights
9+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
* copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in all
14+
* copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
* SOFTWARE.
23+
*/
24+
125
package lang
226

327
import (

locales/en-GB.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[locale]
2+
authors = "Joshua Sing"
3+
14
[generic]
25
error = "Oops!"
36
error-description = """

locales/ja.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
# This will almost definately contain mistakes, please fix any mistakes you find!
66
#
77

8+
[locale]
9+
authors = "Joshua Sing"
10+
811
[generic]
912
error = "おっと"
1013
error-description = """

0 commit comments

Comments
 (0)