Skip to content

Commit

Permalink
refactor!: move to hypera.dev/axolotl/lang/v2
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuasing committed May 4, 2024
1 parent 97aa9ae commit d793b77
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Axolotl is the Discord bot used by Hypera Development to run our Discord servers
In order to make Axolotl super helpful, we have decided to support multiple locales so that users can easily understand
and interact with Axolotl.

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

### Supported languages
Expand Down
4 changes: 2 additions & 2 deletions cmd/lang-lint/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is a part of hypera.dev/lib, licensed under the MIT License.
* This file is a part of hypera.dev/axolotl/lang/v2, licensed under the MIT License.
*
* Copyright (c) 2024 Joshua Sing <[email protected]>
*
Expand Down Expand Up @@ -28,7 +28,7 @@ import (
"fmt"
"os"

"hypera.dev/axolotl-lang/v2"
"hypera.dev/axolotl/lang/v2"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module hypera.dev/axolotl-lang/v2
module hypera.dev/axolotl/lang/v2

go 1.22.2

Expand Down
9 changes: 7 additions & 2 deletions lang.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is a part of hypera.dev/axolotl-lang/v2, licensed under the MIT License.
* This file is a part of hypera.dev/axolotl/lang/v2, licensed under the MIT License.
*
* Copyright (c) 2024 Joshua Sing <[email protected]>
*
Expand All @@ -22,7 +22,12 @@
* SOFTWARE.
*/

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

import (
"embed"
Expand Down

0 comments on commit d793b77

Please sign in to comment.