Skip to content

Commit d793b77

Browse files
committed
refactor!: move to hypera.dev/axolotl/lang/v2
1 parent 97aa9ae commit d793b77

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Axolotl is the Discord bot used by Hypera Development to run our Discord servers
1111
In order to make Axolotl super helpful, we have decided to support multiple locales so that users can easily understand
1212
and interact with Axolotl.
1313

14-
This module (`hypera.dev/axolotl-lang/v2`) contains the translatable locale files used by Axolotl to display messages
14+
This module (`hypera.dev/axolotl/lang/v2`) contains the translatable locale files used by Axolotl to display messages
1515
in Discord.
1616

1717
### Supported languages

cmd/lang-lint/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is a part of hypera.dev/lib, licensed under the MIT License.
2+
* This file is a part of hypera.dev/axolotl/lang/v2, licensed under the MIT License.
33
*
44
* Copyright (c) 2024 Joshua Sing <[email protected]>
55
*
@@ -28,7 +28,7 @@ import (
2828
"fmt"
2929
"os"
3030

31-
"hypera.dev/axolotl-lang/v2"
31+
"hypera.dev/axolotl/lang/v2"
3232
)
3333

3434
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module hypera.dev/axolotl-lang/v2
1+
module hypera.dev/axolotl/lang/v2
22

33
go 1.22.2
44

lang.go

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is a part of hypera.dev/axolotl-lang/v2, licensed under the MIT License.
2+
* This file is a part of hypera.dev/axolotl/lang/v2, licensed under the MIT License.
33
*
44
* Copyright (c) 2024 Joshua Sing <[email protected]>
55
*
@@ -22,7 +22,12 @@
2222
* SOFTWARE.
2323
*/
2424

25-
package lang
25+
// Package lang provides the locale files used by Hypera Development's Axolotl
26+
// Discord bot.
27+
//
28+
// Note: This module is not designed for use in other software, and use outside
29+
// of Axolotl is not supported.
30+
package lang // import "hypera.dev/axolotl/lang/v2"
2631

2732
import (
2833
"embed"

0 commit comments

Comments
 (0)