Compare commits
No commits in common. "v3" and "2.0.0+2" have entirely different histories.
83
.github/workflows/build.yml
vendored
@ -1,83 +0,0 @@
|
||||
name: Build Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build-web:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Flutter
|
||||
uses: subosito/flutter-action@v2
|
||||
with:
|
||||
channel: stable
|
||||
cache: true
|
||||
- run: flutter pub get
|
||||
- run: flutter build web --release
|
||||
- name: Archive production artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: build-output-web
|
||||
path: build/web
|
||||
build-exe:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Flutter
|
||||
uses: subosito/flutter-action@v2
|
||||
with:
|
||||
channel: stable
|
||||
cache: true
|
||||
- run: flutter pub get
|
||||
- run: flutter build windows
|
||||
- name: Archive production artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: build-output-windows
|
||||
path: build/windows/x64/runner/Release
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Flutter
|
||||
uses: subosito/flutter-action@v2
|
||||
with:
|
||||
channel: stable
|
||||
- run: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y ninja-build libgtk-3-dev
|
||||
sudo apt-get install -y libmpv-dev mpv
|
||||
sudo apt-get install -y libayatana-appindicator3-dev
|
||||
sudo apt-get install -y keybinder-3.0
|
||||
sudo apt-get install -y libnotify-dev
|
||||
sudo apt-get install -y libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev
|
||||
sudo apt-get install -y gstreamer-1.0
|
||||
- run: flutter pub get
|
||||
- run: flutter build linux
|
||||
- name: Archive production artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: build-output-linux
|
||||
path: build/linux/x64/release/bundle
|
||||
- name: Build AppImage
|
||||
run: |
|
||||
rm -r Solian.AppDir | true
|
||||
mkdir Solian.AppDir
|
||||
cp -r build/linux/x64/release/bundle/* Solian.AppDir
|
||||
cp -r buildtools/appimage_config/* Solian.AppDir
|
||||
cp assets/icons/icon-padded.png Solian.AppDir
|
||||
sudo chmod +x buildtools/appimagetool-x86_64.AppImage
|
||||
sudo chmod +x Solian.AppDir/AppRun
|
||||
./buildtools/appimagetool-x86_64.AppImage Solian.AppDir
|
||||
- name: Archive production artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: build-output-linux-appimage
|
||||
path: './*.AppImage*'
|
41
.github/workflows/nightly.yml
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
name: release-nightly
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
|
||||
jobs:
|
||||
build-web:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Flutter
|
||||
uses: subosito/flutter-action@v2
|
||||
with:
|
||||
channel: stable
|
||||
cache: true
|
||||
- run: flutter pub get
|
||||
- run: flutter build web --release
|
||||
- name: Archive production artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: build-output-web
|
||||
path: build/web
|
||||
build-exe:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Flutter
|
||||
uses: subosito/flutter-action@v2
|
||||
with:
|
||||
channel: stable
|
||||
cache: true
|
||||
- run: flutter pub get
|
||||
- run: flutter build windows
|
||||
- name: Archive production artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: build-output-windows
|
||||
path: build/windows/x64/runner/Release
|
3
.gitignore
vendored
@ -43,3 +43,6 @@ app.*.map.json
|
||||
/android/app/debug
|
||||
/android/app/profile
|
||||
/android/app/release
|
||||
|
||||
# FVM Version Cache
|
||||
.fvm/
|
30
.metadata
@ -4,7 +4,7 @@
|
||||
# This file should be version controlled and should not be manually edited.
|
||||
|
||||
version:
|
||||
revision: "ea121f8859e4b13e47a8f845e4586164519588bc"
|
||||
revision: "603104015dd692ea3403755b55d07813d5cf8965"
|
||||
channel: "stable"
|
||||
|
||||
project_type: app
|
||||
@ -13,26 +13,26 @@ project_type: app
|
||||
migration:
|
||||
platforms:
|
||||
- platform: root
|
||||
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
- platform: android
|
||||
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
- platform: ios
|
||||
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
- platform: linux
|
||||
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
- platform: macos
|
||||
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
- platform: web
|
||||
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
- platform: windows
|
||||
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
||||
|
||||
# User provided section
|
||||
|
||||
|
13
.roadsignrc
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"sync": {
|
||||
"region": "solian-next",
|
||||
"configPath": "roadsign.toml"
|
||||
},
|
||||
"deployments": [
|
||||
{
|
||||
"region": "solian-next",
|
||||
"site": "solian-next-web",
|
||||
"path": "build/web"
|
||||
}
|
||||
]
|
||||
}
|
1
.vscode/settings.json
vendored
@ -1 +0,0 @@
|
||||
{}
|
65
README.md
@ -1,63 +1,16 @@
|
||||
# Solar Network
|
||||
# surface
|
||||
|
||||
> [!IMPORTANT]
|
||||
> You're visiting the Solar Network v3 branch, which is the next version and still under active development. **NOT READY FOR USE / PRODUCTION!**
|
||||
|
||||

|
||||
|
||||
Hello there! Welcome to the main repository of the DysonNetwork (also known as the Solar Network). The code here is mainly about the front-end app (also known as Solian). But you can still post issues here to get help and request new features!
|
||||
|
||||
## Server
|
||||
|
||||
The backend of the Solar Network project is located at [Solsynth/DysonNetwork](https://github.com/Solsynth/DysonNetwork)
|
||||
|
||||
## Tech Stack
|
||||
|
||||
For those people who want to know the tech stack of this project, the front-end was built by Flutter, which provides cross-platform ability.
|
||||
The backend was built in .NET and PostgreSQL.
|
||||
|
||||
If you want to contribute to the project, learn more about the [Code of Conduct](./CODE_OF_CONDUCT.md).
|
||||
A new Flutter project.
|
||||
|
||||
## Getting Started
|
||||
|
||||
The content below will lead you to the world of Solar Network.
|
||||
This project is a starting point for a Flutter application.
|
||||
|
||||
### For Normal Users
|
||||
A few resources to get you started if this is your first Flutter project:
|
||||
|
||||
**The v3 Release is not ready, yet.**
|
||||
|
||||
1. Go to the Github Releases page, and download the latest release / pre-release according to your platform.
|
||||
- **What's the difference between stable and pre-release?** The pre-release is untested by the other users and includes the new cutting-edge features, usually the pre-release is the feature drop. At the same time, due to we're not doing the API versioning, some breaking changes may break the stable release, so use the pre-release one instead.
|
||||
2. Create an account on the Solar Network
|
||||
3. Go to your email inbox to confirm your registration
|
||||
4. Start exploring!
|
||||
|
||||
### For Developers
|
||||
|
||||
To make the Solar Network App run in debug mode on your machine, you need to install the flutter development environment, for more environments, head to https://flutter.dev.
|
||||
|
||||
For the Linux platform, you need to install those extra development libs:
|
||||
|
||||
```bash
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y ninja-build libgtk-3-dev
|
||||
sudo apt-get install -y libmpv-dev mpv
|
||||
sudo apt-get install -y libayatana-appindicator3-dev
|
||||
sudo apt-get install -y keybinder-3.0
|
||||
sudo apt-get install -y libnotify-dev
|
||||
sudo apt-get install -y libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev
|
||||
sudo apt-get install -y gstreamer-1.0
|
||||
```
|
||||
|
||||
Then, use the flutter run for the app running in debug mode.
|
||||
|
||||
```bash
|
||||
flutter pub get
|
||||
```
|
||||
|
||||
If you want to build the release version, use the flutter build command. Learn more from the flutter docs.
|
||||
|
||||
```bash
|
||||
flutter build <platform>
|
||||
```
|
||||
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
|
||||
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
|
||||
|
||||
For help getting started with Flutter development, view the
|
||||
[online documentation](https://docs.flutter.dev/), which offers tutorials,
|
||||
samples, guidance on mobile development, and a full API reference.
|
||||
|
@ -24,9 +24,5 @@ linter:
|
||||
# avoid_print: false # Uncomment to disable the `avoid_print` rule
|
||||
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
|
||||
|
||||
analyzer:
|
||||
errors:
|
||||
invalid_annotation_target: ignore
|
||||
deprecated_member_use: ignore
|
||||
# Additional information about this file can be found at
|
||||
# https://dart.dev/guides/language/analysis-options
|
||||
|
1
android/.gitignore
vendored
@ -5,7 +5,6 @@ gradle-wrapper.jar
|
||||
/gradlew.bat
|
||||
/local.properties
|
||||
GeneratedPluginRegistrant.java
|
||||
.cxx/
|
||||
|
||||
# Remember to never publicly share your keystore.
|
||||
# See https://flutter.dev/to/reference-keystore
|
||||
|
44
android/app/build.gradle
Normal file
@ -0,0 +1,44 @@
|
||||
plugins {
|
||||
id "com.android.application"
|
||||
id "kotlin-android"
|
||||
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
|
||||
id "dev.flutter.flutter-gradle-plugin"
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "dev.solsynth.solian"
|
||||
compileSdk = flutter.compileSdkVersion
|
||||
ndkVersion = flutter.ndkVersion
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
kotlinOptions {
|
||||
jvmTarget = JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||
applicationId = "dev.solsynth.solian"
|
||||
// You can update the following values to match your application needs.
|
||||
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
||||
minSdk = flutter.minSdkVersion
|
||||
targetSdk = flutter.targetSdkVersion
|
||||
versionCode = flutter.versionCode
|
||||
versionName = flutter.versionName
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
// TODO: Add your own signing config for the release build.
|
||||
// Signing with the debug keys for now, so `flutter run --release` works.
|
||||
signingConfig = signingConfigs.debug
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
flutter {
|
||||
source = "../.."
|
||||
}
|
@ -1,53 +0,0 @@
|
||||
plugins {
|
||||
id("com.android.application")
|
||||
// START: FlutterFire Configuration
|
||||
id("com.google.gms.google-services")
|
||||
// END: FlutterFire Configuration
|
||||
id("kotlin-android")
|
||||
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
|
||||
id("dev.flutter.flutter-gradle-plugin")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "dev.solsynth.solian"
|
||||
compileSdk = flutter.compileSdkVersion
|
||||
ndkVersion = "29.0.13113456"
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
targetCompatibility = JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
kotlinOptions { jvmTarget = JavaVersion.VERSION_17.toString() }
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "dev.solsynth.solian"
|
||||
// You can update the following values to match your application needs.
|
||||
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
||||
minSdk = 26
|
||||
targetSdk = flutter.targetSdkVersion
|
||||
versionCode = flutter.versionCode
|
||||
versionName = flutter.versionName
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
release {
|
||||
keyAlias = keystoreProperties['keyAlias']
|
||||
keyPassword = keystoreProperties['keyPassword']
|
||||
storeFile = keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
|
||||
storePassword = keystoreProperties['storePassword']
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
signingConfig = signingConfigs.getByName("release")
|
||||
minifyEnabled = true
|
||||
shrinkResources = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
flutter {
|
||||
source = "../.."
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
{
|
||||
"project_info": {
|
||||
"project_number": "961776991058",
|
||||
"project_id": "solian-0x001",
|
||||
"storage_bucket": "solian-0x001.firebasestorage.app"
|
||||
},
|
||||
"client": [
|
||||
{
|
||||
"client_info": {
|
||||
"mobilesdk_app_id": "1:961776991058:android:a8d3f7995b0b8e86f4188b",
|
||||
"android_client_info": {
|
||||
"package_name": "dev.solsynth.solian"
|
||||
}
|
||||
},
|
||||
"oauth_client": [],
|
||||
"api_key": [
|
||||
{
|
||||
"current_key": "AIzaSyDvFNudXYs29uDtcCv6pFR8h5tXBs90FYk"
|
||||
}
|
||||
],
|
||||
"services": {
|
||||
"appinvite_service": {
|
||||
"other_platform_oauth_client": []
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"configuration_version": "1"
|
||||
}
|
@ -1,29 +1,12 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<uses-feature android:name="android.hardware.camera" />
|
||||
<uses-feature android:name="android.hardware.camera.autofocus" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.CAMERA" />
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
||||
<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" />
|
||||
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:maxSdkVersion="30" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||
android:maxSdkVersion="29" />
|
||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
|
||||
|
||||
<application
|
||||
android:label="Solian"
|
||||
android:label="surface"
|
||||
android:name="${applicationName}"
|
||||
android:icon="@mipmap/launcher_icon"
|
||||
android:usesCleartextTraffic="true">
|
||||
android:icon="@mipmap/ic_launcher">
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:exported="true"
|
||||
android:launchMode="singleInstance"
|
||||
android:launchMode="singleTop"
|
||||
android:taskAffinity=""
|
||||
android:theme="@style/LaunchTheme"
|
||||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
||||
@ -38,35 +21,10 @@
|
||||
android:resource="@style/NormalTheme"
|
||||
/>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<category android:name="android.intent.category.LAUNCHER"/>
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<!-- Sign in with Apple -->
|
||||
<activity
|
||||
android:name="com.aboutyou.dart_packages.sign_in_with_apple.SignInWithAppleCallback"
|
||||
android:exported="true"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
|
||||
<data android:scheme="signinwithapple" />
|
||||
<data android:path="callback" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<provider
|
||||
android:name="androidx.core.content.FileProvider"
|
||||
android:authorities="dev.solsynth.solian.provider"
|
||||
android:exported="false"
|
||||
android:grantUriPermissions="true">
|
||||
<meta-data
|
||||
android:name="android.support.FILE_PROVIDER_PATHS"
|
||||
android:resource="@xml/provider_paths" />
|
||||
</provider>
|
||||
<!-- Don't delete the meta-data below.
|
||||
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
||||
<meta-data
|
||||
@ -80,8 +38,8 @@
|
||||
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
|
||||
<queries>
|
||||
<intent>
|
||||
<action android:name="android.intent.action.PROCESS_TEXT" />
|
||||
<data android:mimeType="text/plain" />
|
||||
<action android:name="android.intent.action.PROCESS_TEXT"/>
|
||||
<data android:mimeType="text/plain"/>
|
||||
</intent>
|
||||
</queries>
|
||||
</manifest>
|
BIN
android/app/src/main/ic_launcher-playstore.png
Normal file
After Width: | Height: | Size: 13 KiB |
@ -1,14 +0,0 @@
|
||||
package dev.solsynth.solian
|
||||
|
||||
import io.flutter.embedding.android.FlutterActivity
|
||||
import io.flutter.embedding.engine.FlutterEngine
|
||||
import io.flutter.plugins.sharedpreferences.LegacySharedPreferencesPlugin
|
||||
|
||||
class MainActivity : FlutterActivity()
|
||||
{
|
||||
override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
|
||||
super.configureFlutterEngine(flutterEngine)
|
||||
// https://github.com/flutter/flutter/issues/153075#issuecomment-2693189362
|
||||
flutterEngine.plugins.add(LegacySharedPreferencesPlugin())
|
||||
}
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
package dev.solsynth.solian
|
||||
|
||||
import io.flutter.embedding.android.FlutterActivity
|
||||
|
||||
class MainActivity: FlutterActivity()
|
BIN
android/app/src/main/res/drawable-hdpi/branding.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
android/app/src/main/res/drawable-hdpi/ic_notification.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 33 KiB |
BIN
android/app/src/main/res/drawable-mdpi/branding.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
android/app/src/main/res/drawable-mdpi/ic_notification.png
Normal file
After Width: | Height: | Size: 717 B |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 18 KiB |
BIN
android/app/src/main/res/drawable-night-hdpi/branding.png
Normal file
After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 18 KiB |
BIN
android/app/src/main/res/drawable-night-mdpi/branding.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 69 B After Width: | Height: | Size: 69 B |
@ -6,4 +6,7 @@
|
||||
<item>
|
||||
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||
</item>
|
||||
<item android:bottom="24dp">
|
||||
<bitmap android:gravity="bottom" android:src="@drawable/branding"/>
|
||||
</item>
|
||||
</layer-list>
|
||||
|
BIN
android/app/src/main/res/drawable-night-xhdpi/branding.png
Normal file
After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 25 KiB |
BIN
android/app/src/main/res/drawable-night-xxhdpi/branding.png
Normal file
After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 39 KiB |
BIN
android/app/src/main/res/drawable-night-xxxhdpi/branding.png
Normal file
After Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 69 B After Width: | Height: | Size: 69 B |
@ -6,4 +6,7 @@
|
||||
<item>
|
||||
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||
</item>
|
||||
<item android:bottom="24dp">
|
||||
<bitmap android:gravity="bottom" android:src="@drawable/branding"/>
|
||||
</item>
|
||||
</layer-list>
|
||||
|
Before Width: | Height: | Size: 69 B After Width: | Height: | Size: 69 B |
@ -6,4 +6,7 @@
|
||||
<item>
|
||||
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||
</item>
|
||||
<item android:bottom="24dp">
|
||||
<bitmap android:gravity="bottom" android:src="@drawable/branding"/>
|
||||
</item>
|
||||
</layer-list>
|
||||
|
BIN
android/app/src/main/res/drawable-xhdpi/branding.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
android/app/src/main/res/drawable-xhdpi/ic_notification.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 49 KiB |
BIN
android/app/src/main/res/drawable-xxhdpi/branding.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
android/app/src/main/res/drawable-xxhdpi/ic_notification.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 96 KiB |
BIN
android/app/src/main/res/drawable-xxxhdpi/branding.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
android/app/src/main/res/drawable-xxxhdpi/ic_notification.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 132 KiB |
Before Width: | Height: | Size: 69 B After Width: | Height: | Size: 69 B |
@ -6,4 +6,7 @@
|
||||
<item>
|
||||
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||
</item>
|
||||
<item android:bottom="24dp">
|
||||
<bitmap android:gravity="bottom" android:src="@drawable/branding"/>
|
||||
</item>
|
||||
</layer-list>
|
||||
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<background android:drawable="@color/ic_launcher_background"/>
|
||||
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||
<monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
|
||||
</adaptive-icon>
|
@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
</adaptive-icon>
|
Before Width: | Height: | Size: 544 B After Width: | Height: | Size: 1.5 KiB |
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 442 B After Width: | Height: | Size: 1017 B |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 721 B After Width: | Height: | Size: 2.1 KiB |
BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png
Normal file
After Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 7.7 KiB |
After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 4.8 KiB |
4
android/app/src/main/res/values/colors.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="ic_launcher_background">#FFFFFFFF</color>
|
||||
</resources>
|
@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<paths xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<external-path
|
||||
name="external_files"
|
||||
path="." />
|
||||
</paths>
|
18
android/build.gradle
Normal file
@ -0,0 +1,18 @@
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.buildDir = "../build"
|
||||
subprojects {
|
||||
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
||||
}
|
||||
subprojects {
|
||||
project.evaluationDependsOn(":app")
|
||||
}
|
||||
|
||||
tasks.register("clean", Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
val newBuildDir: Directory = rootProject.layout.buildDirectory.dir("../../build").get()
|
||||
rootProject.layout.buildDirectory.value(newBuildDir)
|
||||
|
||||
subprojects {
|
||||
val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
|
||||
project.layout.buildDirectory.value(newSubprojectBuildDir)
|
||||
}
|
||||
subprojects {
|
||||
project.evaluationDependsOn(":app")
|
||||
}
|
||||
|
||||
tasks.register<Delete>("clean") {
|
||||
delete(rootProject.layout.buildDirectory)
|
||||
}
|
@ -1,3 +1,3 @@
|
||||
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
|
||||
org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
|
||||
android.useAndroidX=true
|
||||
android.enableJetifier=true
|
||||
|
@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
|
||||
|
25
android/settings.gradle
Normal file
@ -0,0 +1,25 @@
|
||||
pluginManagement {
|
||||
def flutterSdkPath = {
|
||||
def properties = new Properties()
|
||||
file("local.properties").withInputStream { properties.load(it) }
|
||||
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
||||
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
||||
return flutterSdkPath
|
||||
}()
|
||||
|
||||
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
||||
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
||||
id "com.android.application" version "8.1.0" apply false
|
||||
id "org.jetbrains.kotlin.android" version "1.8.22" apply false
|
||||
}
|
||||
|
||||
include ":app"
|
@ -1,28 +0,0 @@
|
||||
pluginManagement {
|
||||
val flutterSdkPath = run {
|
||||
val properties = java.util.Properties()
|
||||
file("local.properties").inputStream().use { properties.load(it) }
|
||||
val flutterSdkPath = properties.getProperty("flutter.sdk")
|
||||
require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" }
|
||||
flutterSdkPath
|
||||
}
|
||||
|
||||
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
||||
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id("dev.flutter.flutter-plugin-loader") version "1.0.0"
|
||||
id("com.android.application") version "8.10.1" apply false
|
||||
// START: FlutterFire Configuration
|
||||
id("com.google.gms.google-services") version("4.3.15") apply false
|
||||
// END: FlutterFire Configuration
|
||||
id("org.jetbrains.kotlin.android") version "1.8.22" apply false
|
||||
}
|
||||
|
||||
include(":app")
|
@ -1,517 +0,0 @@
|
||||
{
|
||||
"login": "Login",
|
||||
"loginDescription": "Existing user? We're welcome you back!",
|
||||
"forgotPassword": "Forgot password",
|
||||
"loginPickFactor": "Pick a factor",
|
||||
"loginMultiFactor": {
|
||||
"one": "{} step left",
|
||||
"other": "{} steps left"
|
||||
},
|
||||
"loginEnterPassword": "Enter the code",
|
||||
"loginSuccess": "Logged in as {}",
|
||||
"loginGreeting": "Welcome back!",
|
||||
"loginOr": "Or login with\nthird parties",
|
||||
"loginInProgress": "Logging you in...",
|
||||
"username": "Username",
|
||||
"usernameCannotChangeHint": "Username cannot be updated after created.",
|
||||
"usernameLookupHint": "We also take your email address.",
|
||||
"unknown": "Unknown",
|
||||
"termAcceptNextWithAgree": "By continuing, you agree to our terms of services and other terms and conditions.",
|
||||
"termAcceptLink": "Check them out",
|
||||
"loginResetPasswordHint": "Provide your username to receive a password reset link.",
|
||||
"password": "Password",
|
||||
"next": "Next",
|
||||
"createAccount": "Create an Account",
|
||||
"createAccountDescription": "New to here? We got you covered!",
|
||||
"nickname": "Nickname",
|
||||
"email": "Email",
|
||||
"bio": "Bio",
|
||||
"fieldCannotBeEmpty": "This field cannot be empty.",
|
||||
"fieldEmailAddressMustBeValid": "The email address must be valid.",
|
||||
"logout": "Logout",
|
||||
"updateYourProfile": "Profile Settings",
|
||||
"accountBasicInfo": "Basic Info",
|
||||
"accountProfile": "Your Profile",
|
||||
"saveChanges": "Save Changes",
|
||||
"publishers": "Publishers",
|
||||
"managedPublisher": "Managed Publishers",
|
||||
"createPublisher": "Create a Publisher",
|
||||
"createPublisherHint": "To create posts, collections, etc.",
|
||||
"editPublisher": "Edit Publisher",
|
||||
"syncPublisher": "Use Account Data",
|
||||
"syncPublisherRealm": "Use Realm Data",
|
||||
"create": "Create",
|
||||
"update": "Update",
|
||||
"edit": "Edit",
|
||||
"delete": "Delete",
|
||||
"deletePublisher": "Delete Publisher",
|
||||
"deletePublisherHint": "Are you sure to delete this publisher? This will also deleted all the post and collections under this publisher.",
|
||||
"somethingWentWrong": "Something went wrong...",
|
||||
"deletePost": "Delete Post",
|
||||
"deletePostHint": "Are you sure to delete this post?",
|
||||
"copyLink": "Copy Link",
|
||||
"postCreateAccountTitle": "Thanks for joining!",
|
||||
"postCreateAccountNext": "What's next?",
|
||||
"postCreateAccountNext1": "Go to your email inbox and receive the account activation email.",
|
||||
"postCreateAccountNext2": "Log in to your account and start exploring the Solar Network!",
|
||||
"postPlaceholder": "What's on your mind?",
|
||||
"publishersEmpty": "No publishers yet",
|
||||
"publishersEmptyDescription": "You can need to create a publisher to start publishing your posts.",
|
||||
"authFactorPassword": "Password",
|
||||
"authFactorPasswordDescription": "The password you set when you registered.",
|
||||
"authFactorEmail": "Email verification code",
|
||||
"authFactorEmailDescription": "An one-time code sent to the email address you set when you registered.",
|
||||
"authFactorTOTP": "Time-based OTP",
|
||||
"authFactorTOTPDescription": "A one-time code generated by a TOTP authenticator such as Google Authenticator or Authy.",
|
||||
"authFactorInAppNotify": "In-app notification",
|
||||
"authFactorInAppNotifyDescription": "A one-time code sent via in-app notification.",
|
||||
"authFactorPin": "Pin Code",
|
||||
"authFactorPinDescription": "It consists of 6 digits. It cannot be used to log in. When performing some dangerous operations, the system will ask you to enter this PIN for confirmation.",
|
||||
"realms": "Realms",
|
||||
"createRealm": "Create a Realm",
|
||||
"createRealmHint": "Meet friends with same interests, build communities, and more.",
|
||||
"editRealm": "Edit Realm",
|
||||
"deleteRealm": "Delete Realm",
|
||||
"deleteRealmHint": "Are you sure to delete this realm? This will also deleted all the channels, publishers, and posts under this realm.",
|
||||
"explore": "Explore",
|
||||
"exploreFilterSubscriptions": "Subscriptions",
|
||||
"exploreFilterFriends": "Friends",
|
||||
"account": "Account",
|
||||
"name": "Name",
|
||||
"slug": "Slug",
|
||||
"slugHint": "The slug will be used in the URL to access this resource, it should be unique and URL safe.",
|
||||
"createChatRoom": "Create a Room",
|
||||
"editChatRoom": "Edit Room",
|
||||
"deleteChatRoom": "Delete Room",
|
||||
"deleteChatRoomHint": "Are you sure to delete this room? This action cannot be undone.",
|
||||
"chat": "Chat",
|
||||
"chatTabAll": "All",
|
||||
"chatTabDirect": "Direct Messages",
|
||||
"chatTabGroup": "Group Chats",
|
||||
"chatMessageHint": "Message in {}",
|
||||
"chatDirectMessageHint": "Message to {}",
|
||||
"directMessage": "Direct Message",
|
||||
"loading": "Loading...",
|
||||
"descriptionNone": "No description yet.",
|
||||
"invites": "Invites",
|
||||
"invitesEmpty": "No invites yet, such a lonely person...",
|
||||
"members": {
|
||||
"one": "{} member",
|
||||
"other": "{} members"
|
||||
},
|
||||
"permissionOwner": "Owner",
|
||||
"permissionModerator": "Moderator",
|
||||
"permissionMember": "Member",
|
||||
"reply": "Reply",
|
||||
"repliesCount": {
|
||||
"zero": "No reply",
|
||||
"one": "{} reply",
|
||||
"other": "{} replies"
|
||||
},
|
||||
"forward": "Forward",
|
||||
"repliedTo": "Replied to",
|
||||
"forwarded": "Forwarded",
|
||||
"hasAttachments": {
|
||||
"one": "{} attachment",
|
||||
"other": "{} attachments"
|
||||
},
|
||||
"postHasAttachments": {
|
||||
"one": "{} attachment",
|
||||
"other": "{} attachments"
|
||||
},
|
||||
"edited": "Edited",
|
||||
"addVideo": "Add video",
|
||||
"addPhoto": "Add photo",
|
||||
"addFile": "Add file",
|
||||
"createDirectMessage": "Send new DM",
|
||||
"gotoDirectMessage": "Go to DM",
|
||||
"react": "React",
|
||||
"reactions": {
|
||||
"zero": "Reactions",
|
||||
"one": "{} reaction",
|
||||
"other": "{} reactions"
|
||||
},
|
||||
"reactionPositive": "Postive",
|
||||
"reactionNegative": "Negative",
|
||||
"reactionNeutral": "Neutral",
|
||||
"connectionConnected": "Connected",
|
||||
"connectionDisconnected": "Disconnected",
|
||||
"connectionReconnecting": "Reconnecting",
|
||||
"accountConnections": "Account Connections",
|
||||
"accountConnectionsDescription": "Manage your external account connections",
|
||||
"accountConnectionAdd": "Add Connection",
|
||||
"accountConnectionDelete": "Delete Connection",
|
||||
"accountConnectionDeleteHint": "Are you sure you want to delete this connection? This action cannot be undone.",
|
||||
"accountConnectionsEmpty": "No connections found. Add a connection to get started.",
|
||||
"accountConnectionProvider": "Provider",
|
||||
"accountConnectionProviderHint": "Enter provider name",
|
||||
"accountConnectionIdentifier": "Identifier",
|
||||
"accountConnectionIdentifierHint": "Enter your identifier for this provider",
|
||||
"accountConnectionDescription": "Add a connection to link your account with external services.",
|
||||
"accountConnectionAddSuccess": "Connection added successfully.",
|
||||
"accountConnectionAddError": "Unable to setup connection.",
|
||||
"accountConnectionProviderApple": "Apple",
|
||||
"accountConnectionProviderMicrosoft": "Microsoft",
|
||||
"accountConnectionProviderGoogle": "Google",
|
||||
"accountConnectionProviderGithub": "GitHub",
|
||||
"accountConnectionProviderDiscord": "Discord",
|
||||
"accountConnectionProviderAfdian": "Afdian",
|
||||
"checkIn": "Check In",
|
||||
"checkInNone": "Not checked-in yet",
|
||||
"checkInNoneHint": "Get your fortune tips and daily rewards by checking in.",
|
||||
"checkInResultLevel0": "Wrost Luck",
|
||||
"checkInResultLevel1": "Bad Luck",
|
||||
"checkInResultLevel2": "A Normal Day",
|
||||
"checkInResultLevel3": "Good Luck",
|
||||
"checkInResultLevel4": "Best Luck",
|
||||
"checkInActivityTitle": "{} checked in on {} and got a {}",
|
||||
"eventCalander": "Event Calander",
|
||||
"eventCalanderEmpty": "No events on that day.",
|
||||
"fortuneGraph": "Fortune Trend",
|
||||
"noFortuneData": "No fortune data available for this month.",
|
||||
"creatorHub": "Creator Hub",
|
||||
"creatorHubDescription": "Manage posts, analytics, and more.",
|
||||
"developerPortal": "Developer Portal",
|
||||
"developerPortalDescription": "Build with Solar Network™.",
|
||||
"statusCreateHint": "What's on your mind? Add a status.",
|
||||
"statusCreate": "Add a Status",
|
||||
"statusUpdate": "Update Status",
|
||||
"statusLabel": "Status",
|
||||
"statusAttitude": "Attitude",
|
||||
"attitudePositive": "Positive",
|
||||
"attitudeNeutral": "Neutral",
|
||||
"attitudeNegative": "Negative",
|
||||
"statusInvisible": "Invisible",
|
||||
"statusInvisibleDescription": "Your will be showing as offline to others.",
|
||||
"statusNotDisturb": "Do Not Disturb",
|
||||
"statusNotDisturbDescription": "Push notification will be disabled.",
|
||||
"statusClearTime": "Cleared At",
|
||||
"statusNoAutoClear": "Do not auto clear",
|
||||
"online": "Online",
|
||||
"offline": "Offline",
|
||||
"status": "Status",
|
||||
"statusActivityTitle": "{} is {} {}",
|
||||
"statusActivityEndedTitle": "{} is {} {} until {}",
|
||||
"appSettings": "App Settings",
|
||||
"accountSettings": "Account Settings",
|
||||
"settings": "Settings",
|
||||
"language": "Language",
|
||||
"accountLanguageHint": "This language will be used for email and push notifications.",
|
||||
"settingsDisplayLanguage": "Display Language",
|
||||
"languageFollowSystem": "Follow System",
|
||||
"postsCreatedCount": "Posts",
|
||||
"stickerPacksCreatedCount": "Sticker Packs",
|
||||
"stickersCreatedCount": "Stickers",
|
||||
"upvoteReceived": "Upvotes Recieved",
|
||||
"downvoteReceived": "Downvotes Recieved",
|
||||
"stickerPacks": "Sticker Packs",
|
||||
"createStickerPack": "Create a Sticker Pack",
|
||||
"editStickerPack": "Edit Sticker Pack",
|
||||
"deleteStickerPack": "Delete Sticker Pack",
|
||||
"deleteStickerPackHint": "Are you sure to delete this sticker pack? This action cannot be undone.",
|
||||
"stickerPackPrefix": "Prefix",
|
||||
"stickerPackPrefixHint": "The prefix will be added before each stickers' slug in this pack.",
|
||||
"stickers": "Stickers",
|
||||
"createSticker": "Create a Sticker",
|
||||
"editSticker": "Edit Sticker",
|
||||
"deleteSticker": "Delete Sticker",
|
||||
"deleteStickerHint": "Are you sure to delete this sticker? This action cannot be undone.",
|
||||
"stickerImage": "Image",
|
||||
"stickerSlug": "Slug",
|
||||
"stickerSlugHint": "The slug will be combined with the prefix to form the sticker's unique identifier.",
|
||||
"dataEmpty": "Nothing's here yet.",
|
||||
"pickFile": "Pick a file",
|
||||
"uploading": "Uploading",
|
||||
"uploadingProgress": "Uploading {} of {}",
|
||||
"uploadAll": "Upload All",
|
||||
"stickerCopyPlaceholder": "Copy Placeholder",
|
||||
"realmSelection": "Select a Realm",
|
||||
"individual": "Individual",
|
||||
"firstPostBadgeName": "First Post",
|
||||
"firstPostBadgeDescription": "Created your first post on Solar Network",
|
||||
"popularPostBadgeName": "Popular Post",
|
||||
"popularPostBadgeDescription": "Your post received significant engagement from the community",
|
||||
"viralPostBadgeName": "Viral Post",
|
||||
"viralPostBadgeDescription": "Your post went viral and reached a wide audience",
|
||||
"helpfulCommentBadgeName": "Helpful Comment",
|
||||
"helpfulCommentBadgeDescription": "Your comment was marked as helpful by others",
|
||||
"newcomerBadgeName": "Newcomer",
|
||||
"newcomerBadgeDescription": "Welcome to Solar Network! Start exploring and connecting",
|
||||
"contributorBadgeName": "Contributor",
|
||||
"contributorBadgeDescription": "Actively contributing to the Solar Network community",
|
||||
"expertBadgeName": "Expert",
|
||||
"expertBadgeDescription": "Recognized for your expertise and valuable contributions",
|
||||
"founderBadgeName": "Founder",
|
||||
"founderBadgeDescription": "One of the earliest members of Solar Network",
|
||||
"betaTesterBadgeName": "Beta Tester",
|
||||
"betaTesterBadgeDescription": "Helped test and improve Solar Network during beta",
|
||||
"moderatorBadgeName": "Moderator",
|
||||
"moderatorBadgeDescription": "Helping maintain and moderate the community",
|
||||
"developerBadgeName": "Developer",
|
||||
"developerBadgeDescription": "Contributing to Solar Network's development",
|
||||
"translatorBadgeName": "Translator",
|
||||
"translatorBadgeDescription": "Helping translate Solar Network into different languages",
|
||||
"wallet": "Wallet",
|
||||
"walletCurrencyPoints": "New Solar Points",
|
||||
"walletCurrencyShortPoints": "NSP",
|
||||
"walletCurrencyGolds": "The Solar Dollars",
|
||||
"walletCurrencyShortGolds": "NSD",
|
||||
"retry": "Retry",
|
||||
"creatorHubUnselectedHint": "Pick / create a publisher to get started.",
|
||||
"relationships": "Relationships",
|
||||
"addFriend": "Send a Friend Request",
|
||||
"addFriendShort": "Add as Friend",
|
||||
"addFriendHint": "Add a friend to your relationship list.",
|
||||
"pendingRequest": "Pending",
|
||||
"waitingRequest": "Waiting",
|
||||
"relationshipStatusFriend": "Friend",
|
||||
"relationshipStatusBlocked": "Blocked",
|
||||
"blockUser": "Block User",
|
||||
"unblockUser": "Unblock User",
|
||||
"friendRequestAccepted": "Accepted friend request from {}",
|
||||
"friendRequestDeclined": "Declined friend request from {}",
|
||||
"requestExpiredIn": "Expired in {}",
|
||||
"friendSentRequest": "Sent Friend Requests",
|
||||
"friendSentRequestEmpty": "No sent friend requests",
|
||||
"friendSentRequestHint": {
|
||||
"one": "{} friend request sent",
|
||||
"other": "{} friend requests sent"
|
||||
},
|
||||
"levelingProgress": "Leveling Progress",
|
||||
"levelingProgressExperience": "{} EXP",
|
||||
"levelingProgressLevel": "Level {}",
|
||||
"fileUploadingProgress": "Uploading file #{}: {}%",
|
||||
"removeChatMember": "Remove Chat Room Member",
|
||||
"removeChatMemberHint": "Are you sure to remove this member from the room?",
|
||||
"removeRealmMember": "Remove Realm Member",
|
||||
"removeRealmMemberHint": "Are you sure to remove this member from the realm?",
|
||||
"memberRole": "Member Role",
|
||||
"memberRoleHint": "Greater number has higher permission.",
|
||||
"memberRoleEdit": "Edit role for @{}",
|
||||
"openLinkConfirm": "Leaving the Solar Network",
|
||||
"openLinkConfirmDescription": "You're going to leave the Solar Network and open the link ({}) in your browser. It is not related to Solar Network. Beware of phishing and scams.",
|
||||
"brokenLink": "Unable open link {}... It might be broken or missing uri parts...",
|
||||
"copyToClipboard": "Copy to clipboard",
|
||||
"leaveChatRoom": "Leave Chat Room",
|
||||
"leaveChatRoomHint": "Are you sure to leave this chat room?",
|
||||
"leaveRealm": "Leave Realm",
|
||||
"leaveRealmHint": "Are you sure to leave this realm?",
|
||||
"walletNotFound": "Wallet not found",
|
||||
"walletCreateHint": "You don't have a wallet yet. Create one to start using the Solar Network eWallet.",
|
||||
"walletCreate": "Create a Wallet",
|
||||
"settingsServerUrl": "Server URL",
|
||||
"settingsApplied": "The settings has been applied.",
|
||||
"notifications": "Notifications",
|
||||
"posts": "Posts",
|
||||
"settingsBackgroundImage": "Background Image",
|
||||
"settingsBackgroundImageClear": "Clear Background Image",
|
||||
"settingsBackgroundGenerateColor": "Generate color scheme from Bacground Image",
|
||||
"messageNone": "No content to display",
|
||||
"unreadMessages": {
|
||||
"one": "{} unread message",
|
||||
"other": "{} unread messages"
|
||||
},
|
||||
"chatBreakNone": "None",
|
||||
"settingsRealmCompactView": "Compact Realm View",
|
||||
"settingsMixedFeed": "Mixed Feed",
|
||||
"settingsAutoTranslate": "Auto Translate",
|
||||
"settingsHideBottomNav": "Hide Bottom Navigation",
|
||||
"settingsSoundEffects": "Sound Effects",
|
||||
"settingsAprilFoolFeatures": "April Fool Features",
|
||||
"settingsEnterToSend": "Enter to Send",
|
||||
"settingsTransparentAppBar": "Transparent App Bar",
|
||||
"settingsCustomFonts": "Custom Fonts",
|
||||
"settingsCustomFontsHint": "Custom fonts will be used for all text in the app. Make sure it is installed on your device.",
|
||||
"settingsColorScheme": "Color Scheme",
|
||||
"postTitle": "Title",
|
||||
"postDescription": "Description",
|
||||
"call": "Call",
|
||||
"done": "Done",
|
||||
"loginResetPasswordSent": "Password reset link sent, please check your email inbox.",
|
||||
"accountDeletion": "Delete Account",
|
||||
"accountDeletionHint": "Are you sure to delete your account? If you confirmed, we will send an confirmation email to your primary email address, you can continue the deletion process by follow the insturctions in the email.",
|
||||
"accountDeletionSent": "Account deletion confirmation email sent, please check your email inbox.",
|
||||
"accountSecurityTitle": "Security",
|
||||
"accountDangerZoneTitle": "Danger Zone",
|
||||
"accountPassword": "Password",
|
||||
"accountPasswordDescription": "Change your account password",
|
||||
"accountPasswordChange": "Change Password",
|
||||
"accountPasswordChangeSent": "Password reset link sent, please check your email inbox.",
|
||||
"accountPasswordChangeDescription": "We will send an email to your primary email address to reset your password.",
|
||||
"accountAuthFactor": "Auth factors",
|
||||
"accountAuthFactorDescription": "Multi-factor authentication to ensure safety and convience",
|
||||
"accountDeletionDescription": "Permanently delete your account and all your data",
|
||||
"accountSettingsHelp": "Account Settings Help",
|
||||
"accountSettingsHelpContent": "This page allows you to manage your account security, privacy, and other settings. If you need assistance, please contact support.",
|
||||
"unauthorized": "Unauthorized",
|
||||
"unauthorizedHint": "You're not signed in or session expired, please sign in again.",
|
||||
"publisherBelongsTo": "Belongs to {}",
|
||||
"postContent": "Content",
|
||||
"postSettings": "Settings",
|
||||
"postPublisherUnselected": "Publisher Unspecified",
|
||||
"postVisibility": "Visibility",
|
||||
"postVisibilityPublic": "Public",
|
||||
"postVisibilityFriends": "Friends Only",
|
||||
"postVisibilityUnlisted": "Unlisted",
|
||||
"postVisibilityPrivate": "Private",
|
||||
"postTruncated": "Content truncated, tap to view full post",
|
||||
"copyMessage": "Copy Message",
|
||||
"authFactor": "Authentication Factor",
|
||||
"authFactorDelete": "Delete the Factor",
|
||||
"authFactorDeleteHint": "Are you sure you want to delete this authentication factor? This action cannot be undone.",
|
||||
"authFactorDisable": "Disable the Factor",
|
||||
"authFactorDisableHint": "Are you sure you want to disable this authentication factor? You can enable it again later.",
|
||||
"authFactorEnable": "Enable the Factor",
|
||||
"authFactorEnableHint": "Please enter the code that generated by the factor to enable it.",
|
||||
"authFactorNew": "Create Auth Factor",
|
||||
"authFactorSecret": "Secret",
|
||||
"authFactorSecretHint": "Create an secret for this factor.",
|
||||
"authFactorQrCodeScan": "Scan this QR code with your authenticator app to set up TOTP authentication",
|
||||
"authFactorNoQrCode": "No QR code available for this authentication factor",
|
||||
"cancel": "Cancel",
|
||||
"confirm": "Confirm",
|
||||
"authFactorAdditional": "One more step",
|
||||
"authFactorHint": "Contact method hint",
|
||||
"authFactorHintHelper": "You need provide a part of your contact method and we will send the verification code to that contact method if it matched our records",
|
||||
"authSessions": "Active Sessions",
|
||||
"authSessionsDescription": "See devices you currently logged in.",
|
||||
"authSessionsCount": {
|
||||
"one": "{} session",
|
||||
"other": "{} sessions"
|
||||
},
|
||||
"authDeviceCurrent": "Current device",
|
||||
"lastActiveAt": "Last active at {}",
|
||||
"authDeviceLogout": "Logout",
|
||||
"authDeviceLogoutHint": "Are you sure you want to logout this device? This will also disable the push notification to this device.",
|
||||
"authDeviceEditLabel": "Edit Label",
|
||||
"authDeviceLabelTitle": "Edit Device Label",
|
||||
"authDeviceLabelHint": "Enter a name for this device",
|
||||
"authDeviceSwipeEditHint": "Swipe left to edit label",
|
||||
"authDeviceSwipeLogoutHint": "Swipe right to logout device",
|
||||
"typingHint": {
|
||||
"one": "{} is typing...",
|
||||
"other": "{} are typing..."
|
||||
},
|
||||
"settingsAppearance": "Appearance",
|
||||
"settingsServer": "Server",
|
||||
"settingsBehavior": "Behavior",
|
||||
"settingsDesktop": "Desktop",
|
||||
"settingsKeyboardShortcuts": "Keyboard Shortcuts",
|
||||
"settingsEnterToSendDesktopHint": "Press Enter to send messages, use Shift+Enter for new line.",
|
||||
"settingsHelp": "Settings Help",
|
||||
"settingsHelpContent": "This page allows you to manage your app settings, appearance, and behavior. If you need assistance, please contact support.",
|
||||
"settingsKeyboardShortcutSearch": "Search",
|
||||
"settingsKeyboardShortcutSettings": "Settings",
|
||||
"settingsKeyboardShortcutNewMessage": "New Message",
|
||||
"settingsKeyboardShortcutCloseDialog": "Close Dialog",
|
||||
"close": "Close",
|
||||
"contactMethod": "Contact Method",
|
||||
"contactMethodType": "Contact Type",
|
||||
"contactMethodTypeEmail": "Email",
|
||||
"contactMethodTypePhone": "Phone",
|
||||
"contactMethodTypeAddress": "Address",
|
||||
"contactMethodEmailHint": "Enter your email address",
|
||||
"contactMethodPhoneHint": "Enter your phone number",
|
||||
"contactMethodAddressHint": "Enter your physical address",
|
||||
"contactMethodEmailDescription": "Your email will be used for account recovery and notifications",
|
||||
"contactMethodPhoneDescription": "Your phone number will be used for account recovery and notifications",
|
||||
"contactMethodAddressDescription": "Your physical address will be used for shipping and billing purposes.",
|
||||
"contactMethodVerified": "Verified",
|
||||
"contactMethodUnverified": "Unverified",
|
||||
"contactMethodVerify": "Verify Contact",
|
||||
"contactMethodDelete": "Delete Contact",
|
||||
"contactMethodNew": "New Contact Method",
|
||||
"contactMethodContentEmpty": "Contact content cannot be empty",
|
||||
"contactMethodVerificationSent": "Verification code sent to your contact method",
|
||||
"contactMethodVerificationNeeded": "The contact method is added, but not verified yet. You can verify it by tapping it and select verify.",
|
||||
"accountContactMethod": "Contact Methods",
|
||||
"accountContactMethodDescription": "Manage your contact methods for account recovery and notifications",
|
||||
"authFactorVerificationNeeded": "The auth factor is added, but it is not enabled yet. You can enable it by tapping it and enter the verification code.",
|
||||
"contactMethodPrimary": "Primary",
|
||||
"contactMethodSetPrimary": "Set as Primary",
|
||||
"contactMethodSetPrimaryHint": "Set this contact method as your primary contact method for account recovery and notifications",
|
||||
"contactMethodDeleteHint": "Are you sure to delete this contact method? This action cannot be undone.",
|
||||
"chatNotifyLevel": "Notify Level",
|
||||
"chatNotifyLevelDescription": "Decide how many notifications you will receive.",
|
||||
"chatNotifyLevelAll": "All",
|
||||
"chatNotifyLevelMention": "Mentions",
|
||||
"chatNotifyLevelNone": "None",
|
||||
"chatNotifyLevelUpdated": "The notify level has been updated to {}.",
|
||||
"chatBreak": "Take a Break",
|
||||
"chatBreakDescription": "Set a time, before that time, your notification level will be metions only, to take a break of the current topic they're talking about.",
|
||||
"chatBreakClear": "Clear the break time",
|
||||
"chatBreakHour": "{} break",
|
||||
"chatBreakDay": "{} day break",
|
||||
"chatBreakSet": "Break set for {}",
|
||||
"chatBreakCleared": "Chat break has been cleared.",
|
||||
"chatBreakCustom": "Custom duration",
|
||||
"chatBreakEnterMinutes": "Enter minutes",
|
||||
"firstName": "First Name",
|
||||
"middleName": "Middle Name",
|
||||
"lastName": "Last Name",
|
||||
"gender": "Gender",
|
||||
"pronouns": "Pronouns",
|
||||
"location": "Location",
|
||||
"timeZone": "Time Zone",
|
||||
"birthday": "Birthday",
|
||||
"selectADate": "Select a date",
|
||||
"checkInResultT0": "Worst",
|
||||
"checkInResultT1": "Poor",
|
||||
"checkInResultT2": "Mid",
|
||||
"checkInResultT3": "Good",
|
||||
"checkInResultT4": "Best",
|
||||
"accountProfileView": "View Profile",
|
||||
"unspecified": "Unspecified",
|
||||
"added": "Added",
|
||||
"preview": "Preview",
|
||||
"togglePreview": "Toggle Preview",
|
||||
"subscribe": "Subscribe",
|
||||
"unsubscribe": "Unsubscribe",
|
||||
"paymentVerification": "Payment Verification",
|
||||
"paymentSummary": "Payment Summary",
|
||||
"amount": "Amount",
|
||||
"description": "Description",
|
||||
"pinCode": "PIN Code",
|
||||
"biometric": "Biometric",
|
||||
"enterPinToConfirm": "Enter your 6-digit PIN to confirm payment",
|
||||
"clearPin": "Clear PIN",
|
||||
"useBiometricToConfirm": "Use biometric authentication to confirm payment",
|
||||
"touchSensorToAuthenticate": "Touch the sensor to authenticate",
|
||||
"authenticating": "Authenticating...",
|
||||
"authenticateNow": "Authenticate Now",
|
||||
"processing": "Processing...",
|
||||
"processingPayment": "Processing Payment...",
|
||||
"pleaseWait": "Please wait",
|
||||
"paymentFailed": "Payment failed. Please try again.",
|
||||
"invalidPin": "Invalid PIN. Please try again.",
|
||||
"biometricAuthFailed": "Biometric authentication failed. Please try again.",
|
||||
"paymentSuccess": "Payment completed successfully!",
|
||||
"membershipPurchaseSuccess": "Membership purchased successfully!",
|
||||
"paymentError": "Payment failed: {error}",
|
||||
"usePinInstead": "Use PIN Code",
|
||||
"levelProgress": "Level Progress",
|
||||
"unlockedFeatures": "Unlocked Features",
|
||||
"unlockedFeaturesDescription": "Features unlocked at your current level will be displayed here.",
|
||||
"stellarMembership": "Stellar Membership",
|
||||
"upgradeYourPlan": "Upgrade Your Plan",
|
||||
"chooseYourPlan": "Choose Your Plan",
|
||||
"currentMembership": "Current: {}",
|
||||
"membershipExpires": "Expires: {}",
|
||||
"membershipTierStellar": "Stellar",
|
||||
"membershipTierNova": "Nova",
|
||||
"membershipTierSupernova": "Supernova",
|
||||
"membershipTierUnknown": "Unknown",
|
||||
"membershipPriceStellar": "10 NS$ per month",
|
||||
"membershipPriceNova": "20 NS$ per month",
|
||||
"membershipPriceSupernova": "30 NS$ per month",
|
||||
"membershipFeatureBasic": "Basic features",
|
||||
"membershipFeaturePrioritySupport": "Priority support",
|
||||
"membershipFeatureAdFree": "Ad-free experience",
|
||||
"membershipFeatureAllPrimary": "All Primary features",
|
||||
"membershipFeatureAdvancedCustomization": "Advanced customization",
|
||||
"membershipFeatureEarlyAccess": "Early access",
|
||||
"membershipFeatureAllNova": "All Nova features",
|
||||
"membershipFeatureExclusiveContent": "Exclusive content",
|
||||
"membershipFeatureVipSupport": "VIP support",
|
||||
"membershipCurrentBadge": "CURRENT"
|
||||
}
|
@ -1,323 +0,0 @@
|
||||
{
|
||||
"login": "登录",
|
||||
"loginDescription": "已有用户?我们欢迎您回来!",
|
||||
"forgotPassword": "忘记密码",
|
||||
"loginPickFactor": "选择验证方式",
|
||||
"loginMultiFactor": {
|
||||
"one": "还剩 {} 步",
|
||||
"other": "还剩 {} 步"
|
||||
},
|
||||
"loginEnterPassword": "输入验证码",
|
||||
"loginSuccess": "已登录为 {}",
|
||||
"loginGreeting": "欢迎回来!",
|
||||
"username": "用户名",
|
||||
"usernameCannotChangeHint": "用户名创建后无法更改。",
|
||||
"usernameLookupHint": "您也可以输入电子邮件地址。",
|
||||
"unknown": "未知",
|
||||
"termAcceptNextWithAgree": "继续即表示您同意我们的服务条款及其他条款和条件。",
|
||||
"termAcceptLink": "查看详情",
|
||||
"loginResetPasswordHint": "请提供您的用户名以接收密码重置链接。",
|
||||
"password": "密码",
|
||||
"next": "下一步",
|
||||
"createAccount": "创建账号",
|
||||
"createAccountDescription": "新来乍到?我们随时为您服务!",
|
||||
"nickname": "昵称",
|
||||
"email": "电子邮件",
|
||||
"bio": "个人简介",
|
||||
"fieldCannotBeEmpty": "此字段不能为空。",
|
||||
"fieldEmailAddressMustBeValid": "电子邮件地址必须有效。",
|
||||
"logout": "登出",
|
||||
"updateYourProfile": "编辑个人资料",
|
||||
"accountBasicInfo": "基本信息",
|
||||
"accountProfile": "您的个人资料",
|
||||
"saveChanges": "保存更改",
|
||||
"publishers": "发布者",
|
||||
"managedPublisher": "已管理发布者",
|
||||
"createPublisher": "创建发布者",
|
||||
"createPublisherHint": "用于创建帖子、收藏等。",
|
||||
"editPublisher": "编辑发布者",
|
||||
"syncPublisher": "使用账号数据",
|
||||
"syncPublisherRealm": "使用领域数据",
|
||||
"create": "创建",
|
||||
"update": "更新",
|
||||
"edit": "编辑",
|
||||
"delete": "删除",
|
||||
"deletePublisher": "删除发布者",
|
||||
"deletePublisherHint": "确定要删除此发布者吗?这也会删除此发布者下的所有帖子和收藏。",
|
||||
"somethingWentWrong": "发生了一些错误...",
|
||||
"deletePost": "删除帖子",
|
||||
"deletePostHint": "确定要删除这篇帖子吗?",
|
||||
"copyLink": "复制链接",
|
||||
"postCreateAccountTitle": "感谢您的加入!",
|
||||
"postCreateAccountNext": "下一步?",
|
||||
"postCreateAccountNext1": "前往您的电子邮件收件箱并接收账号激活电子邮件。",
|
||||
"postCreateAccountNext2": "登录您的账号并开始探索 Solar Network !",
|
||||
"postPlaceholder": "在想些什么?",
|
||||
"publishersEmpty": "暂无发布者",
|
||||
"publishersEmptyDescription": "您需要创建一个发布者才能开始发布您的帖子。",
|
||||
"authFactorPassword": "密码",
|
||||
"authFactorPasswordDescription": "您注册时设置的密码。",
|
||||
"authFactorEmail": "电子邮件验证码",
|
||||
"authFactorEmailDescription": "发送到您注册时设置的电子邮件地址的一次性验证码。",
|
||||
"authFactorTOTP": "基于时间的一次性密码 (TOTP)",
|
||||
"authFactorTOTPDescription": "由 TOTP 验证器(例如 Google Authenticator 或 Authy)生成的一次性验证码。",
|
||||
"authFactorInAppNotify": "应用内通知",
|
||||
"authFactorInAppNotifyDescription": "通过应用内通知发送的一次性验证码。",
|
||||
"realms": "领域",
|
||||
"createRealm": "创建领域",
|
||||
"createRealmHint": "结识志同道合的朋友、建立社区等等。",
|
||||
"editRealm": "编辑领域",
|
||||
"deleteRealm": "删除领域",
|
||||
"deleteRealmHint": "确定要删除此领域吗?这也会删除此领域下的所有频道、发布者和帖子。",
|
||||
"explore": "探索",
|
||||
"account": "账号",
|
||||
"name": "名称",
|
||||
"description": "描述",
|
||||
"slug": "别名",
|
||||
"slugHint": "此别名将用于 URL 以访问此资源,它应该独一无二且 URL 安全。",
|
||||
"createChatRoom": "创建聊天室",
|
||||
"editChatRoom": "编辑聊天室",
|
||||
"deleteChatRoom": "删除聊天室",
|
||||
"deleteChatRoomHint": "确定要删除此聊天室吗?此操作无法撤销。",
|
||||
"chat": "聊天",
|
||||
"chatTabAll": "全部",
|
||||
"chatTabDirect": "私人消息",
|
||||
"chatTabGroup": "群组聊天",
|
||||
"chatMessageHint": "在 {} 消息",
|
||||
"chatDirectMessageHint": "消息给 {}",
|
||||
"directMessage": "私人消息",
|
||||
"loading": "载入中...",
|
||||
"descriptionNone": "暂无描述。",
|
||||
"invites": "邀请",
|
||||
"invitesEmpty": "暂无邀请,真是个孤独的人...",
|
||||
"members": {
|
||||
"one": "{} 位成员",
|
||||
"other": "{} 位成员"
|
||||
},
|
||||
"permissionOwner": "所有者",
|
||||
"permissionModerator": "版主",
|
||||
"permissionMember": "成员",
|
||||
"reply": "回复",
|
||||
"forward": "转发",
|
||||
"repliedTo": "回复了",
|
||||
"forwarded": "转发了",
|
||||
"hasAttachments": {
|
||||
"other": "{}个附件"
|
||||
},
|
||||
"postHasAttachments": {
|
||||
"other": "{}个附件"
|
||||
},
|
||||
"edited": "已编辑",
|
||||
"addVideo": "添加视频",
|
||||
"addPhoto": "添加照片",
|
||||
"addFile": "添加文件",
|
||||
"createDirectMessage": "创建新私人消息",
|
||||
"react": "反应",
|
||||
"reactions": {
|
||||
"zero": "反应",
|
||||
"one": "{} 个反应",
|
||||
"other": "{} 个反应"
|
||||
},
|
||||
"reactionPositive": "正面",
|
||||
"reactionNegative": "负面",
|
||||
"reactionNeutral": "中立",
|
||||
"connectionConnected": "已连接",
|
||||
"connectionDisconnected": "已断开连接",
|
||||
"connectionReconnecting": "重新连接中",
|
||||
"checkIn": "签到",
|
||||
"checkInNone": "尚未签到",
|
||||
"checkInNoneHint": "通过签到获取您的财富提示和每日奖励。",
|
||||
"checkInResultLevel0": "最差运气",
|
||||
"checkInResultLevel1": "坏运气",
|
||||
"checkInResultLevel2": "一个普通的日常",
|
||||
"checkInResultLevel3": "好运",
|
||||
"checkInResultLevel4": "最佳运气",
|
||||
"checkInResultLevelShort0": "最差",
|
||||
"checkInResultLevelShort1": "坏",
|
||||
"checkInResultLevelShort2": "普通",
|
||||
"checkInResultLevelShort3": "好",
|
||||
"checkInResultLevelShort4": "最佳",
|
||||
"checkInActivityTitle": "{} 在 {} 签到并获得了 {}",
|
||||
"eventCalander": "活动日历",
|
||||
"eventCalanderEmpty": "该日无活动。",
|
||||
"creatorHub": "创作者中心",
|
||||
"creatorHubDescription": "管理帖子、分析等。",
|
||||
"developerPortal": "开发者入口",
|
||||
"developerPortalDescription": "使用 Solar Network ™ 进行构建。",
|
||||
"statusCreateHint": "您在想些什么?添加状态。",
|
||||
"statusCreate": "添加状态",
|
||||
"statusUpdate": "更新状态",
|
||||
"statusLabel": "状态",
|
||||
"statusAttitude": "态度",
|
||||
"attitudePositive": "正面",
|
||||
"attitudeNeutral": "中立",
|
||||
"attitudeNegative": "负面",
|
||||
"statusInvisible": "隐身",
|
||||
"statusInvisibleDescription": "您将显示为离线状态。",
|
||||
"statusNotDisturb": "请勿打扰",
|
||||
"statusNotDisturbDescription": "推送通知将被禁用。",
|
||||
"statusClearTime": "清除于",
|
||||
"statusNoAutoClear": "不自动清除",
|
||||
"online": "在线",
|
||||
"offline": "离线",
|
||||
"status": "状态",
|
||||
"statusActivityTitle": "{} 正在 {} {}",
|
||||
"statusActivityEndedTitle": "{} 正在 {} {} 直到 {}",
|
||||
"appSettings": "应用设置",
|
||||
"accountSettings": "账号设置",
|
||||
"settings": "设置",
|
||||
"language": "语言",
|
||||
"accountLanguageHint": "此语言将用于电子邮件和推送通知。",
|
||||
"settingsDisplayLanguage": "显示语言",
|
||||
"languageFollowSystem": "跟随系统",
|
||||
"postsCreatedCount": "帖子",
|
||||
"stickerPacksCreatedCount": "贴图包",
|
||||
"stickersCreatedCount": "贴图",
|
||||
"upvoteReceived": "收到的赞",
|
||||
"downvoteReceived": "收到的踩",
|
||||
"stickerPacks": "贴图包",
|
||||
"createStickerPack": "创建贴图包",
|
||||
"editStickerPack": "编辑贴图包",
|
||||
"deleteStickerPack": "删除贴图包",
|
||||
"deleteStickerPackHint": "确定要删除此贴图包吗?此操作无法撤销。",
|
||||
"stickerPackPrefix": "前缀",
|
||||
"stickerPackPrefixHint": "此前缀将添加到此包中每个贴图的别名之前。",
|
||||
"stickers": "贴图",
|
||||
"createSticker": "创建贴图",
|
||||
"editSticker": "编辑贴图",
|
||||
"deleteSticker": "删除贴图",
|
||||
"deleteStickerHint": "确定要删除此贴图吗?此操作无法撤销。",
|
||||
"stickerImage": "图片",
|
||||
"stickerSlug": "别名",
|
||||
"stickerSlugHint": "此别名将与前缀结合形成贴图的唯一标识符。",
|
||||
"dataEmpty": "这里什么都没有。",
|
||||
"pickFile": "选择文件",
|
||||
"uploading": "上传中",
|
||||
"uploadingProgress": "正在上传 {} / {}",
|
||||
"uploadAll": "全部上传",
|
||||
"stickerCopyPlaceholder": "复制占位符",
|
||||
"realmSelection": "选择一个领域",
|
||||
"individual": "个人",
|
||||
"firstPostBadgeName": "首篇帖子",
|
||||
"firstPostBadgeDescription": "在 Solar Network 创建您的首篇帖子",
|
||||
"popularPostBadgeName": "热门帖子",
|
||||
"popularPostBadgeDescription": "您的帖子获得了社区的显著参与",
|
||||
"viralPostBadgeName": "病毒式帖子",
|
||||
"viralPostBadgeDescription": "您的帖子广为流传并触及了广泛的受众",
|
||||
"helpfulCommentBadgeName": "有帮助的评论",
|
||||
"helpfulCommentBadgeDescription": "您的评论被其他人标记为有帮助",
|
||||
"newcomerBadgeName": "新成员",
|
||||
"newcomerBadgeDescription": "欢迎来到 Solar Network !开始探索和连接",
|
||||
"contributorBadgeName": "贡献者",
|
||||
"contributorBadgeDescription": "积极为 Solar Network 社区做出贡献",
|
||||
"expertBadgeName": "专家",
|
||||
"expertBadgeDescription": "因您的专业知识和宝贵贡献而受到认可",
|
||||
"founderBadgeName": "创始人",
|
||||
"founderBadgeDescription": " Solar Network 最早的成员之一",
|
||||
"betaTesterBadgeName": "Beta 测试员",
|
||||
"betaTesterBadgeDescription": "在 Beta 测试期间协助测试和改进 Solar Network ",
|
||||
"moderatorBadgeName": "版主",
|
||||
"moderatorBadgeDescription": "协助维护和管理社区",
|
||||
"developerBadgeName": "开发者",
|
||||
"developerBadgeDescription": "为 Solar Network 的开发做出贡献",
|
||||
"translatorBadgeName": "翻译者",
|
||||
"translatorBadgeDescription": "协助将 Solar Network 翻译成不同语言",
|
||||
"wallet": "钱包",
|
||||
"walletCurrencyPoints": "新太阳点",
|
||||
"walletCurrencyShortPoints": "NSP",
|
||||
"walletCurrencyGolds": "太阳币",
|
||||
"walletCurrencyShortGolds": "TSD",
|
||||
"retry": "重试",
|
||||
"creatorHubUnselectedHint": "选择/创建一个发布者以开始使用。",
|
||||
"relationships": "关系",
|
||||
"addFriend": "发送好友请求",
|
||||
"addFriendHint": "将朋友添加到您的关系列表。",
|
||||
"pendingRequest": "待处理",
|
||||
"waitingRequest": "等待中",
|
||||
"relationshipStatusFriend": "朋友",
|
||||
"relationshipStatusBlocked": "已屏蔽",
|
||||
"blockUser": "屏蔽用户",
|
||||
"unblockUser": "解除屏蔽用户",
|
||||
"friendRequestAccepted": "已接受 {} 的好友请求",
|
||||
"friendRequestDeclined": "已拒绝 {} 的好友请求",
|
||||
"requestExpiredIn": "{} 后过期",
|
||||
"friendSentRequest": "已发送的好友请求",
|
||||
"friendSentRequestEmpty": "暂无发送的好友请求",
|
||||
"friendSentRequestHint": {
|
||||
"one": "已发送 {} 个好友请求",
|
||||
"other": "已发送 {} 个好友请求"
|
||||
},
|
||||
"levelingProgress": "等级进度",
|
||||
"levelingProgressExperience": "{} 经验值",
|
||||
"levelingProgressLevel": "等级 {}",
|
||||
"fileUploadingProgress": "正在上传文件 #{}: {}%",
|
||||
"removeChatMember": "移除聊天室成员",
|
||||
"removeChatMemberHint": "确定要将此成员从聊天室中移除吗?",
|
||||
"removeRealmMember": "移除领域成员",
|
||||
"removeRealmMemberHint": "确定要将此成员从领域中移除吗?",
|
||||
"memberRole": "成员角色",
|
||||
"memberRoleHint": "数字越大权限越高。",
|
||||
"memberRoleEdit": "编辑 @{} 的角色",
|
||||
"openLinkConfirm": "离开 Solar Network ",
|
||||
"openLinkConfirmDescription": "您将离开 Solar Network 并在浏览器中打开链接 ({})。它与 Solar Network 无关。请注意网络钓鱼和诈骗。",
|
||||
"brokenLink": "无法打开链接 {}... 它可能已损坏或缺少 URI 部分...",
|
||||
"copyToClipboard": "复制到剪贴板",
|
||||
"leaveChatRoom": "离开聊天室",
|
||||
"leaveChatRoomHint": "确定要离开此聊天室吗?",
|
||||
"leaveRealm": "离开领域",
|
||||
"leaveRealmHint": "确定要离开此领域吗?",
|
||||
"walletNotFound": "钱包未找到",
|
||||
"walletCreateHint": "您尚未有钱包。创建一个以开始使用 Solar Network 电子钱包。",
|
||||
"walletCreate": "创建钱包",
|
||||
"settingsServerUrl": "服务器 URL",
|
||||
"settingsApplied": "设置已应用。",
|
||||
"notifications": "通知",
|
||||
"posts": "帖子",
|
||||
"settingsBackgroundImage": "背景图片",
|
||||
"settingsBackgroundImageClear": "清除背景图片",
|
||||
"messageNone": "没有内容可显示",
|
||||
"unreadMessages": {
|
||||
"one": "{} 条未读消息",
|
||||
"other": "{} 条未读消息"
|
||||
},
|
||||
"settingsRealmCompactView": "紧凑领域视图",
|
||||
"settingsMixedFeed": "混合动态",
|
||||
"settingsAutoTranslate": "自动翻译",
|
||||
"settingsHideBottomNav": "隐藏底部导航",
|
||||
"settingsSoundEffects": "音效",
|
||||
"settingsAprilFoolFeatures": "愚人节功能",
|
||||
"settingsEnterToSend": "按下 Enter 发送",
|
||||
"postVisibility": "可见性",
|
||||
"postVisibilityPublic": "公开",
|
||||
"postVisibilityFriends": "仅好友可见",
|
||||
"postVisibilityUnlisted": "不公开",
|
||||
"postVisibilityPrivate": "私密",
|
||||
"postTruncated": "内容已截断,点击查看完整帖子",
|
||||
"chatNotifyLevel": "通知级别",
|
||||
"chatNotifyLevelDescription": "决定您将收到多少通知。",
|
||||
"chatNotifyLevelAll": "全部",
|
||||
"chatNotifyLevelMention": "提及",
|
||||
"chatNotifyLevelNone": "无",
|
||||
"chatNotifyLevelUpdated": "通知级别已更新为 {}。",
|
||||
"chatBreak": "暂停聊天",
|
||||
"chatBreakDescription": "设置一个时间,在该时间之前,您的通知级别将仅为提及,以暂时休息当前讨论的话题。",
|
||||
"chatBreakClear": "清除暂停时间",
|
||||
"chatBreakHour": "暂停 {} 分钟",
|
||||
"chatBreakDay": "暂停 {} 天",
|
||||
"chatBreakSet": "已设置暂停 {}",
|
||||
"chatBreakCleared": "聊天暂停已清除。",
|
||||
"chatBreakCustom": "自定义时长",
|
||||
"chatBreakEnterMinutes": "输入分钟数",
|
||||
"chatBreakNone": "无",
|
||||
"checkInResultT0": "大凶",
|
||||
"checkInResultT1": "凶",
|
||||
"checkInResultT2": "中平",
|
||||
"checkInResultT3": "吉",
|
||||
"checkInResultT4": "大吉",
|
||||
"authenticating": "认证中...",
|
||||
"processing": "处理中...",
|
||||
"processingPayment": "处理付款中...",
|
||||
"pleaseWait": "请稍候",
|
||||
"paymentFailed": "付款失败,请重试。",
|
||||
"paymentSuccess": "付款成功完成!"
|
||||
}
|
@ -1,338 +0,0 @@
|
||||
{
|
||||
"login": "登入",
|
||||
"loginDescription": "既有用戶?歡迎您回來!",
|
||||
"forgotPassword": "忘記密碼",
|
||||
"loginPickFactor": "選擇驗證方式",
|
||||
"loginMultiFactor": {
|
||||
"one": "還剩 {} 步驟",
|
||||
"other": "還剩 {} 步驟"
|
||||
},
|
||||
"loginEnterPassword": "輸入驗證碼",
|
||||
"loginSuccess": "已登入為 {}",
|
||||
"loginGreeting": "歡迎回來!",
|
||||
"username": "使用者名稱",
|
||||
"usernameCannotChangeHint": "使用者名稱建立後無法更改。",
|
||||
"usernameLookupHint": "您也可以輸入電子郵件地址。",
|
||||
"unknown": "未知",
|
||||
"termAcceptNextWithAgree": "繼續即表示您同意我們的服務條款及其他條款和條件。",
|
||||
"termAcceptLink": "查看詳情",
|
||||
"loginResetPasswordHint": "請提供您的使用者名稱以接收密碼重設連結。",
|
||||
"password": "密碼",
|
||||
"next": "下一步",
|
||||
"createAccount": "建立帳號",
|
||||
"createAccountDescription": "新來乍到?我們隨時為您服務!",
|
||||
"nickname": "暱稱",
|
||||
"email": "電子郵件",
|
||||
"bio": "個人簡介",
|
||||
"fieldCannotBeEmpty": "此欄位不能為空。",
|
||||
"fieldEmailAddressMustBeValid": "電子郵件地址必須有效。",
|
||||
"logout": "登出",
|
||||
"updateYourProfile": "編輯個人資料",
|
||||
"accountBasicInfo": "基本資料",
|
||||
"accountProfile": "您的個人資料",
|
||||
"saveChanges": "儲存變更",
|
||||
"publishers": "發佈者",
|
||||
"managedPublisher": "已管理發佈者",
|
||||
"createPublisher": "建立發佈者",
|
||||
"createPublisherHint": "用於建立貼文、收藏等。",
|
||||
"editPublisher": "編輯發佈者",
|
||||
"syncPublisher": "使用帳號資料",
|
||||
"syncPublisherRealm": "使用領域資料",
|
||||
"create": "建立",
|
||||
"update": "更新",
|
||||
"edit": "編輯",
|
||||
"delete": "刪除",
|
||||
"deletePublisher": "刪除發佈者",
|
||||
"deletePublisherHint": "確定要刪除此發佈者嗎?這也將刪除此發佈者下的所有貼文和收藏。",
|
||||
"somethingWentWrong": "發生了一些錯誤...",
|
||||
"deletePost": "刪除貼文",
|
||||
"deletePostHint": "確定要刪除這篇貼文嗎?",
|
||||
"copyLink": "複製連結",
|
||||
"postCreateAccountTitle": "感謝您的加入!",
|
||||
"postCreateAccountNext": "下一步?",
|
||||
"postCreateAccountNext1": "前往您的電子郵件收件匣並接收帳號啟用電子郵件。",
|
||||
"postCreateAccountNext2": "登入您的帳號並開始探索 Solar Network !",
|
||||
"postPlaceholder": "在想些什麼?",
|
||||
"publishersEmpty": "尚未有發佈者",
|
||||
"publishersEmptyDescription": "您需要建立一個發佈者才能開始發佈您的貼文。",
|
||||
"authFactorPassword": "密碼",
|
||||
"authFactorPasswordDescription": "您註冊時設定的密碼。",
|
||||
"authFactorEmail": "電子郵件驗證碼",
|
||||
"authFactorEmailDescription": "發送到您註冊時設定的電子郵件地址的一次性驗證碼。",
|
||||
"authFactorTOTP": "時間基於一次性密碼 (TOTP)",
|
||||
"authFactorTOTPDescription": "由 TOTP 驗證器(例如 Google Authenticator 或 Authy)生成的一次性驗證碼。",
|
||||
"authFactorInAppNotify": "應用程式內通知",
|
||||
"authFactorInAppNotifyDescription": "透過應用程式內通知發送的一次性驗證碼。",
|
||||
"realms": "領域",
|
||||
"createRealm": "建立領域",
|
||||
"createRealmHint": "結識志同道合的朋友、建立社群等等。",
|
||||
"editRealm": "編輯領域",
|
||||
"deleteRealm": "刪除領域",
|
||||
"deleteRealmHint": "確定要刪除此領域嗎?這也將刪除該領域下的所有頻道、發佈者和貼文。",
|
||||
"explore": "探索",
|
||||
"account": "帳號",
|
||||
"name": "名稱",
|
||||
"description": "描述",
|
||||
"slug": "代稱",
|
||||
"slugHint": "此代稱將用於 URL 以存取此資源,它應該是獨一無二且 URL 安全的。",
|
||||
"createChatRoom": "建立聊天室",
|
||||
"editChatRoom": "編輯聊天室",
|
||||
"deleteChatRoom": "刪除聊天室",
|
||||
"deleteChatRoomHint": "確定要刪除此聊天室嗎?此操作無法撤銷。",
|
||||
"chat": "聊天",
|
||||
"chatTabAll": "全部",
|
||||
"chatTabDirect": "私人訊息",
|
||||
"chatTabGroup": "群組聊天",
|
||||
"chatMessageHint": "在 {} 訊息",
|
||||
"chatDirectMessageHint": "訊息給 {}",
|
||||
"directMessage": "私人訊息",
|
||||
"loading": "載入中...",
|
||||
"descriptionNone": "尚未有描述。",
|
||||
"invites": "邀請",
|
||||
"invitesEmpty": "尚未有邀請,真是個寂寞的人...",
|
||||
"members": {
|
||||
"one": "{} 位成員",
|
||||
"other": "{} 位成員"
|
||||
},
|
||||
"permissionOwner": "擁有者",
|
||||
"permissionModerator": "版主",
|
||||
"permissionMember": "成員",
|
||||
"reply": "回覆",
|
||||
"forward": "轉發",
|
||||
"repliedTo": "回覆了",
|
||||
"forwarded": "轉發了",
|
||||
"hasAttachments": {
|
||||
"other": "{}個附件"
|
||||
},
|
||||
"postHasAttachments": {
|
||||
"other": "{}個附件"
|
||||
},
|
||||
"edited": "已編輯",
|
||||
"addVideo": "新增影片",
|
||||
"addPhoto": "新增照片",
|
||||
"addFile": "新增檔案",
|
||||
"createDirectMessage": "建立新私人訊息",
|
||||
"react": "反應",
|
||||
"reactions": {
|
||||
"zero": "反應",
|
||||
"one": "{} 個反應",
|
||||
"other": "{} 個反應"
|
||||
},
|
||||
"reactionPositive": "正面",
|
||||
"reactionNegative": "負面",
|
||||
"reactionNeutral": "中立",
|
||||
"connectionConnected": "已連線",
|
||||
"connectionDisconnected": "已中斷連線",
|
||||
"connectionReconnecting": "重新連線中",
|
||||
"checkIn": "簽到",
|
||||
"checkInNone": "尚未簽到",
|
||||
"checkInNoneHint": "透過簽到獲取您的財富提示和每日獎勵。",
|
||||
"checkInResultLevel0": "最差運氣",
|
||||
"checkInResultLevel1": "壞運氣",
|
||||
"checkInResultLevel2": "一個普通的日子",
|
||||
"checkInResultLevel3": "好運",
|
||||
"checkInResultLevel4": "最佳運氣",
|
||||
"checkInResultLevelShort0": "最差",
|
||||
"checkInResultLevelShort1": "壞",
|
||||
"checkInResultLevelShort2": "普通",
|
||||
"checkInResultLevelShort3": "好",
|
||||
"checkInResultLevelShort4": "最佳",
|
||||
"checkInActivityTitle": "{} 在 {} 簽到並獲得了 {}",
|
||||
"eventCalander": "活動日曆",
|
||||
"eventCalanderEmpty": "該日無活動。",
|
||||
"creatorHub": "創作者中心",
|
||||
"creatorHubDescription": "管理貼文、分析等。",
|
||||
"developerPortal": "開發者入口",
|
||||
"developerPortalDescription": "使用 Solar Network ™ 進行建構。",
|
||||
"statusCreateHint": "您在想些什麼?新增狀態。",
|
||||
"statusCreate": "新增狀態",
|
||||
"statusUpdate": "更新狀態",
|
||||
"statusLabel": "狀態",
|
||||
"statusAttitude": "態度",
|
||||
"attitudePositive": "正面",
|
||||
"attitudeNeutral": "中立",
|
||||
"attitudeNegative": "負面",
|
||||
"statusInvisible": "隱身",
|
||||
"statusInvisibleDescription": "您將顯示為離線狀態。",
|
||||
"statusNotDisturb": "勿擾",
|
||||
"statusNotDisturbDescription": "推播通知將被禁用。",
|
||||
"statusClearTime": "清除於",
|
||||
"statusNoAutoClear": "不自動清除",
|
||||
"online": "線上",
|
||||
"offline": "離線",
|
||||
"status": "狀態",
|
||||
"statusActivityTitle": "{} 正在 {} {}",
|
||||
"statusActivityEndedTitle": "{} 正在 {} {} 直到 {}",
|
||||
"appSettings": "應用程式設定",
|
||||
"accountSettings": "帳號設定",
|
||||
"settings": "設定",
|
||||
"language": "語言",
|
||||
"accountLanguageHint": "此語言將用於電子郵件和推播通知。",
|
||||
"settingsDisplayLanguage": "顯示語言",
|
||||
"languageFollowSystem": "跟隨系統",
|
||||
"postsCreatedCount": "貼文",
|
||||
"stickerPacksCreatedCount": "貼圖包",
|
||||
"stickersCreatedCount": "貼圖",
|
||||
"upvoteReceived": "收到的讚",
|
||||
"downvoteReceived": "收到的倒讚",
|
||||
"stickerPacks": "貼圖包",
|
||||
"createStickerPack": "建立貼圖包",
|
||||
"editStickerPack": "編輯貼圖包",
|
||||
"deleteStickerPack": "刪除貼圖包",
|
||||
"deleteStickerPackHint": "確定要刪除此貼圖包嗎?此操作無法撤銷。",
|
||||
"stickerPackPrefix": "前綴",
|
||||
"stickerPackPrefixHint": "此前綴將添加在此包中每個貼圖的代稱之前。",
|
||||
"stickers": "貼圖",
|
||||
"createSticker": "建立貼圖",
|
||||
"editSticker": "編輯貼圖",
|
||||
"deleteSticker": "刪除貼圖",
|
||||
"deleteStickerHint": "確定要刪除此貼圖嗎?此操作無法撤銷。",
|
||||
"stickerImage": "圖片",
|
||||
"stickerSlug": "代稱",
|
||||
"stickerSlugHint": "此代稱將與前綴結合形成貼圖的唯一識別碼。",
|
||||
"dataEmpty": "這裡什麼都沒有。",
|
||||
"pickFile": "選擇檔案",
|
||||
"uploading": "上傳中",
|
||||
"uploadingProgress": "正在上傳 {} / {}",
|
||||
"uploadAll": "全部上傳",
|
||||
"stickerCopyPlaceholder": "複製佔位符",
|
||||
"realmSelection": "選擇一個領域",
|
||||
"individual": "個人",
|
||||
"firstPostBadgeName": "首篇貼文",
|
||||
"firstPostBadgeDescription": "在 Solar Network 建立您的首篇貼文",
|
||||
"popularPostBadgeName": "熱門貼文",
|
||||
"popularPostBadgeDescription": "您的貼文獲得了社群的顯著參與",
|
||||
"viralPostBadgeName": "病毒式貼文",
|
||||
"viralPostBadgeDescription": "您的貼文廣為流傳並觸及了廣泛的受眾",
|
||||
"helpfulCommentBadgeName": "有幫助的評論",
|
||||
"helpfulCommentBadgeDescription": "您的評論被其他人標記為有幫助",
|
||||
"newcomerBadgeName": "新成員",
|
||||
"newcomerBadgeDescription": "歡迎來到 Solar Network !開始探索和聯繫",
|
||||
"contributorBadgeName": "貢獻者",
|
||||
"contributorBadgeDescription": "積極為 Solar Network 社群做出貢獻",
|
||||
"expertBadgeName": "專家",
|
||||
"expertBadgeDescription": "因您的專業知識和寶貴貢獻而受到認可",
|
||||
"founderBadgeName": "創始人",
|
||||
"founderBadgeDescription": " Solar Network 最早的成員之一",
|
||||
"betaTesterBadgeName": "Beta 測試員",
|
||||
"betaTesterBadgeDescription": "在 Beta 測試期間協助測試和改進 Solar Network ",
|
||||
"moderatorBadgeName": "版主",
|
||||
"moderatorBadgeDescription": "協助維護和管理社群",
|
||||
"developerBadgeName": "開發者",
|
||||
"developerBadgeDescription": "為 Solar Network 的開發做出貢獻",
|
||||
"translatorBadgeName": "翻譯者",
|
||||
"translatorBadgeDescription": "協助將 Solar Network 翻譯成不同語言",
|
||||
"wallet": "錢包",
|
||||
"walletCurrencyPoints": "新太陽點",
|
||||
"walletCurrencyShortPoints": "NSP",
|
||||
"walletCurrencyGolds": "太陽幣",
|
||||
"walletCurrencyShortGolds": "TSD",
|
||||
"retry": "重試",
|
||||
"creatorHubUnselectedHint": "選擇/建立一個發佈者以開始使用。",
|
||||
"relationships": "關係",
|
||||
"addFriend": "傳送好友邀請",
|
||||
"addFriendHint": "將朋友新增到您的關係清單。",
|
||||
"pendingRequest": "待處理",
|
||||
"waitingRequest": "等待中",
|
||||
"relationshipStatusFriend": "朋友",
|
||||
"relationshipStatusBlocked": "已封鎖",
|
||||
"blockUser": "封鎖用戶",
|
||||
"unblockUser": "解除封鎖用戶",
|
||||
"friendRequestAccepted": "已接受 {} 的好友邀請",
|
||||
"friendRequestDeclined": "已拒絕 {} 的好友邀請",
|
||||
"requestExpiredIn": "{} 後過期",
|
||||
"friendSentRequest": "已傳送的好友邀請",
|
||||
"friendSentRequestEmpty": "尚未傳送好友邀請",
|
||||
"friendSentRequestHint": {
|
||||
"one": "已傳送 {} 個好友邀請",
|
||||
"other": "已傳送 {} 個好友邀請"
|
||||
},
|
||||
"levelingProgress": "等級進度",
|
||||
"levelingProgressExperience": "{} 經驗值",
|
||||
"levelingProgressLevel": "等級 {}",
|
||||
"fileUploadingProgress": "正在上傳檔案 #{}: {}%",
|
||||
"removeChatMember": "移除聊天室成員",
|
||||
"removeChatMemberHint": "確定要將此成員從聊天室中移除嗎?",
|
||||
"removeRealmMember": "移除領域成員",
|
||||
"removeRealmMemberHint": "確定要將此成員從領域中移除嗎?",
|
||||
"memberRole": "成員角色",
|
||||
"memberRoleHint": "數字越大權限越高。",
|
||||
"memberRoleEdit": "編輯 @{} 的角色",
|
||||
"openLinkConfirm": "離開 Solar Network ",
|
||||
"openLinkConfirmDescription": "您將離開 Solar Network 並在瀏覽器中開啟連結 ({})。它與 Solar Network 無關。請注意網路釣魚和詐騙。",
|
||||
"brokenLink": "無法開啟連結 {}... 它可能已損壞或缺少 URI 部分...",
|
||||
"copyToClipboard": "複製到剪貼簿",
|
||||
"leaveChatRoom": "離開聊天室",
|
||||
"leaveChatRoomHint": "確定要離開此聊天室嗎?",
|
||||
"leaveRealm": "離開領域",
|
||||
"leaveRealmHint": "確定要離開此領域嗎?",
|
||||
"walletNotFound": "找不到錢包",
|
||||
"walletCreateHint": "您尚未有錢包。建立一個以開始使用 Solar Network 電子錢包。",
|
||||
"walletCreate": "建立錢包",
|
||||
"settingsServerUrl": "伺服器 URL",
|
||||
"settingsApplied": "設定已應用。",
|
||||
"notifications": "通知",
|
||||
"posts": "貼文",
|
||||
"settingsBackgroundImage": "背景圖片",
|
||||
"settingsBackgroundImageClear": "清除背景圖片",
|
||||
"messageNone": "沒有內容可顯示",
|
||||
"unreadMessages": {
|
||||
"one": "{} 條未讀訊息",
|
||||
"other": "{} 條未讀訊息"
|
||||
},
|
||||
"settingsRealmCompactView": "精簡領域視圖",
|
||||
"settingsMixedFeed": "混合動態",
|
||||
"settingsAutoTranslate": "自動翻譯",
|
||||
"settingsHideBottomNav": "隱藏底部導航",
|
||||
"settingsSoundEffects": "音效",
|
||||
"settingsAprilFoolFeatures": "愚人節功能",
|
||||
"settingsEnterToSend": "按下 Enter 傳送",
|
||||
"postVisibility": "可見性",
|
||||
"postVisibilityPublic": "公開",
|
||||
"postVisibilityFriends": "僅好友可見",
|
||||
"postVisibilityUnlisted": "不公開",
|
||||
"postVisibilityPrivate": "私密",
|
||||
"chatNotifyLevel": "通知等級",
|
||||
"chatNotifyLevelDescription": "決定您將收到多少通知。",
|
||||
"chatNotifyLevelAll": "全部",
|
||||
"chatNotifyLevelMention": "提及",
|
||||
"chatNotifyLevelNone": "無",
|
||||
"chatNotifyLevelUpdated": "通知等級已更新為 {}。",
|
||||
"chatBreak": "暫停聊天",
|
||||
"chatBreakDescription": "設定一個時間,在該時間之前,您的通知等級將僅為提及,以暫時休息當前討論的話題。",
|
||||
"chatBreakClear": "清除暫停時間",
|
||||
"chatBreakHour": "暫停 {} 分鐘",
|
||||
"chatBreakDay": "暫停 {} 天",
|
||||
"chatBreakSet": "已設定暫停 {}",
|
||||
"chatBreakCleared": "聊天暫停已清除。",
|
||||
"chatBreakCustom": "自訂時長",
|
||||
"chatBreakEnterMinutes": "輸入分鐘數",
|
||||
"chatBreakNone": "無",
|
||||
"paymentError": "付款失敗:{error}",
|
||||
"usePinInstead": "使用密碼",
|
||||
"levelProgress": "等級進度",
|
||||
"unlockedFeatures": "已解鎖功能",
|
||||
"unlockedFeaturesDescription": "您目前等級解鎖的功能將會顯示在此。",
|
||||
"stellarMembership": "星際會員",
|
||||
"upgradeYourPlan": "升級您的方案",
|
||||
"chooseYourPlan": "選擇您的方案",
|
||||
"currentMembership": "目前:{}",
|
||||
"membershipExpires": "到期:{}",
|
||||
"membershipTierStellar": "星際",
|
||||
"membershipTierNova": "新星",
|
||||
"membershipTierSupernova": "超新星",
|
||||
"membershipTierUnknown": "未知",
|
||||
"membershipPriceStellar": "每月 10 星幣",
|
||||
"membershipPriceNova": "每月 20 星幣",
|
||||
"membershipPriceSupernova": "每月 30 星幣",
|
||||
"membershipFeatureBasic": "基本功能",
|
||||
"membershipFeaturePrioritySupport": "優先支援",
|
||||
"membershipFeatureAdFree": "無廣告體驗",
|
||||
"membershipFeatureAllPrimary": "所有主要功能",
|
||||
"membershipFeatureAdvancedCustomization": "進階自訂",
|
||||
"membershipFeatureEarlyAccess": "搶先體驗",
|
||||
"membershipFeatureAllNova": "所有新星功能",
|
||||
"membershipFeatureExclusiveContent": "獨家內容",
|
||||
"membershipFeatureVipSupport": "VIP 支援",
|
||||
"membershipCurrentBadge": "目前"
|
||||
}
|
BIN
assets/icon/branding-dark.png
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
assets/icon/branding-light.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
assets/icon/icon-dark.png
Executable file
After Width: | Height: | Size: 138 KiB |
BIN
assets/icon/icon-light-radius-mac.png
Normal file
After Width: | Height: | Size: 152 KiB |
BIN
assets/icon/icon-light-radius.png
Executable file
After Width: | Height: | Size: 157 KiB |
BIN
assets/icon/icon-light.png
Executable file
After Width: | Height: | Size: 116 KiB |
BIN
assets/icon/icon.png
Executable file
After Width: | Height: | Size: 118 KiB |
Before Width: | Height: | Size: 67 KiB |
Before Width: | Height: | Size: 538 KiB |
Before Width: | Height: | Size: 70 KiB |
@ -1,10 +0,0 @@
|
||||
<svg
|
||||
viewBox="0 0 160 160"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
d="M134.614 98.3714C133.294 97.5334 131.909 97.1697 130.563 97.02C133.724 89.3002 135.736 79.1949 128.887 69.1574C118.406 53.7998 103.38 45.8198 84.2346 45.4382C78.7809 45.3312 72.3517 45.5844 65.5487 45.8554C57.6493 46.1692 47.1369 46.5793 39.9921 45.9873C41.4161 45.2136 42.9326 44.4719 44.2462 43.8336C49.2728 41.384 53.2314 39.4763 51.9214 36.0925C51.2343 34.117 49.1874 33.0794 45.8233 33.0045C38.7426 32.8441 23.4421 36.9447 20.6903 43.8586C19.1418 47.7524 18.8854 55.2689 34.5668 61.9119C41.0174 64.6503 59.237 67.9879 66.2678 68.6867C68.2542 68.8793 69.7743 69.2822 70.9277 69.7101C69.3151 70.7727 67.6597 71.8888 65.9972 73.0298C63.1102 71.3824 58.3897 69.4391 54.8654 71.846C53.502 72.7695 52.7259 74.1316 52.6903 75.6827C52.6405 77.6117 53.8081 79.498 55.1217 81.017C49.9314 85.1639 45.7343 89.1825 44.2462 92.2811C42.5873 96.0893 41.9109 102.322 45.008 108.402C48.9382 116.118 57.6279 121.499 70.8423 124.394C88.1114 128.17 103.027 124.768 112.895 119.566C118.388 116.671 122.286 113.215 124.18 110.131C124.768 110.317 125.355 110.506 125.96 110.695C126.804 110.951 127.648 111.208 128.438 111.49C131.051 112.395 133.942 112.274 136.167 111.151C136.206 111.133 136.248 111.108 136.291 111.087C137.968 110.202 139.175 108.783 139.705 107.072C141.129 102.458 137.064 99.9082 134.614 98.3714ZM64.9999 90.6681C63.4307 90.6681 62.1621 91.9382 62.1621 93.5091C62.1621 95.0836 63.4307 96.3537 64.9999 96.3537C66.5691 96.3537 67.8378 95.0836 67.8378 93.5091C67.8378 91.9382 66.5691 90.6681 64.9999 90.6681ZM91.7568 99.1965C90.1876 99.1965 88.9189 100.467 88.9189 102.038C88.9189 103.612 90.1876 104.882 91.7568 104.882C93.326 104.882 94.5946 103.612 94.5946 102.038C94.5946 100.467 93.326 99.1965 91.7568 99.1965Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.8 KiB |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="814" height="1000">
|
||||
<path d="M788.1 340.9c-5.8 4.5-108.2 62.2-108.2 190.5 0 148.4 130.3 200.9 134.2 202.2-.6 3.2-20.7 71.9-68.7 141.9-42.8 61.6-87.5 123.1-155.5 123.1s-85.5-39.5-164-39.5c-76.5 0-103.7 40.8-165.9 40.8s-105.6-57-155.5-127C46.7 790.7 0 663 0 541.8c0-194.4 126.4-297.5 250.8-297.5 66.1 0 121.2 43.4 162.7 43.4 39.5 0 101.1-46 176.3-46 28.5 0 130.9 2.6 198.3 99.2zm-234-181.5c31.1-36.9 53.1-88.1 53.1-139.3 0-7.1-.6-14.3-1.9-20.1-50.6 1.9-110.8 33.7-147.1 75.8-28.5 32.4-55.1 83.6-55.1 135.5 0 7.8 1.3 15.6 1.9 18.1 3.2.6 8.4 1.3 13.6 1.3 45.4 0 102.5-30.4 135.5-71.3z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 660 B |
@ -1 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Discord-Logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 126.644 96"><path id="Discord-Symbol-Black" d="M81.15,0c-1.2376,2.1973-2.3489,4.4704-3.3591,6.794-9.5975-1.4396-19.3718-1.4396-28.9945,0-.985-2.3236-2.1216-4.5967-3.3591-6.794-9.0166,1.5407-17.8059,4.2431-26.1405,8.0568C2.779,32.5304-1.6914,56.3725.5312,79.8863c9.6732,7.1476,20.5083,12.603,32.0505,16.0884,2.6014-3.4854,4.8998-7.1981,6.8698-11.0623-3.738-1.3891-7.3497-3.1318-10.8098-5.1523.9092-.6567,1.7932-1.3386,2.6519-1.9953,20.281,9.547,43.7696,9.547,64.0758,0,.8587.7072,1.7427,1.3891,2.6519,1.9953-3.4601,2.0457-7.0718,3.7632-10.835,5.1776,1.97,3.8642,4.2683,7.5769,6.8698,11.0623,11.5419-3.4854,22.3769-8.9156,32.0509-16.0631,2.626-27.2771-4.496-50.9172-18.817-71.8548C98.9811,4.2684,90.1918,1.5659,81.1752.0505l-.0252-.0505ZM42.2802,65.4144c-6.2383,0-11.4159-5.6575-11.4159-12.6535s4.9755-12.6788,11.3907-12.6788,11.5169,5.708,11.4159,12.6788c-.101,6.9708-5.026,12.6535-11.3907,12.6535ZM84.3576,65.4144c-6.2637,0-11.3907-5.6575-11.3907-12.6535s4.9755-12.6788,11.3907-12.6788,11.4917,5.708,11.3906,12.6788c-.101,6.9708-5.026,12.6535-11.3906,12.6535Z"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |