Skip to content

Commit c58ea1d

Browse files
Rename 'longbridgeapp' to 'longbridge'.
1 parent 6d9dcc0 commit c58ea1d

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ keywords = [
1515
license = "MIT"
1616
name = "rust-i18n"
1717
readme = "README.md"
18-
repository = "https://github.com/longbridgeapp/rust-i18n"
18+
repository = "https://github.com/longbridge/rust-i18n"
1919
version = "3.1.2"
2020

2121
[workspace.dependencies]

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Rust I18n
22

3-
[![CI](https://github.com/longbridgeapp/rust-i18n/actions/workflows/ci.yml/badge.svg)](https://github.com/longbridgeapp/rust-i18n/actions/workflows/ci.yml) [![Docs](https://docs.rs/rust-i18n/badge.svg)](https://docs.rs/rust-i18n/) [![Crates.io](https://img.shields.io/crates/v/rust-i18n.svg)](https://crates.io/crates/rust-i18n)
3+
[![CI](https://github.com/longbridge/rust-i18n/actions/workflows/ci.yml/badge.svg)](https://github.com/longbridge/rust-i18n/actions/workflows/ci.yml) [![Docs](https://docs.rs/rust-i18n/badge.svg)](https://docs.rs/rust-i18n/) [![Crates.io](https://img.shields.io/crates/v/rust-i18n.svg)](https://crates.io/crates/rust-i18n)
44

55
> 🎯 Let's make I18n things to easy!
66
@@ -305,13 +305,13 @@ Now you call [`t!`] will lookup translates from your own backend first, if not f
305305

306306
## Example
307307

308-
A minimal example of using rust-i18n can be found [here](https://github.com/longbridgeapp/rust-i18n/tree/main/examples).
308+
A minimal example of using rust-i18n can be found [here](https://github.com/longbridge/rust-i18n/tree/main/examples).
309309

310310
## I18n Ally
311311

312312
I18n Ally is a VS Code extension for helping you translate your Rust project.
313313

314-
You can add [i18n-ally-custom-framework.yml](https://github.com/longbridgeapp/rust-i18n/blob/main/.vscode/i18n-ally-custom-framework.yml) to your project `.vscode` directory, and then use I18n Ally can parse `t!` marco to show translate text in VS Code editor.
314+
You can add [i18n-ally-custom-framework.yml](https://github.com/longbridge/rust-i18n/blob/main/.vscode/i18n-ally-custom-framework.yml) to your project `.vscode` directory, and then use I18n Ally can parse `t!` marco to show translate text in VS Code editor.
315315

316316
## Extractor
317317

@@ -389,7 +389,7 @@ Rust I18n command to help you extract all untranslated texts from source code.
389389

390390
It will iterate all Rust files in the source directory and extract all untranslated texts that used `t!` macro. Then it will generate a YAML file and merge with the existing translations.
391391

392-
https://github.com/longbridgeapp/rust-i18n
392+
https://github.com/longbridge/rust-i18n
393393

394394
Usage: cargo i18n [OPTIONS] [-- <SOURCE>]
395395

build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// https://github.com/longbridgeapp/rust-i18n/blob/v0.1.6/crates/support/src/lib.rs#L9
1+
// https://github.com/longbridge/rust-i18n/blob/v0.1.6/crates/support/src/lib.rs#L9
22
fn workdir() -> Option<String> {
33
if let Ok(cargo_manifest_dir) = std::env::var("CARGO_MANIFEST_DIR") {
44
return Some(cargo_manifest_dir);

crates/cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = "2021"
44
license = "MIT"
55
name = "rust-i18n-cli"
66
readme = "../../README.md"
7-
repository = "https://github.com/longbridgeapp/rust-i18n"
7+
repository = "https://github.com/longbridge/rust-i18n"
88
version = "3.1.1"
99

1010
[dependencies]

crates/cli/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ enum CargoCli {
2121
/// that used `t!` macro.
2222
/// Then it will generate a YAML file and merge with the existing translations.
2323
///
24-
/// https://github.com/longbridgeapp/rust-i18n
24+
/// https://github.com/longbridge/rust-i18n
2525
struct I18nArgs {
2626
/// Manually add a translation to the localization file.
2727
///

crates/extract/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = "2021"
44
license = "MIT"
55
name = "rust-i18n-extract"
66
readme = "../../README.md"
7-
repository = "https://github.com/longbridgeapp/rust-i18n"
7+
repository = "https://github.com/longbridge/rust-i18n"
88
version = "3.1.1"
99

1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

crates/macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = "2021"
44
license = "MIT"
55
name = "rust-i18n-macro"
66
readme = "../../README.md"
7-
repository = "https://github.com/longbridgeapp/rust-i18n"
7+
repository = "https://github.com/longbridge/rust-i18n"
88
version = "3.1.2"
99

1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

crates/support/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = "2021"
44
license = "MIT"
55
name = "rust-i18n-support"
66
readme = "../../README.md"
7-
repository = "https://github.com/longbridgeapp/rust-i18n"
7+
repository = "https://github.com/longbridge/rust-i18n"
88
version = "3.1.2"
99

1010
[dependencies]

examples/app-workspace/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
This is a minimal example of [rust-i18n](https://github.com/longbridgeapp/rust-i18n/).
1+
This is a minimal example of [rust-i18n](https://github.com/longbridge/rust-i18n/).

tests/integration_tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ mod tests {
316316
);
317317
}
318318

319-
// https://github.com/longbridgeapp/rust-i18n/issues/87
319+
// https://github.com/longbridge/rust-i18n/issues/87
320320
#[test]
321321
fn test_set_locale_on_initialize() {
322322
rust_i18n::set_locale("zh-CN");

0 commit comments

Comments
 (0)