Compare commits
No commits in common. "2.0.0+2" and "v3" have entirely different histories.
3
.fvmrc
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"flutter": "stable"
|
|
||||||
}
|
|
84
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
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
|
||||||
|
sudo apt-get install -y libsecret-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
@ -1,41 +0,0 @@
|
|||||||
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,6 +43,3 @@ app.*.map.json
|
|||||||
/android/app/debug
|
/android/app/debug
|
||||||
/android/app/profile
|
/android/app/profile
|
||||||
/android/app/release
|
/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.
|
# This file should be version controlled and should not be manually edited.
|
||||||
|
|
||||||
version:
|
version:
|
||||||
revision: "603104015dd692ea3403755b55d07813d5cf8965"
|
revision: "ea121f8859e4b13e47a8f845e4586164519588bc"
|
||||||
channel: "stable"
|
channel: "stable"
|
||||||
|
|
||||||
project_type: app
|
project_type: app
|
||||||
@ -13,26 +13,26 @@ project_type: app
|
|||||||
migration:
|
migration:
|
||||||
platforms:
|
platforms:
|
||||||
- platform: root
|
- platform: root
|
||||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
- platform: android
|
- platform: android
|
||||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
- platform: ios
|
- platform: ios
|
||||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
- platform: linux
|
- platform: linux
|
||||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
- platform: macos
|
- platform: macos
|
||||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
- platform: web
|
- platform: web
|
||||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
- platform: windows
|
- platform: windows
|
||||||
create_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
create_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
base_revision: 603104015dd692ea3403755b55d07813d5cf8965
|
base_revision: ea121f8859e4b13e47a8f845e4586164519588bc
|
||||||
|
|
||||||
# User provided section
|
# User provided section
|
||||||
|
|
||||||
|
13
.roadsignrc
@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"sync": {
|
|
||||||
"region": "solian-next",
|
|
||||||
"configPath": "roadsign.toml"
|
|
||||||
},
|
|
||||||
"deployments": [
|
|
||||||
{
|
|
||||||
"region": "solian-next",
|
|
||||||
"site": "solian-next-web",
|
|
||||||
"path": "build/web"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
1
.vscode/settings.json
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
{}
|
36
CODE_OF_CONDUCT.md
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
# Code of Conduct
|
||||||
|
|
||||||
|
Welcome to the Solar Network / HyperNet project!
|
||||||
|
|
||||||
|
We're welcome for any contribution, from bug reports to feature requests to code contributions.
|
||||||
|
|
||||||
|
To get started, start from fork the repository.
|
||||||
|
|
||||||
|
## Project Structure
|
||||||
|
|
||||||
|
The current repository you're visiting is the front-end project for the Solar Network project. It's built by Flutter and also manages all feature requests and issues reports in this repository.
|
||||||
|
|
||||||
|
The backend of the Solar Network is written in Go and is a microservices app. The code is stored separately in different repositories. They're linked in the README.MD, you can have a look and try to contribute if you want.
|
||||||
|
|
||||||
|
## Commit Messages
|
||||||
|
|
||||||
|
We're using the gitmoji to clarify the reason and changes of the commit. To learn more about gitmoji, visit https://gitmoji.dev
|
||||||
|
|
||||||
|
All the commit message should follow `:[gitmoji]: <commit message>` syntax
|
||||||
|
|
||||||
|
## Translations & Localization
|
||||||
|
|
||||||
|
We're not accepting translation and localization improvements, or fixes on the GitHub or Solsynth Git Repository. If you want to contribute to those, please head to our Crowdin project: https://crowdin.com/project/solian
|
||||||
|
|
||||||
|
## New Features
|
||||||
|
|
||||||
|
To contribute new features, please create an issue or mention the feature you want in our official development chat channel. You should discuss the feature with us and the community first. You shouldn't just create a Pull Request for the feature you want, it will not be merged.
|
||||||
|
|
||||||
|
## Bug Reports / Ask for help
|
||||||
|
|
||||||
|
Read the error message, check for the update (including pre-releases), and wiki before creating an issue. At the same time, be respectful and don't argue with our developers and contributors in the development chat or GitHub issue. Otherwise your issue may got deleted and your Solar Network Account may got a strike.
|
||||||
|
|
||||||
|
-----------
|
||||||
|
|
||||||
|
We appreciate every single commit you contributed. Let's work together and create a better Solar Network!
|
||||||
|
|
661
LICENSE.txt
Normal file
@ -0,0 +1,661 @@
|
|||||||
|
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 19 November 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU Affero General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works, specifically designed to ensure
|
||||||
|
cooperation with the community in the case of network server software.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
our General Public Licenses are intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
Developers that use our General Public Licenses protect your rights
|
||||||
|
with two steps: (1) assert copyright on the software, and (2) offer
|
||||||
|
you this License which gives you legal permission to copy, distribute
|
||||||
|
and/or modify the software.
|
||||||
|
|
||||||
|
A secondary benefit of defending all users' freedom is that
|
||||||
|
improvements made in alternate versions of the program, if they
|
||||||
|
receive widespread use, become available for other developers to
|
||||||
|
incorporate. Many developers of free software are heartened and
|
||||||
|
encouraged by the resulting cooperation. However, in the case of
|
||||||
|
software used on network servers, this result may fail to come about.
|
||||||
|
The GNU General Public License permits making a modified version and
|
||||||
|
letting the public access it on a server without ever releasing its
|
||||||
|
source code to the public.
|
||||||
|
|
||||||
|
The GNU Affero General Public License is designed specifically to
|
||||||
|
ensure that, in such cases, the modified source code becomes available
|
||||||
|
to the community. It requires the operator of a network server to
|
||||||
|
provide the source code of the modified version running there to the
|
||||||
|
users of that server. Therefore, public use of a modified version, on
|
||||||
|
a publicly accessible server, gives the public access to the source
|
||||||
|
code of the modified version.
|
||||||
|
|
||||||
|
An older license, called the Affero General Public License and
|
||||||
|
published by Affero, was designed to accomplish similar goals. This is
|
||||||
|
a different license, not a version of the Affero GPL, but Affero has
|
||||||
|
released a new version of the Affero GPL which permits relicensing under
|
||||||
|
this license.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU Affero General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Remote Network Interaction; Use with the GNU General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, if you modify the
|
||||||
|
Program, your modified version must prominently offer all users
|
||||||
|
interacting with it remotely through a computer network (if your version
|
||||||
|
supports such interaction) an opportunity to receive the Corresponding
|
||||||
|
Source of your version by providing access to the Corresponding Source
|
||||||
|
from a network server at no charge, through some standard or customary
|
||||||
|
means of facilitating copying of software. This Corresponding Source
|
||||||
|
shall include the Corresponding Source for any work covered by version 3
|
||||||
|
of the GNU General Public License that is incorporated pursuant to the
|
||||||
|
following paragraph.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the work with which it is combined will remain governed by version
|
||||||
|
3 of the GNU General Public License.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU Affero General Public License from time to time. Such new versions
|
||||||
|
will be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU Affero General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU Affero General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU Affero General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Affero General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Affero General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Affero General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If your software can interact with users remotely through a computer
|
||||||
|
network, you should also make sure that it provides a way for users to
|
||||||
|
get its source. For example, if your program is a web application, its
|
||||||
|
interface could display a "Source" link that leads users to an archive
|
||||||
|
of the code. There are many ways you could offer source, and different
|
||||||
|
solutions will be better for different programs; see section 13 for the
|
||||||
|
specific requirements.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU AGPL, see
|
||||||
|
<https://www.gnu.org/licenses/>.
|
66
README.md
@ -1,16 +1,64 @@
|
|||||||
# surface
|
# Solar Network
|
||||||
|
|
||||||
A new Flutter project.
|

|
||||||
|
|
||||||
|
[](https://crowdin.com/project/solian)
|
||||||
|
|
||||||
|
*Tap the badge above to help us tranlate!*
|
||||||
|
|
||||||
|
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).
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
This project is a starting point for a Flutter application.
|
The content below will lead you to the world of Solar Network.
|
||||||
|
|
||||||
A few resources to get you started if this is your first Flutter project:
|
### For Normal Users
|
||||||
|
|
||||||
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
|
**The v3 Release is not ready, yet.**
|
||||||
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
|
|
||||||
|
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>
|
||||||
|
```
|
||||||
|
|
||||||
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,5 +24,9 @@ linter:
|
|||||||
# avoid_print: false # Uncomment to disable the `avoid_print` rule
|
# avoid_print: false # Uncomment to disable the `avoid_print` rule
|
||||||
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` 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
|
# Additional information about this file can be found at
|
||||||
# https://dart.dev/guides/language/analysis-options
|
# https://dart.dev/guides/language/analysis-options
|
||||||
|
1
android/.gitignore
vendored
@ -5,6 +5,7 @@ gradle-wrapper.jar
|
|||||||
/gradlew.bat
|
/gradlew.bat
|
||||||
/local.properties
|
/local.properties
|
||||||
GeneratedPluginRegistrant.java
|
GeneratedPluginRegistrant.java
|
||||||
|
.cxx/
|
||||||
|
|
||||||
# Remember to never publicly share your keystore.
|
# Remember to never publicly share your keystore.
|
||||||
# See https://flutter.dev/to/reference-keystore
|
# See https://flutter.dev/to/reference-keystore
|
||||||
|
@ -1,44 +0,0 @@
|
|||||||
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 = "../.."
|
|
||||||
}
|
|
67
android/app/build.gradle.kts
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
import java.util.Properties
|
||||||
|
import java.io.FileInputStream
|
||||||
|
|
||||||
|
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")
|
||||||
|
}
|
||||||
|
|
||||||
|
val keystoreProperties = Properties()
|
||||||
|
val keystorePropertiesFile = rootProject.file("key.properties")
|
||||||
|
if (keystorePropertiesFile.exists()) {
|
||||||
|
keystoreProperties.load(FileInputStream(keystorePropertiesFile))
|
||||||
|
}
|
||||||
|
|
||||||
|
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 {
|
||||||
|
create("release") {
|
||||||
|
keyAlias = keystoreProperties["keyAlias"] as String
|
||||||
|
keyPassword = keystoreProperties["keyPassword"] as String
|
||||||
|
storeFile = keystoreProperties["storeFile"]?.let { file(it) }
|
||||||
|
storePassword = keystoreProperties["storePassword"] as String
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
signingConfig = signingConfigs.getByName("release")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation("com.google.android.material:material:1.12.0")
|
||||||
|
implementation("com.github.bumptech.glide:glide:4.16.0")
|
||||||
|
implementation("com.squareup.okhttp3:okhttp:4.12.0")
|
||||||
|
implementation("com.google.firebase:firebase-messaging-ktx")
|
||||||
|
}
|
||||||
|
|
||||||
|
flutter {
|
||||||
|
source = "../.."
|
||||||
|
}
|
29
android/app/google-services.json
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"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,12 +1,29 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
<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
|
<application
|
||||||
android:label="surface"
|
android:label="Solian"
|
||||||
android:name="${applicationName}"
|
android:name="${applicationName}"
|
||||||
android:icon="@mipmap/ic_launcher">
|
android:icon="@mipmap/launcher_icon"
|
||||||
|
android:usesCleartextTraffic="true">
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:launchMode="singleTop"
|
android:launchMode="singleTask"
|
||||||
android:taskAffinity=""
|
android:taskAffinity=""
|
||||||
android:theme="@style/LaunchTheme"
|
android:theme="@style/LaunchTheme"
|
||||||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
||||||
@ -21,10 +38,94 @@
|
|||||||
android:resource="@style/NormalTheme"
|
android:resource="@style/NormalTheme"
|
||||||
/>
|
/>
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN"/>
|
<action android:name="android.intent.action.MAIN" />
|
||||||
<category android:name="android.intent.category.LAUNCHER"/>
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
<!-- Deeplinking -->
|
||||||
|
<intent-filter android:autoVerify="true">
|
||||||
|
<action android:name="android.intent.action.VIEW" />
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<category android:name="android.intent.category.BROWSABLE" />
|
||||||
|
<data android:scheme="http" android:host="solian.app" />
|
||||||
|
<data android:scheme="https" />
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
<!-- Share Intent Filters -->
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.SEND" />
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<data android:mimeType="image/*" />
|
||||||
|
</intent-filter>
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<data android:mimeType="image/*" />
|
||||||
|
</intent-filter>
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.SEND" />
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<data android:mimeType="video/*" />
|
||||||
|
</intent-filter>
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<data android:mimeType="video/*" />
|
||||||
|
</intent-filter>
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.SEND" />
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<data android:mimeType="text/*" />
|
||||||
|
</intent-filter>
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.SEND" />
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<data android:mimeType="application/*" />
|
||||||
|
</intent-filter>
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
||||||
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
|
<data android:mimeType="application/*" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</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>
|
||||||
|
|
||||||
|
<receiver
|
||||||
|
android:name=".receiver.ReplyReceiver"
|
||||||
|
android:enabled="true"
|
||||||
|
android:exported="true" />
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name=".service.MessagingService"
|
||||||
|
android:exported="false">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
||||||
|
</intent-filter>
|
||||||
|
</service>
|
||||||
|
|
||||||
|
<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.
|
<!-- Don't delete the meta-data below.
|
||||||
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
||||||
<meta-data
|
<meta-data
|
||||||
@ -38,8 +139,8 @@
|
|||||||
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
|
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
|
||||||
<queries>
|
<queries>
|
||||||
<intent>
|
<intent>
|
||||||
<action android:name="android.intent.action.PROCESS_TEXT"/>
|
<action android:name="android.intent.action.PROCESS_TEXT" />
|
||||||
<data android:mimeType="text/plain"/>
|
<data android:mimeType="text/plain" />
|
||||||
</intent>
|
</intent>
|
||||||
</queries>
|
</queries>
|
||||||
</manifest>
|
</manifest>
|
Before ![]() (image error) Size: 13 KiB |
@ -1,5 +0,0 @@
|
|||||||
package dev.solsynth.solian
|
|
||||||
|
|
||||||
import io.flutter.embedding.android.FlutterActivity
|
|
||||||
|
|
||||||
class MainActivity: FlutterActivity()
|
|
@ -0,0 +1,39 @@
|
|||||||
|
package dev.solsynth.solian
|
||||||
|
|
||||||
|
import android.content.Intent
|
||||||
|
import io.flutter.embedding.android.FlutterActivity
|
||||||
|
import io.flutter.embedding.engine.FlutterEngine
|
||||||
|
import io.flutter.plugin.common.MethodChannel
|
||||||
|
import io.flutter.plugins.sharedpreferences.LegacySharedPreferencesPlugin
|
||||||
|
|
||||||
|
class MainActivity : FlutterActivity()
|
||||||
|
{
|
||||||
|
private val CHANNEL = "dev.solsynth.solian/notifications"
|
||||||
|
|
||||||
|
override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
|
||||||
|
super.configureFlutterEngine(flutterEngine)
|
||||||
|
// https://github.com/flutter/flutter/issues/153075#issuecomment-2693189362
|
||||||
|
flutterEngine.plugins.add(LegacySharedPreferencesPlugin())
|
||||||
|
|
||||||
|
MethodChannel(flutterEngine.dartExecutor.binaryMessenger, CHANNEL).setMethodCallHandler { call, result ->
|
||||||
|
if (call.method == "initialLink") {
|
||||||
|
val roomId = intent.getStringExtra("room_id")
|
||||||
|
if (roomId != null) {
|
||||||
|
result.success("/rooms/$roomId")
|
||||||
|
} else {
|
||||||
|
result.success(null)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
result.notImplemented()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onNewIntent(intent: Intent) {
|
||||||
|
super.onNewIntent(intent)
|
||||||
|
val roomId = intent.getStringExtra("room_id")
|
||||||
|
if (roomId != null) {
|
||||||
|
MethodChannel(flutterEngine!!.dartExecutor.binaryMessenger, CHANNEL).invokeMethod("newLink", "/rooms/$roomId")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,47 @@
|
|||||||
|
package dev.solsynth.solian.network
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.SharedPreferences
|
||||||
|
import okhttp3.Call
|
||||||
|
import okhttp3.Callback
|
||||||
|
import okhttp3.MediaType.Companion.toMediaType
|
||||||
|
import okhttp3.OkHttpClient
|
||||||
|
import okhttp3.Request
|
||||||
|
import okhttp3.RequestBody.Companion.toRequestBody
|
||||||
|
import okhttp3.Response
|
||||||
|
import org.json.JSONObject
|
||||||
|
import java.io.IOException
|
||||||
|
|
||||||
|
class ApiClient(private val context: Context) {
|
||||||
|
private val client = OkHttpClient()
|
||||||
|
private val sharedPreferences: SharedPreferences = context.getSharedPreferences("FlutterSharedPreferences", Context.MODE_PRIVATE)
|
||||||
|
|
||||||
|
fun sendMessage(roomId: String, message: String, replyTo: String, callback: (Boolean) -> Unit) {
|
||||||
|
val token = sharedPreferences.getString("flutter.token", null)
|
||||||
|
if (token == null) {
|
||||||
|
callback(false)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
val json = JSONObject().apply {
|
||||||
|
put("content", message)
|
||||||
|
put("reply_to", replyTo)
|
||||||
|
}
|
||||||
|
val body = json.toString().toRequestBody("application/json; charset=utf-8".toMediaType())
|
||||||
|
val request = Request.Builder()
|
||||||
|
.url("https://solian.dev/api/rooms/$roomId/messages")
|
||||||
|
.header("Authorization", "Bearer $token")
|
||||||
|
.post(body)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
client.newCall(request).enqueue(object : Callback {
|
||||||
|
override fun onFailure(call: Call, e: IOException) {
|
||||||
|
callback(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onResponse(call: Call, response: Response) {
|
||||||
|
callback(response.isSuccessful)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package dev.solsynth.solian.receiver
|
||||||
|
|
||||||
|
import android.app.NotificationManager
|
||||||
|
import android.content.BroadcastReceiver
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import androidx.core.app.RemoteInput
|
||||||
|
import dev.solsynth.solian.network.ApiClient
|
||||||
|
|
||||||
|
class ReplyReceiver : BroadcastReceiver() {
|
||||||
|
override fun onReceive(context: Context, intent: Intent) {
|
||||||
|
val remoteInput = RemoteInput.getResultsFromIntent(intent)
|
||||||
|
if (remoteInput != null) {
|
||||||
|
val replyText = remoteInput.getCharSequence("key_text_reply").toString()
|
||||||
|
val roomId = intent.getStringExtra("room_id")
|
||||||
|
val messageId = intent.getStringExtra("message_id")
|
||||||
|
val notificationId = intent.getIntExtra("notification_id", 0)
|
||||||
|
|
||||||
|
if (roomId != null && messageId != null) {
|
||||||
|
ApiClient(context).sendMessage(roomId, replyText, messageId) {
|
||||||
|
val notificationManager = context.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
|
||||||
|
notificationManager.cancel(notificationId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,102 @@
|
|||||||
|
package dev.solsynth.solian.service
|
||||||
|
|
||||||
|
import android.app.PendingIntent
|
||||||
|
import android.content.Intent
|
||||||
|
import android.graphics.Bitmap
|
||||||
|
import android.graphics.drawable.Drawable
|
||||||
|
import android.os.Build
|
||||||
|
import androidx.core.app.NotificationCompat
|
||||||
|
import androidx.core.app.NotificationManagerCompat
|
||||||
|
import androidx.core.app.RemoteInput
|
||||||
|
import com.bumptech.glide.Glide
|
||||||
|
import com.bumptech.glide.request.target.CustomTarget
|
||||||
|
import com.bumptech.glide.request.transition.Transition
|
||||||
|
import com.google.firebase.messaging.FirebaseMessagingService
|
||||||
|
import com.google.firebase.messaging.RemoteMessage
|
||||||
|
import dev.solsynth.solian.MainActivity
|
||||||
|
import dev.solsynth.solian.receiver.ReplyReceiver
|
||||||
|
import org.json.JSONObject
|
||||||
|
|
||||||
|
class MessagingService: FirebaseMessagingService() {
|
||||||
|
override fun onMessageReceived(remoteMessage: RemoteMessage) {
|
||||||
|
val type = remoteMessage.data["type"]
|
||||||
|
if (type == "messages.new") {
|
||||||
|
handleMessageNotification(remoteMessage)
|
||||||
|
} else {
|
||||||
|
// Handle other notification types
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun handleMessageNotification(remoteMessage: RemoteMessage) {
|
||||||
|
val data = remoteMessage.data
|
||||||
|
val metaString = data["meta"] ?: return
|
||||||
|
val meta = JSONObject(metaString)
|
||||||
|
|
||||||
|
val pfp = meta.optString("pfp", null)
|
||||||
|
val roomId = meta.optString("room_id", null)
|
||||||
|
val messageId = meta.optString("message_id", null)
|
||||||
|
|
||||||
|
val notificationId = System.currentTimeMillis().toInt()
|
||||||
|
|
||||||
|
val replyLabel = "Reply"
|
||||||
|
val remoteInput = RemoteInput.Builder("key_text_reply")
|
||||||
|
.setLabel(replyLabel)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
val replyIntent = Intent(this, ReplyReceiver::class.java).apply {
|
||||||
|
putExtra("room_id", roomId)
|
||||||
|
putExtra("message_id", messageId)
|
||||||
|
putExtra("notification_id", notificationId)
|
||||||
|
}
|
||||||
|
|
||||||
|
val pendingIntentFlags = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
|
||||||
|
PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
|
||||||
|
} else {
|
||||||
|
PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
|
}
|
||||||
|
|
||||||
|
val replyPendingIntent = PendingIntent.getBroadcast(
|
||||||
|
applicationContext,
|
||||||
|
notificationId,
|
||||||
|
replyIntent,
|
||||||
|
pendingIntentFlags
|
||||||
|
)
|
||||||
|
|
||||||
|
val action = NotificationCompat.Action.Builder(
|
||||||
|
android.R.drawable.ic_menu_send,
|
||||||
|
replyLabel,
|
||||||
|
replyPendingIntent
|
||||||
|
)
|
||||||
|
.addRemoteInput(remoteInput)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
val intent = Intent(this, MainActivity::class.java)
|
||||||
|
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
|
||||||
|
intent.putExtra("room_id", roomId)
|
||||||
|
val pendingIntent = PendingIntent.getActivity(this, 0, intent, pendingIntentFlags)
|
||||||
|
|
||||||
|
val notificationBuilder = NotificationCompat.Builder(this, "messages")
|
||||||
|
.setSmallIcon(android.R.drawable.ic_dialog_info)
|
||||||
|
.setContentTitle(remoteMessage.notification?.title)
|
||||||
|
.setContentText(remoteMessage.notification?.body)
|
||||||
|
.setPriority(NotificationCompat.PRIORITY_HIGH)
|
||||||
|
.setContentIntent(pendingIntent)
|
||||||
|
.addAction(action)
|
||||||
|
|
||||||
|
if (pfp != null) {
|
||||||
|
Glide.with(applicationContext)
|
||||||
|
.asBitmap()
|
||||||
|
.load(pfp)
|
||||||
|
.into(object : CustomTarget<Bitmap>() {
|
||||||
|
override fun onResourceReady(resource: Bitmap, transition: Transition<in Bitmap>?) {
|
||||||
|
notificationBuilder.setLargeIcon(resource)
|
||||||
|
NotificationManagerCompat.from(applicationContext).notify(notificationId, notificationBuilder.build())
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onLoadCleared(placeholder: Drawable?) {}
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
NotificationManagerCompat.from(this).notify(notificationId, notificationBuilder.build())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Before ![]() (image error) Size: 11 KiB |
Before ![]() (image error) Size: 1.1 KiB |
Before ![]() (image error) Size: 33 KiB After ![]() (image error) Size: 19 KiB ![]() ![]() |
Before ![]() (image error) Size: 6.6 KiB |
Before ![]() (image error) Size: 717 B |
Before ![]() (image error) Size: 18 KiB After ![]() (image error) Size: 12 KiB ![]() ![]() |
Before ![]() (image error) Size: 13 KiB |
BIN
android/app/src/main/res/drawable-night-hdpi/splash.png
Normal file
After ![]() (image error) Size: 18 KiB |
Before ![]() (image error) Size: 7.9 KiB |
BIN
android/app/src/main/res/drawable-night-mdpi/splash.png
Normal file
After ![]() (image error) Size: 12 KiB |
Before ![]() (image error) Size: 69 B After ![]() (image error) Size: 69 B ![]() ![]() |
@ -6,7 +6,4 @@
|
|||||||
<item>
|
<item>
|
||||||
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||||
</item>
|
</item>
|
||||||
<item android:bottom="24dp">
|
|
||||||
<bitmap android:gravity="bottom" android:src="@drawable/branding"/>
|
|
||||||
</item>
|
|
||||||
</layer-list>
|
</layer-list>
|
||||||
|
Before ![]() (image error) Size: 18 KiB |
BIN
android/app/src/main/res/drawable-night-xhdpi/splash.png
Normal file
After ![]() (image error) Size: 25 KiB |
Before ![]() (image error) Size: 29 KiB |
BIN
android/app/src/main/res/drawable-night-xxhdpi/splash.png
Normal file
After ![]() (image error) Size: 39 KiB |
Before ![]() (image error) Size: 41 KiB |
BIN
android/app/src/main/res/drawable-night-xxxhdpi/splash.png
Normal file
After ![]() (image error) Size: 53 KiB |
Before ![]() (image error) Size: 69 B After ![]() (image error) Size: 69 B ![]() ![]() |
@ -6,7 +6,4 @@
|
|||||||
<item>
|
<item>
|
||||||
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||||
</item>
|
</item>
|
||||||
<item android:bottom="24dp">
|
|
||||||
<bitmap android:gravity="bottom" android:src="@drawable/branding"/>
|
|
||||||
</item>
|
|
||||||
</layer-list>
|
</layer-list>
|
||||||
|
Before ![]() (image error) Size: 69 B After ![]() (image error) Size: 69 B ![]() ![]() |
@ -6,7 +6,4 @@
|
|||||||
<item>
|
<item>
|
||||||
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||||
</item>
|
</item>
|
||||||
<item android:bottom="24dp">
|
|
||||||
<bitmap android:gravity="bottom" android:src="@drawable/branding"/>
|
|
||||||
</item>
|
|
||||||
</layer-list>
|
</layer-list>
|
||||||
|
Before ![]() (image error) Size: 16 KiB |
Before ![]() (image error) Size: 1.6 KiB |
Before ![]() (image error) Size: 49 KiB After ![]() (image error) Size: 26 KiB ![]() ![]() |
Before ![]() (image error) Size: 25 KiB |
Before ![]() (image error) Size: 2.4 KiB |
Before ![]() (image error) Size: 96 KiB After ![]() (image error) Size: 40 KiB ![]() ![]() |
Before ![]() (image error) Size: 37 KiB |
Before ![]() (image error) Size: 3.3 KiB |
Before ![]() (image error) Size: 132 KiB After ![]() (image error) Size: 56 KiB ![]() ![]() |
Before ![]() (image error) Size: 69 B After ![]() (image error) Size: 69 B ![]() ![]() |
@ -6,7 +6,4 @@
|
|||||||
<item>
|
<item>
|
||||||
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
<bitmap android:gravity="center" android:src="@drawable/splash"/>
|
||||||
</item>
|
</item>
|
||||||
<item android:bottom="24dp">
|
|
||||||
<bitmap android:gravity="bottom" android:src="@drawable/branding"/>
|
|
||||||
</item>
|
|
||||||
</layer-list>
|
</layer-list>
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
<?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>
|
|
@ -1,3 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
|
||||||
</adaptive-icon>
|
|
Before ![]() (image error) Size: 1.5 KiB After ![]() (image error) Size: 544 B ![]() ![]() |
Before ![]() (image error) Size: 3.7 KiB |
Before ![]() (image error) Size: 5.8 KiB |
Before ![]() (image error) Size: 1.7 KiB After ![]() (image error) Size: 3.3 KiB ![]() ![]() |
Before ![]() (image error) Size: 1017 B After ![]() (image error) Size: 442 B ![]() ![]() |
Before ![]() (image error) Size: 2.4 KiB |
Before ![]() (image error) Size: 3.7 KiB |
Before ![]() (image error) Size: 1.1 KiB After ![]() (image error) Size: 2.0 KiB ![]() ![]() |
Before ![]() (image error) Size: 2.1 KiB After ![]() (image error) Size: 721 B ![]() ![]() |
Before ![]() (image error) Size: 4.9 KiB |
Before ![]() (image error) Size: 8.0 KiB |
Before ![]() (image error) Size: 2.3 KiB After ![]() (image error) Size: 4.4 KiB ![]() ![]() |
Before ![]() (image error) Size: 3.3 KiB After ![]() (image error) Size: 1.0 KiB ![]() ![]() |
Before ![]() (image error) Size: 7.7 KiB |
Before ![]() (image error) Size: 12 KiB |
Before ![]() (image error) Size: 3.6 KiB After ![]() (image error) Size: 6.8 KiB ![]() ![]() |
Before ![]() (image error) Size: 4.4 KiB After ![]() (image error) Size: 1.4 KiB ![]() ![]() |
Before ![]() (image error) Size: 11 KiB |
Before ![]() (image error) Size: 17 KiB |
Before ![]() (image error) Size: 4.8 KiB After ![]() (image error) Size: 9.2 KiB ![]() ![]() |
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
|
||||||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
<style name="LaunchTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar">
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
the Flutter engine draws its first frame -->
|
the Flutter engine draws its first frame -->
|
||||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
@ -16,7 +16,7 @@
|
|||||||
running.
|
running.
|
||||||
|
|
||||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||||
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
<style name="NormalTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar">
|
||||||
<item name="android:windowBackground">?android:colorBackground</item>
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<color name="ic_launcher_background">#FFFFFFFF</color>
|
|
||||||
</resources>
|
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
||||||
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
<style name="LaunchTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
|
||||||
<!-- Show a splash screen on the activity. Automatically removed when
|
<!-- Show a splash screen on the activity. Automatically removed when
|
||||||
the Flutter engine draws its first frame -->
|
the Flutter engine draws its first frame -->
|
||||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||||
@ -16,7 +16,7 @@
|
|||||||
running.
|
running.
|
||||||
|
|
||||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||||
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
<style name="NormalTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
|
||||||
<item name="android:windowBackground">?android:colorBackground</item>
|
<item name="android:windowBackground">?android:colorBackground</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
|
6
android/app/src/main/res/xml/provider_paths.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<paths xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<external-path
|
||||||
|
name="external_files"
|
||||||
|
path="." />
|
||||||
|
</paths>
|
@ -1,18 +0,0 @@
|
|||||||
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
|
|
||||||
}
|
|
21
android/build.gradle.kts
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
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)
|
||||||
|
}
|
663
android/build/reports/problems/problems-report.html
Normal file
@ -1,3 +1,3 @@
|
|||||||
org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
|
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
android.enableJetifier=true
|
android.enableJetifier=true
|
||||||
|
@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
|
|||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
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"
|
|
28
android/settings.gradle.kts
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
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")
|
BIN
assets/fonts/Nunito-Bold.ttf
Executable file
BIN
assets/fonts/Nunito-Italic.ttf
Executable file
BIN
assets/fonts/Nunito-Regular.ttf
Executable file
702
assets/i18n/en-US.json
Normal file
@ -0,0 +1,702 @@
|
|||||||
|
{
|
||||||
|
"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",
|
||||||
|
"safetyReport": "Report",
|
||||||
|
"safetyReportTitle": "Safety Report",
|
||||||
|
"safetyReportDescription": "Help us keep the community safe by reporting inappropriate content or behavior.",
|
||||||
|
"safetyReportType": "Report Type",
|
||||||
|
"safetyReportReason": "Additional Details",
|
||||||
|
"safetyReportReasonHint": "Please provide more details about the issue...",
|
||||||
|
"safetyReportSubmit": "Submit Report",
|
||||||
|
"safetyReportSubmitting": "Submitting...",
|
||||||
|
"safetyReportSuccess": "Report submitted successfully. Thank you for helping keep our community safe.",
|
||||||
|
"safetyReportError": "Failed to submit report. Please try again.",
|
||||||
|
"safetyReportReasonRequired": "Please provide details about the issue",
|
||||||
|
"safetyReportTypeSpam": "Spam or Misleading",
|
||||||
|
"safetyReportTypeHarassment": "Harassment or Abuse",
|
||||||
|
"safetyReportTypeHateSpeech": "Hate Speech",
|
||||||
|
"safetyReportTypeViolence": "Violence or Threats",
|
||||||
|
"safetyReportTypeAdultContent": "Adult Content",
|
||||||
|
"safetyReportTypeIntellectualProperty": "Intellectual Property Violation",
|
||||||
|
"safetyReportTypeOther": "Other",
|
||||||
|
"safetyReportTypeInappropriate": "Inappropriate Content",
|
||||||
|
"safetyReportTypeCopyright": "Copyright Violation",
|
||||||
|
"safetyReportSuccessTitle": "Report Submitted",
|
||||||
|
"safetyReportErrorTitle": "Error",
|
||||||
|
"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",
|
||||||
|
"discover": "Discover",
|
||||||
|
"joinRealm": "Join Realm",
|
||||||
|
"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?",
|
||||||
|
"removePublisherMember": "Remove Publisher Member",
|
||||||
|
"removePublisherMemberHint": "Are you sure to remove this member from the publisher?",
|
||||||
|
"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",
|
||||||
|
"postType": "Post Type",
|
||||||
|
"articleAttachmentHint": "Attachments must be uploaded and inserted into the article body to be visible.",
|
||||||
|
"postVisibility": "Post 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.",
|
||||||
|
"typingHint": {
|
||||||
|
"one": "{} is typing...",
|
||||||
|
"other": "{} are typing..."
|
||||||
|
},
|
||||||
|
"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",
|
||||||
|
"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",
|
||||||
|
"drafts": "Drafts",
|
||||||
|
"noDrafts": "No drafts yet",
|
||||||
|
"articleDrafts": "Article drafts",
|
||||||
|
"postDrafts": "Post drafts",
|
||||||
|
"saveDraft": "Save draft",
|
||||||
|
"draftSaved": "Draft saved",
|
||||||
|
"draftSaveFailed": "Failed to save draft",
|
||||||
|
"clearAllDrafts": "Clear All Drafts",
|
||||||
|
"clearAllDraftsConfirm": "Are you sure you want to delete all drafts? This action cannot be undone.",
|
||||||
|
"clearAll": "Clear All",
|
||||||
|
"untitled": "Untitled",
|
||||||
|
"noContent": "No content",
|
||||||
|
"justNow": "Just now",
|
||||||
|
"minutesAgo": "{} minutes ago",
|
||||||
|
"hoursAgo": "{} hours ago",
|
||||||
|
"daysAgo": "{} days ago",
|
||||||
|
"public": "Public",
|
||||||
|
"unlisted": "Unlisted",
|
||||||
|
"friends": "Friends",
|
||||||
|
"selected": "Selected",
|
||||||
|
"private": "Private",
|
||||||
|
"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",
|
||||||
|
"postContentEmpty": "Post 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",
|
||||||
|
"stellarMembership": "Stellar Membership",
|
||||||
|
"upgradeYourPlan": "Upgrade Your Plan",
|
||||||
|
"chooseYourPlan": "Choose Your Plan",
|
||||||
|
"currentMembership": "Current: {}",
|
||||||
|
"currentMembershipMember": "A member of Stellar Program · {}",
|
||||||
|
"membershipExpires": "Expires: {}",
|
||||||
|
"membershipTierStellar": "Stellar",
|
||||||
|
"membershipTierNova": "Nova",
|
||||||
|
"membershipTierSupernova": "Supernova",
|
||||||
|
"membershipTierUnknown": "Unknown",
|
||||||
|
"membershipPriceStellar": "1200 NSP per month, level 3+ required",
|
||||||
|
"membershipPriceNova": "2400 NSP per month, level 6+ required",
|
||||||
|
"membershipPriceSupernova": "3600 NSP per month, level 9+ required",
|
||||||
|
"membershipCurrentBadge": "CURRENT",
|
||||||
|
"restorePurchase": "Restore Purchase",
|
||||||
|
"restorePurchaseDescription": "Enter your payment provider and order ID to restore your purchase.",
|
||||||
|
"provider": "Provider",
|
||||||
|
"selectProvider": "Select a provider",
|
||||||
|
"orderId": "Order ID",
|
||||||
|
"enterOrderId": "Enter your order ID",
|
||||||
|
"restore": "Restore",
|
||||||
|
"keyboardShortcuts": "Keyboard Shortcuts",
|
||||||
|
"share": "Share",
|
||||||
|
"sharePost": "Share Post",
|
||||||
|
"quickActions": "Quick Actions",
|
||||||
|
"post": "Post",
|
||||||
|
"copy": "Copy",
|
||||||
|
"sendToChat": "Send to Chat",
|
||||||
|
"failedToShareToPost": "Failed to share to post: {}",
|
||||||
|
"shareToChatComingSoon": "Share to chat functionality coming soon",
|
||||||
|
"failedToShareToChat": "Failed to share to chat: {}",
|
||||||
|
"shareToSpecificChatComingSoon": "Share to {} coming soon",
|
||||||
|
"directChat": "Direct Chat",
|
||||||
|
"systemShareComingSoon": "System share functionality coming soon",
|
||||||
|
"failedToShareToSystem": "Failed to share to system: {}",
|
||||||
|
"failedToCopy": "Failed to copy: {}",
|
||||||
|
"noChatRoomsAvailable": "No chat rooms available",
|
||||||
|
"failedToLoadChats": "Failed to load chats",
|
||||||
|
"contentToShare": "Content to share:",
|
||||||
|
"unknownChat": "Unknown Chat",
|
||||||
|
"addAdditionalMessage": "Add additional message...",
|
||||||
|
"uploadingFiles": "Uploading files...",
|
||||||
|
"sharedSuccessfully": "Shared successfully!",
|
||||||
|
"shareSuccess": "Shared successfully!",
|
||||||
|
"shareToSpecificChatSuccess": "Shared to {} successfully!",
|
||||||
|
"wouldYouLikeToGoToChat": "Would you like to go to the chat?",
|
||||||
|
"no": "No",
|
||||||
|
"yes": "Yes",
|
||||||
|
"navigateToChat": "Navigate to Chat",
|
||||||
|
"wouldYouLikeToNavigateToChat": "Would You like to navigate to the chat?",
|
||||||
|
"abuseReports": "Abuse Reports",
|
||||||
|
"abuseReport": "Report",
|
||||||
|
"abuseReportTitle": "Report Content",
|
||||||
|
"abuseReportDescription": "Help us keep the community safe by reporting inappropriate content or behavior.",
|
||||||
|
"abuseReportType": "Report Type",
|
||||||
|
"abuseReportReason": "Additional Details",
|
||||||
|
"abuseReportReasonHint": "Please provide more details about the issue...",
|
||||||
|
"abuseReportSubmit": "Submit Report",
|
||||||
|
"abuseReportSuccess": "Report submitted successfully. Thank you for helping keep our community safe.",
|
||||||
|
"abuseReportError": "Failed to submit report. Please try again.",
|
||||||
|
"abuseReportReasonRequired": "Please provide details about the issue",
|
||||||
|
"abuseReportSuccessTitle": "Report Submitted",
|
||||||
|
"abuseReportErrorTitle": "Error",
|
||||||
|
"abuseReportTypeSpam": "Spam or Misleading",
|
||||||
|
"abuseReportTypeHarassment": "Harassment or Abuse",
|
||||||
|
"abuseReportTypeInappropriate": "Inappropriate Content",
|
||||||
|
"abuseReportTypeViolence": "Violence or Threats",
|
||||||
|
"abuseReportTypeCopyright": "Copyright Violation",
|
||||||
|
"abuseReportTypeImpersonation": "Impersonation",
|
||||||
|
"abuseReportTypeOffensiveContent": "Offensive Content",
|
||||||
|
"abuseReportTypePrivacyViolation": "Privacy Violation",
|
||||||
|
"abuseReportTypeIllegalContent": "Illegal Content",
|
||||||
|
"abuseReportTypeOther": "Other",
|
||||||
|
"tags": "Tags",
|
||||||
|
"tagsHint": "Enter tags, separated by commas",
|
||||||
|
"categories": "Categories",
|
||||||
|
"categoriesHint": "Enter categories, separated by commas",
|
||||||
|
"chatNotJoined": "You have not joined this chat yet.",
|
||||||
|
"chatUnableJoin": "You can't join this chat due to it's access control settings.",
|
||||||
|
"chatJoin": "Join the Chat",
|
||||||
|
"realmJoin": "Join the Realm",
|
||||||
|
"realmJoinSuccess": "Successfully joined the realm.",
|
||||||
|
"discoverRealms": "Discover Realms",
|
||||||
|
"discoverPublishers": "Discover Publishers",
|
||||||
|
"search": "Search",
|
||||||
|
"publisherMembers": "Collaborators",
|
||||||
|
"developerHub": "Developer Hub",
|
||||||
|
"developerHubUnselectedHint": "Select a developer to see stats or enroll a new one.",
|
||||||
|
"enrollDeveloper": "Enroll as a Developer",
|
||||||
|
"enrollDeveloperHint": "Enroll one of your publishers to become a developer.",
|
||||||
|
"noPublishersToEnroll": "You don't have any publishers that can be enrolled as a developer.",
|
||||||
|
"totalCustomApps": "Total Custom Apps",
|
||||||
|
"customApps": "Custom Apps",
|
||||||
|
"noCustomApps": "No custom apps yet.",
|
||||||
|
"createCustomApp": "Create Custom App",
|
||||||
|
"editCustomApp": "Edit Custom App",
|
||||||
|
"deleteCustomApp": "Delete Custom App",
|
||||||
|
"deleteCustomAppHint": "Are you sure you want to delete this custom app? This action cannot be undone.",
|
||||||
|
"publicRealm": "Public Realm",
|
||||||
|
"publicRealmDescription": "Anyone can preview the content of this realm.",
|
||||||
|
"communityRealm": "Community Realm",
|
||||||
|
"communityRealmDescription": "Anyone can join this realm and participate in discussions. And will show in the discover page & feed.",
|
||||||
|
"publicChat": "Public Chat",
|
||||||
|
"publicChatDescription": "Anyone can preview the content of this chat. Including unjoined bots.",
|
||||||
|
"communityChat": "Community Chat",
|
||||||
|
"communityChatDescription": "Anyone can join this chat and participate in discussions.",
|
||||||
|
"appLinks": "App Links",
|
||||||
|
"homePageUrl": "Home Page URL",
|
||||||
|
"privacyPolicyUrl": "Privacy Policy URL",
|
||||||
|
"termsOfServiceUrl": "Terms of Service URL",
|
||||||
|
"oauthConfig": "OAuth Configuration",
|
||||||
|
"clientUri": "Client URI",
|
||||||
|
"redirectUris": "Redirect URIs",
|
||||||
|
"addRedirectUri": "Add Redirect URI",
|
||||||
|
"allowedScopes": "Allowed Scopes",
|
||||||
|
"requirePkce": "Require PKCE",
|
||||||
|
"allowOfflineAccess": "Allow Offline Access",
|
||||||
|
"redirectUri": "Redirect URI",
|
||||||
|
"redirectUriHint": "The redirect URI is used for OAuth authentication. When the app goes to production, we will validate the redirect URI is match your configuration to reject invalid requests.",
|
||||||
|
"uriRequired": "The URI is required.",
|
||||||
|
"uriInvalid": "The URI is invalid.",
|
||||||
|
"add": "Add",
|
||||||
|
"addScope": "Add Scope",
|
||||||
|
"scope": "Scope",
|
||||||
|
"publisherFeatures": "Features",
|
||||||
|
"publisherFeatureDevelop": "Developer Program",
|
||||||
|
"publisherFeatureDevelopDescription": "Unlock development abilities for your publisher, including custom apps, API keys, and more.",
|
||||||
|
"publisherFeatureDevelopHint": "Currently, this feature is under active development, you need send a request to unlock this feature.",
|
||||||
|
"learnMore": "Learn More",
|
||||||
|
"discoverWebArticles": "Articles from external sites",
|
||||||
|
"webArticlesStand": "Article Stand",
|
||||||
|
"about": "About",
|
||||||
|
"membershipCancel": "Cancel Membership",
|
||||||
|
"membershipCancelConfirm": "Are you sure to cancel your membership?",
|
||||||
|
"membershipCancelHint": "Are you sure to cancel your membership? You will not be charged again. Your membership will remain active until the end of the current billing period. And you will not able to resubscribe until the end of the current subscription ends.",
|
||||||
|
"membershipCancelSuccess": "Your membership has been successfully canceled.",
|
||||||
|
"aboutScreenTitle": "About",
|
||||||
|
"aboutScreenVersionInfo": "Version {} ({})",
|
||||||
|
"aboutScreenAppInfoSectionTitle": "App Information",
|
||||||
|
"aboutScreenPackageNameLabel": "Package Name",
|
||||||
|
"aboutScreenVersionLabel": "Version",
|
||||||
|
"aboutScreenBuildNumberLabel": "Build Number",
|
||||||
|
"aboutScreenLinksSectionTitle": "Links",
|
||||||
|
"aboutScreenPrivacyPolicyTitle": "Privacy Policy",
|
||||||
|
"aboutScreenTermsOfServiceTitle": "Terms of Service",
|
||||||
|
"aboutScreenOpenSourceLicensesTitle": "Open Source Licenses",
|
||||||
|
"aboutScreenDeveloperSectionTitle": "Developer",
|
||||||
|
"aboutScreenContactUsTitle": "Contact Us",
|
||||||
|
"aboutScreenLicenseTitle": "License",
|
||||||
|
"aboutScreenLicenseContent": "GNU Affero General Public License v3.0",
|
||||||
|
"aboutScreenCopyright": "All rights reserved © Solsynth {}",
|
||||||
|
"aboutScreenMadeWith": "Made with ❤︎️ by Solar Network Team",
|
||||||
|
"aboutScreenFailedToLoadPackageInfo": "Failed to load package info: {error}",
|
||||||
|
"copiedToClipboard": "Copied to clipboard",
|
||||||
|
"copyToClipboardTooltip": "Copy to clipboard",
|
||||||
|
"postForwardingTo": "Forwarding to",
|
||||||
|
"postReplyingTo": "Replying to",
|
||||||
|
"postEditing": "You are editing an existing post",
|
||||||
|
"postArticle": "Article"
|
||||||
|
}
|
544
assets/i18n/zh-CN.json
Normal file
@ -0,0 +1,544 @@
|
|||||||
|
{
|
||||||
|
"login": "登录",
|
||||||
|
"loginDescription": "已有用户?我们欢迎您回来!",
|
||||||
|
"forgotPassword": "忘记密码",
|
||||||
|
"loginPickFactor": "选择验证方式",
|
||||||
|
"loginMultiFactor": {
|
||||||
|
"one": "还剩 {} 步",
|
||||||
|
"other": "还剩 {} 步"
|
||||||
|
},
|
||||||
|
"loginEnterPassword": "输入验证码",
|
||||||
|
"loginSuccess": "已登录为 {}",
|
||||||
|
"loginGreeting": "欢迎回来!",
|
||||||
|
"loginOr": "或使用\n第三方登录",
|
||||||
|
"loginInProgress": "登录中……",
|
||||||
|
"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": "时序验证码",
|
||||||
|
"authFactorTOTPDescription": "由 TOTP 验证器生成的一次性验证码。",
|
||||||
|
"authFactorInAppNotify": "应用内通知",
|
||||||
|
"authFactorInAppNotifyDescription": "通过应用内通知发送的一次性验证码。",
|
||||||
|
"authFactorPin": "Pin 码",
|
||||||
|
"authFactorPinDescription": "它由6位数字组成。它不能用于登录。 当执行一些危险的操作时,系统将要求您输入此 PIN 进行确认。",
|
||||||
|
"realms": "领域",
|
||||||
|
"createRealm": "创建领域",
|
||||||
|
"createRealmHint": "结识志同道合的朋友、建立社区等等。",
|
||||||
|
"editRealm": "编辑领域",
|
||||||
|
"deleteRealm": "删除领域",
|
||||||
|
"deleteRealmHint": "确定要删除此领域吗?这也会删除此领域下的所有频道、发布者和帖子。",
|
||||||
|
"explore": "探索",
|
||||||
|
"exploreFilterSubscriptions": "已关注",
|
||||||
|
"exploreFilterFriends": "好友圈",
|
||||||
|
"account": "账号",
|
||||||
|
"name": "名称",
|
||||||
|
"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": "回复",
|
||||||
|
"repliesCount": {
|
||||||
|
"zero": "暂无回复",
|
||||||
|
"one": "{} 回复",
|
||||||
|
"other": "{} 个回复"
|
||||||
|
},
|
||||||
|
"forward": "转发",
|
||||||
|
"repliedTo": "回复了",
|
||||||
|
"forwarded": "转发了",
|
||||||
|
"hasAttachments": {
|
||||||
|
"one": "{} 个附件",
|
||||||
|
"other": "{}个附件"
|
||||||
|
},
|
||||||
|
"postHasAttachments": {
|
||||||
|
"one": "{} 个附件",
|
||||||
|
"other": "{}个附件"
|
||||||
|
},
|
||||||
|
"edited": "已编辑",
|
||||||
|
"addVideo": "添加视频",
|
||||||
|
"addPhoto": "添加照片",
|
||||||
|
"addFile": "添加文件",
|
||||||
|
"createDirectMessage": "创建新私人消息",
|
||||||
|
"gotoDirectMessage": "前往私信",
|
||||||
|
"react": "反应",
|
||||||
|
"reactions": {
|
||||||
|
"zero": "反应",
|
||||||
|
"one": "{} 个反应",
|
||||||
|
"other": "{} 个反应"
|
||||||
|
},
|
||||||
|
"reactionPositive": "正面",
|
||||||
|
"reactionNegative": "负面",
|
||||||
|
"reactionNeutral": "中立",
|
||||||
|
"connectionConnected": "已连接",
|
||||||
|
"connectionDisconnected": "已断开连接",
|
||||||
|
"connectionReconnecting": "重新连接中",
|
||||||
|
"accountConnections": "帐户连接",
|
||||||
|
"accountConnectionsDescription": "管理您的外部帐户连接",
|
||||||
|
"accountConnectionAdd": "添加连接",
|
||||||
|
"accountConnectionDelete": "删除连接",
|
||||||
|
"accountConnectionDeleteHint": "您确定要删除此连接吗?此操作无法撤消。",
|
||||||
|
"accountConnectionsEmpty": "未找到连接。请添加连接以便开始。",
|
||||||
|
"accountConnectionProvider": "平台",
|
||||||
|
"accountConnectionProviderHint": "输入平台名称",
|
||||||
|
"accountConnectionIdentifier": "标识",
|
||||||
|
"accountConnectionIdentifierHint": "输入此平台的标识",
|
||||||
|
"accountConnectionDescription": "添加连接以将您的帐户与外部服务链接起来。",
|
||||||
|
"accountConnectionAddSuccess": "添加连接成功。",
|
||||||
|
"accountConnectionAddError": "无法建立连接。",
|
||||||
|
"accountConnectionProviderApple": "Apple",
|
||||||
|
"accountConnectionProviderMicrosoft": "Microsoft",
|
||||||
|
"accountConnectionProviderGoogle": "Google",
|
||||||
|
"accountConnectionProviderGithub": "GitHub",
|
||||||
|
"accountConnectionProviderDiscord": "Discord",
|
||||||
|
"accountConnectionProviderAfdian": "爱发电",
|
||||||
|
"checkIn": "签到",
|
||||||
|
"checkInNone": "尚未签到",
|
||||||
|
"checkInNoneHint": "通过签到获取您的财富提示和每日奖励。",
|
||||||
|
"checkInResultLevel0": "最差运气",
|
||||||
|
"checkInResultLevel1": "坏运气",
|
||||||
|
"checkInResultLevel2": "一个普通的日常",
|
||||||
|
"checkInResultLevel3": "好运",
|
||||||
|
"checkInResultLevel4": "最佳运气",
|
||||||
|
"checkInActivityTitle": "{} 在 {} 签到并获得了 {}",
|
||||||
|
"eventCalander": "活动日历",
|
||||||
|
"eventCalanderEmpty": "该日无活动。",
|
||||||
|
"fortuneGraph": "时运趋势",
|
||||||
|
"noFortuneData": "本月沒有时运數據。",
|
||||||
|
"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": "发送好友请求",
|
||||||
|
"addFriendShort": "添加好友",
|
||||||
|
"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": "清除背景图片",
|
||||||
|
"settingsBackgroundGenerateColor": "从背景图像生成主题色",
|
||||||
|
"messageNone": "没有内容可显示",
|
||||||
|
"unreadMessages": {
|
||||||
|
"one": "{} 条未读消息",
|
||||||
|
"other": "{} 条未读消息"
|
||||||
|
},
|
||||||
|
"chatBreakNone": "无",
|
||||||
|
"settingsRealmCompactView": "紧凑领域视图",
|
||||||
|
"settingsMixedFeed": "混合动态",
|
||||||
|
"settingsAutoTranslate": "自动翻译",
|
||||||
|
"settingsHideBottomNav": "隐藏底部导航",
|
||||||
|
"settingsSoundEffects": "音效",
|
||||||
|
"settingsAprilFoolFeatures": "愚人节功能",
|
||||||
|
"settingsEnterToSend": "按下 Enter 发送",
|
||||||
|
"settingsTransparentAppBar": "使用完全透明的状态栏",
|
||||||
|
"settingsCustomFonts": "自定义字体",
|
||||||
|
"settingsCustomFontsHint": "应用中的所有文本都将使用自定义字体。请确保您的设备上已安装该字体。",
|
||||||
|
"settingsColorScheme": "色彩主题",
|
||||||
|
"postTitle": "标题",
|
||||||
|
"postDescription": "描述",
|
||||||
|
"call": "通话",
|
||||||
|
"done": "完成",
|
||||||
|
"loginResetPasswordSent": "密码重置邮件已发送,请检查您的收件箱。",
|
||||||
|
"accountDeletion": "删除帐户",
|
||||||
|
"accountDeletionHint": "您确定要删除您的帐户吗? 如果您确认,我们将向您的电子邮件地址发送一封确认邮件。 您可以按照电子邮件中的安装继续删除过程。",
|
||||||
|
"accountDeletionSent": "帐号删除确认邮件已发送,请检查您的邮箱。",
|
||||||
|
"accountSecurityTitle": "安全选项",
|
||||||
|
"accountDangerZoneTitle": "危险操作",
|
||||||
|
"accountPassword": "密码",
|
||||||
|
"accountPasswordDescription": "更改您的账户密码",
|
||||||
|
"accountPasswordChange": "更改密码",
|
||||||
|
"accountPasswordChangeSent": "密码重置邮件已发送,请检查您的收件箱。",
|
||||||
|
"accountPasswordChangeDescription": "我们将向您的电子邮件地址发送一封电子邮件以重置您的密码。",
|
||||||
|
"accountAuthFactor": "认证因子",
|
||||||
|
"accountAuthFactorDescription": "确保安全和多因子身份验证矶",
|
||||||
|
"accountDeletionDescription": "永久删除您的帐户和所有数据",
|
||||||
|
"accountSettingsHelp": "账户设置帮助",
|
||||||
|
"accountSettingsHelpContent": "此页面允许您管理您的帐户安全性、隐私和其他设置。如果您需要帮助,请联系管理员。",
|
||||||
|
"unauthorized": "未授权",
|
||||||
|
"unauthorizedHint": "您未登录或会话已过期,请重新登录。",
|
||||||
|
"publisherBelongsTo": "属于 {}",
|
||||||
|
"postContent": "内容",
|
||||||
|
"postSettings": "设置",
|
||||||
|
"postPublisherUnselected": "未指定发布者",
|
||||||
|
"postVisibility": "可见性",
|
||||||
|
"postVisibilityPublic": "公开",
|
||||||
|
"postVisibilityFriends": "仅好友可见",
|
||||||
|
"postVisibilityUnlisted": "不公开",
|
||||||
|
"postVisibilityPrivate": "私密",
|
||||||
|
"postTruncated": "内容已截断,点击查看完整帖子",
|
||||||
|
"copyMessage": "复制消息",
|
||||||
|
"authFactor": "身份验证因子",
|
||||||
|
"authFactorDelete": "删除验证因子",
|
||||||
|
"authFactorDeleteHint": "您确定要删除此连接吗?此操作无法撤消。",
|
||||||
|
"authFactorDisable": "禁用因子认证",
|
||||||
|
"authFactorDisableHint": "您确定要禁用此身份验证因素吗?您可以稍后再启用它。",
|
||||||
|
"authFactorEnable": "启用双因子认证",
|
||||||
|
"authFactorEnableHint": "授权因子生成的代码来启用它。",
|
||||||
|
"authFactorNew": "创建认证的因子",
|
||||||
|
"authFactorSecret": "密钥",
|
||||||
|
"authFactorSecretHint": "为此因子创建一个秘密。",
|
||||||
|
"authFactorQrCodeScan": "用您的身份验证程序扫描这个二维码来设置 TOTP 身份验证",
|
||||||
|
"authFactorNoQrCode": "此身份验证因子没有可用的 QR 代码",
|
||||||
|
"cancel": "取消",
|
||||||
|
"confirm": "确认",
|
||||||
|
"authFactorAdditional": "最后一步",
|
||||||
|
"authFactorHint": "联系方式",
|
||||||
|
"authFactorHintHelper": "您需要提供您的联系方式,若与我们的记录相符,我们将会向该联系方式发送验证码",
|
||||||
|
"authSessions": "活跃会话",
|
||||||
|
"authSessionsDescription": "查看您当前登录的设备。",
|
||||||
|
"authSessionsCount": {
|
||||||
|
"one": "{} 会话",
|
||||||
|
"other": "{} 会话"
|
||||||
|
},
|
||||||
|
"authDeviceCurrent": "当前设备",
|
||||||
|
"lastActiveAt": "最后一次活动于 {}",
|
||||||
|
"authDeviceLogout": "登出",
|
||||||
|
"authDeviceLogoutHint": "您确定要注销此设备吗?这也会禁用掉此设备的推送通知。",
|
||||||
|
"authDeviceEditLabel": "编辑标签",
|
||||||
|
"authDeviceLabelTitle": "编辑设备标签",
|
||||||
|
"authDeviceLabelHint": "给设备命名",
|
||||||
|
"authDeviceSwipeEditHint": "左滑编辑标签",
|
||||||
|
"authDeviceSwipeLogoutHint": "右滑登出设备",
|
||||||
|
"typingHint": {
|
||||||
|
"one": "{} 正在输入……",
|
||||||
|
"other": "{} 正在输入……"
|
||||||
|
},
|
||||||
|
"settingsAppearance": "外观",
|
||||||
|
"settingsServer": "服务器",
|
||||||
|
"settingsBehavior": "行为",
|
||||||
|
"settingsDesktop": "桌面",
|
||||||
|
"settingsKeyboardShortcuts": "快捷键",
|
||||||
|
"settingsEnterToSendDesktopHint": "按 Enter 键发送消息,使用 Shift+Enter 添加换行。",
|
||||||
|
"settingsHelp": "设置帮助",
|
||||||
|
"settingsHelpContent": "此页面允许您管理您的帐户安全性、隐私和其他设置。如果需要其他帮助,请联系管理员。",
|
||||||
|
"settingsKeyboardShortcutSearch": "搜索",
|
||||||
|
"settingsKeyboardShortcutSettings": "设置",
|
||||||
|
"settingsKeyboardShortcutNewMessage": "新消息",
|
||||||
|
"settingsKeyboardShortcutCloseDialog": "关闭对话框",
|
||||||
|
"close": "关闭",
|
||||||
|
"contactMethod": "联系方式",
|
||||||
|
"contactMethodType": "联系方式类型",
|
||||||
|
"contactMethodTypeEmail": "电子邮件",
|
||||||
|
"contactMethodTypePhone": "电话",
|
||||||
|
"contactMethodTypeAddress": "地址",
|
||||||
|
"contactMethodEmailHint": "请输入您的电子邮件地址",
|
||||||
|
"contactMethodPhoneHint": "请输入您的电话号码",
|
||||||
|
"contactMethodAddressHint": "输入您的现实地址",
|
||||||
|
"contactMethodEmailDescription": "您的电子邮件将用于帐户恢复和通知",
|
||||||
|
"contactMethodPhoneDescription": "您的电话号码将用于帐户恢复和通知",
|
||||||
|
"contactMethodAddressDescription": "您的实际地址将用于运输和计费目的。",
|
||||||
|
"contactMethodVerified": "已验证",
|
||||||
|
"contactMethodUnverified": "未认证",
|
||||||
|
"contactMethodVerify": "验证联系方式",
|
||||||
|
"contactMethodDelete": "删除联系方式",
|
||||||
|
"contactMethodNew": "新建联系方式",
|
||||||
|
"contactMethodContentEmpty": "联系方式内容不能为空",
|
||||||
|
"contactMethodVerificationSent": "验证码已发送到对应的联系方式",
|
||||||
|
"contactMethodVerificationNeeded": "联系方式已添加,但尚未验证。您可以通过点击它来验证。",
|
||||||
|
"accountContactMethod": "联系方法",
|
||||||
|
"accountContactMethodDescription": "管理您的账户恢复和通知的联系方式",
|
||||||
|
"authFactorVerificationNeeded": "认证因子已添加,但尚未启用。您可以通过点击它并输入验证码来启用。",
|
||||||
|
"contactMethodPrimary": "主要的",
|
||||||
|
"contactMethodSetPrimary": "设为主要",
|
||||||
|
"contactMethodSetPrimaryHint": "设置此联系方式作为您的账户恢复和通知的主要联系方式",
|
||||||
|
"contactMethodDeleteHint": "确定要删除此贴图吗?此操作无法撤销。",
|
||||||
|
"chatNotifyLevel": "通知级别",
|
||||||
|
"chatNotifyLevelDescription": "决定您将收到多少通知。",
|
||||||
|
"chatNotifyLevelAll": "全部",
|
||||||
|
"chatNotifyLevelMention": "提及",
|
||||||
|
"chatNotifyLevelNone": "无",
|
||||||
|
"chatNotifyLevelUpdated": "通知级别已更新为 {}。",
|
||||||
|
"chatBreak": "暂停聊天",
|
||||||
|
"chatBreakDescription": "设置一个时间,在该时间之前,您的通知级别将仅为提及,以暂时休息当前讨论的话题。",
|
||||||
|
"chatBreakClear": "清除暂停时间",
|
||||||
|
"chatBreakHour": "暂停 {} 分钟",
|
||||||
|
"chatBreakDay": "暂停 {} 天",
|
||||||
|
"chatBreakSet": "已设置暂停 {}",
|
||||||
|
"chatBreakCleared": "聊天暂停已清除。",
|
||||||
|
"chatBreakCustom": "自定义时长",
|
||||||
|
"chatBreakEnterMinutes": "输入分钟数",
|
||||||
|
"firstName": "姓名",
|
||||||
|
"middleName": "中间名",
|
||||||
|
"lastName": "姓氏",
|
||||||
|
"gender": "性別",
|
||||||
|
"pronouns": "代词",
|
||||||
|
"location": "位置",
|
||||||
|
"timeZone": "时区",
|
||||||
|
"birthday": "生日",
|
||||||
|
"selectADate": "选择日期",
|
||||||
|
"checkInResultT0": "大凶",
|
||||||
|
"checkInResultT1": "凶",
|
||||||
|
"checkInResultT2": "中平",
|
||||||
|
"checkInResultT3": "吉",
|
||||||
|
"checkInResultT4": "大吉",
|
||||||
|
"accountProfileView": "查看个人资料",
|
||||||
|
"unspecified": "未指定",
|
||||||
|
"added": "已添加",
|
||||||
|
"preview": "预览",
|
||||||
|
"togglePreview": "切换预览",
|
||||||
|
"subscribe": "订阅",
|
||||||
|
"unsubscribe": "取消订阅",
|
||||||
|
"paymentVerification": "支付验证",
|
||||||
|
"paymentSummary": "付款摘要",
|
||||||
|
"amount": "数量",
|
||||||
|
"description": "描述",
|
||||||
|
"pinCode": "PIN 码",
|
||||||
|
"biometric": "生物识别",
|
||||||
|
"enterPinToConfirm": "请输入您的 6 位数字 PIN 以确认付款",
|
||||||
|
"clearPin": "清除 PIN 码",
|
||||||
|
"useBiometricToConfirm": "使用生物特征认证来确认付款",
|
||||||
|
"touchSensorToAuthenticate": "触摸传感器进行身份验证",
|
||||||
|
"authenticating": "认证中……",
|
||||||
|
"authenticateNow": "立即认证",
|
||||||
|
"processing": "处理中……",
|
||||||
|
"processingPayment": "处理付款中……",
|
||||||
|
"pleaseWait": "请稍候",
|
||||||
|
"paymentFailed": "付款失败,请重试。",
|
||||||
|
"invalidPin": "错误的 PIN。请再试一次。",
|
||||||
|
"biometricAuthFailed": "生物识别身份验证失败。请重试。",
|
||||||
|
"paymentSuccess": "付款成功完成!",
|
||||||
|
"membershipPurchaseSuccess": "好耶,会员购买成功!",
|
||||||
|
"paymentError": "付款失败: {error}",
|
||||||
|
"usePinInstead": "使用 PIN 码",
|
||||||
|
"levelProgress": "等级进度",
|
||||||
|
"stellarMembership": "恒星计划",
|
||||||
|
"upgradeYourPlan": "升级您的计划",
|
||||||
|
"chooseYourPlan": "选择你的方案",
|
||||||
|
"currentMembership": "当前:{}",
|
||||||
|
"currentMembershipMember": "恒星计划「{}」级会员",
|
||||||
|
"membershipExpires": "过期于:{}",
|
||||||
|
"membershipTierStellar": "恒星",
|
||||||
|
"membershipTierNova": "新星",
|
||||||
|
"membershipTierSupernova": "超新星",
|
||||||
|
"membershipTierUnknown": "未知",
|
||||||
|
"membershipPriceStellar": "每月 1200 源点,至少需要 3 级",
|
||||||
|
"membershipPriceNova": "每月 2400 源点,至少需要 6 级",
|
||||||
|
"membershipPriceSupernova": "每月 3600 源点,至少需要 9 级",
|
||||||
|
"membershipFeatureBasic": "基础功能",
|
||||||
|
"membershipCurrentBadge": "当前",
|
||||||
|
"restorePurchase": "恢复购买",
|
||||||
|
"restorePurchaseDescription": "输入您付款的提供商和订单 ID 以恢复您的购买。",
|
||||||
|
"provider": "平台",
|
||||||
|
"selectProvider": "选择一个平台",
|
||||||
|
"orderId": "订单 ID",
|
||||||
|
"enterOrderId": "输入您的订单 ID",
|
||||||
|
"restore": "恢复",
|
||||||
|
"keyboardShortcuts": "键盘快捷键",
|
||||||
|
"about": "关于",
|
||||||
|
"membershipCancel": "取消会员订阅",
|
||||||
|
"membershipCancelConfirm": "您确定要取消您的会员订阅?",
|
||||||
|
"membershipCancelHint": "您确定要取消您的会员订阅吗?您将不会再被收费。您的会员资格将在当前计费周期结束前保持有效。并且您在当前订阅结束之前无法重新订阅。",
|
||||||
|
"membershipCancelSuccess": "您的会员订阅已成功取消。",
|
||||||
|
"aboutScreenTitle": "关于",
|
||||||
|
"aboutScreenVersionInfo": "版本 {} ({})",
|
||||||
|
"aboutScreenAppInfoSectionTitle": "应用信息",
|
||||||
|
"aboutScreenPackageNameLabel": "包名",
|
||||||
|
"aboutScreenVersionLabel": "版本",
|
||||||
|
"aboutScreenBuildNumberLabel": "构建编号",
|
||||||
|
"aboutScreenLinksSectionTitle": "链接",
|
||||||
|
"aboutScreenPrivacyPolicyTitle": "隐私政策",
|
||||||
|
"aboutScreenTermsOfServiceTitle": "服务条款",
|
||||||
|
"aboutScreenOpenSourceLicensesTitle": "开源许可证",
|
||||||
|
"aboutScreenDeveloperSectionTitle": "开发者",
|
||||||
|
"aboutScreenContactUsTitle": "联系我们",
|
||||||
|
"aboutScreenLicenseTitle": "许可证",
|
||||||
|
"aboutScreenLicenseContent": "GNU Affero General Public License v3.0",
|
||||||
|
"aboutScreenCopyright": "版权所有 © 索尔辛茨 {}",
|
||||||
|
"aboutScreenMadeWith": "由 Solar Network Team 用 ❤︎️ 制作",
|
||||||
|
"aboutScreenFailedToLoadPackageInfo": "加载包信息失败:{error}",
|
||||||
|
"copiedToClipboard": "已复制到剪贴板",
|
||||||
|
"copyToClipboardTooltip": "复制到剪贴板",
|
||||||
|
"postForwardingTo": "转发给",
|
||||||
|
"postReplyingTo": "回复给",
|
||||||
|
"postEditing": "您正在编辑现有帖子",
|
||||||
|
"postArticle": "文章"
|
||||||
|
}
|
525
assets/i18n/zh-TW.json
Normal file
@ -0,0 +1,525 @@
|
|||||||
|
{
|
||||||
|
"login": "登入",
|
||||||
|
"loginDescription": "既有用戶?歡迎您回來!",
|
||||||
|
"forgotPassword": "忘記密碼",
|
||||||
|
"loginPickFactor": "選擇驗證方式",
|
||||||
|
"loginMultiFactor": {
|
||||||
|
"one": "還剩 {} 步驟",
|
||||||
|
"other": "還剩 {} 步驟"
|
||||||
|
},
|
||||||
|
"loginEnterPassword": "輸入驗證碼",
|
||||||
|
"loginSuccess": "已登入為 {}",
|
||||||
|
"loginGreeting": "歡迎回來!",
|
||||||
|
"loginOr": "Or login with\nthird parties",
|
||||||
|
"loginInProgress": "Logging you in...",
|
||||||
|
"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": "透過應用程式內通知發送的一次性驗證碼。",
|
||||||
|
"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": "領域",
|
||||||
|
"createRealm": "建立領域",
|
||||||
|
"createRealmHint": "結識志同道合的朋友、建立社群等等。",
|
||||||
|
"editRealm": "編輯領域",
|
||||||
|
"deleteRealm": "刪除領域",
|
||||||
|
"deleteRealmHint": "確定要刪除此領域嗎?這也將刪除該領域下的所有頻道、發佈者和貼文。",
|
||||||
|
"explore": "探索",
|
||||||
|
"exploreFilterSubscriptions": "Subscriptions",
|
||||||
|
"exploreFilterFriends": "Friends",
|
||||||
|
"account": "帳號",
|
||||||
|
"name": "名稱",
|
||||||
|
"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": "回覆",
|
||||||
|
"repliesCount": {
|
||||||
|
"zero": "No reply",
|
||||||
|
"one": "{} reply",
|
||||||
|
"other": "{} replies"
|
||||||
|
},
|
||||||
|
"forward": "轉發",
|
||||||
|
"repliedTo": "回覆了",
|
||||||
|
"forwarded": "轉發了",
|
||||||
|
"hasAttachments": {
|
||||||
|
"one": "{} attachment",
|
||||||
|
"other": "{}個附件"
|
||||||
|
},
|
||||||
|
"postHasAttachments": {
|
||||||
|
"one": "{} attachment",
|
||||||
|
"other": "{}個附件"
|
||||||
|
},
|
||||||
|
"edited": "已編輯",
|
||||||
|
"addVideo": "新增影片",
|
||||||
|
"addPhoto": "新增照片",
|
||||||
|
"addFile": "新增檔案",
|
||||||
|
"createDirectMessage": "建立新私人訊息",
|
||||||
|
"gotoDirectMessage": "Go to DM",
|
||||||
|
"react": "反應",
|
||||||
|
"reactions": {
|
||||||
|
"zero": "反應",
|
||||||
|
"one": "{} 個反應",
|
||||||
|
"other": "{} 個反應"
|
||||||
|
},
|
||||||
|
"reactionPositive": "正面",
|
||||||
|
"reactionNegative": "負面",
|
||||||
|
"reactionNeutral": "中立",
|
||||||
|
"connectionConnected": "已連線",
|
||||||
|
"connectionDisconnected": "已中斷連線",
|
||||||
|
"connectionReconnecting": "重新連線中",
|
||||||
|
"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": "簽到",
|
||||||
|
"checkInNone": "尚未簽到",
|
||||||
|
"checkInNoneHint": "透過簽到獲取您的財富提示和每日獎勵。",
|
||||||
|
"checkInResultLevel0": "最差運氣",
|
||||||
|
"checkInResultLevel1": "壞運氣",
|
||||||
|
"checkInResultLevel2": "一個普通的日子",
|
||||||
|
"checkInResultLevel3": "好運",
|
||||||
|
"checkInResultLevel4": "最佳運氣",
|
||||||
|
"checkInActivityTitle": "{} 在 {} 簽到並獲得了 {}",
|
||||||
|
"eventCalander": "活動日曆",
|
||||||
|
"eventCalanderEmpty": "該日無活動。",
|
||||||
|
"fortuneGraph": "Fortune Trend",
|
||||||
|
"noFortuneData": "No fortune data available for this month.",
|
||||||
|
"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": "傳送好友邀請",
|
||||||
|
"addFriendShort": "Add as Friend",
|
||||||
|
"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": "清除背景圖片",
|
||||||
|
"settingsBackgroundGenerateColor": "Generate color scheme from Bacground Image",
|
||||||
|
"messageNone": "沒有內容可顯示",
|
||||||
|
"unreadMessages": {
|
||||||
|
"one": "{} 條未讀訊息",
|
||||||
|
"other": "{} 條未讀訊息"
|
||||||
|
},
|
||||||
|
"chatBreakNone": "無",
|
||||||
|
"settingsRealmCompactView": "精簡領域視圖",
|
||||||
|
"settingsMixedFeed": "混合動態",
|
||||||
|
"settingsAutoTranslate": "自動翻譯",
|
||||||
|
"settingsHideBottomNav": "隱藏底部導航",
|
||||||
|
"settingsSoundEffects": "音效",
|
||||||
|
"settingsAprilFoolFeatures": "愚人節功能",
|
||||||
|
"settingsEnterToSend": "按下 Enter 傳送",
|
||||||
|
"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": "可見性",
|
||||||
|
"postVisibilityPublic": "公開",
|
||||||
|
"postVisibilityFriends": "僅好友可見",
|
||||||
|
"postVisibilityUnlisted": "不公開",
|
||||||
|
"postVisibilityPrivate": "私密",
|
||||||
|
"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": "通知等級",
|
||||||
|
"chatNotifyLevelDescription": "決定您將收到多少通知。",
|
||||||
|
"chatNotifyLevelAll": "全部",
|
||||||
|
"chatNotifyLevelMention": "提及",
|
||||||
|
"chatNotifyLevelNone": "無",
|
||||||
|
"chatNotifyLevelUpdated": "通知等級已更新為 {}。",
|
||||||
|
"chatBreak": "暫停聊天",
|
||||||
|
"chatBreakDescription": "設定一個時間,在該時間之前,您的通知等級將僅為提及,以暫時休息當前討論的話題。",
|
||||||
|
"chatBreakClear": "清除暫停時間",
|
||||||
|
"chatBreakHour": "暫停 {} 分鐘",
|
||||||
|
"chatBreakDay": "暫停 {} 天",
|
||||||
|
"chatBreakSet": "已設定暫停 {}",
|
||||||
|
"chatBreakCleared": "聊天暫停已清除。",
|
||||||
|
"chatBreakCustom": "自訂時長",
|
||||||
|
"chatBreakEnterMinutes": "輸入分鐘數",
|
||||||
|
"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": "描述",
|
||||||
|
"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": "付款失敗:{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": "目前",
|
||||||
|
"restorePurchase": "Restore Purchase",
|
||||||
|
"restorePurchaseDescription": "Enter your payment provider and order ID to restore your purchase.",
|
||||||
|
"provider": "Provider",
|
||||||
|
"selectProvider": "Select a provider",
|
||||||
|
"orderId": "Order ID",
|
||||||
|
"enterOrderId": "Enter your order ID",
|
||||||
|
"restore": "Restore",
|
||||||
|
"keyboardShortcuts": "Keyboard Shortcuts"
|
||||||
|
}
|
Before ![]() (image error) Size: 50 KiB |
Before ![]() (image error) Size: 43 KiB |
Before ![]() (image error) Size: 138 KiB |
Before ![]() (image error) Size: 152 KiB |
Before ![]() (image error) Size: 157 KiB |
Before ![]() (image error) Size: 116 KiB |