A browser and wallet for LBRY, the decentralized, user-controlled content marketplace.
Find a file
infiinte-persistence 567316cfbe Support for multiple string context + "About" as initial example.
## Issue
4796 - i18n: Allow support for string overloading (multiple contexts)

## Approach
- Minimal code and process change.
- Handle on a case-by-case basis when reported by translators.
- Split the affected key in the string json by appending the context.
- Translators need to be aware of the new format and not translate context itself. Code is added to detect bad translations and will revert to English.

Sample in json:
  "About --[About section in Help Page]--": "About",
  "About --[tab title in Channel Page]--":  "About",

Sample in client code:
  title={__('About --[About section in Help Page]--')}

- "--[ ]--" was chosen as it's unique enough (unlikely for real strings to use it) and hopefully not that distracting in the client code.
- In the key itself, spaces are allowed after the string (i.e. before '--[') for neatness. It will be trimmed by the system.

## First example
"About" is used in 3 places:
   - Channel Page
   - Help Page
   - Footer (in Odysee branch)

For Russian, the word "About" is "O" and is usually not used standalone, but requires something behind it. A translator said so, and seems to be the case in other sites as well.
   "O xxx"
   "O yyy"

## Other languages
For other languages that are not impacted, they can just clone the same translation for each of the split keys, just like in English.

## Possible enhancement in Transifex
I see that Transifex's API includes a `context` entry. It might be possible to move the context-metadata there during the upload, so translators will never see the "--[]--" messiness (it will be shown as "Context: xxx" in the Transifex GUI).

I'm not sure how to test the Transifex side, so I did not investigate further.
2020-10-14 17:44:44 -04:00
.github Delete first timers issue template 2020-08-05 11:03:43 -04:00
.tx make "I Understand" acknowledgement work for i18n case 2019-10-13 12:42:55 -04:00
build Sign In => Log in 2020-09-29 17:12:32 -04:00
custom large claim-grid header text + optional icon 2020-09-29 17:12:32 -04:00
electron openItem is now openPath 2020-10-12 09:50:56 -04:00
flow-typed add style for comments with is_pinned=true 2020-10-08 11:48:32 -04:00
static Support for multiple string context + "About" as initial example. 2020-10-14 17:44:44 -04:00
ui Support for multiple string context + "About" as initial example. 2020-10-14 17:44:44 -04:00
web Translate the footer. 2020-10-14 17:44:44 -04:00
.env.defaults remove lbrycast from default follows 2020-10-07 16:24:15 -04:00
.eslintrc.json bring in comment code from lbry-redux 2020-06-23 16:01:20 -04:00
.flowconfig group comment notifications and clean up notification style 2020-07-30 16:15:02 -04:00
.gitignore sample robots files 2020-09-29 12:10:30 -04:00
.lintstagedrc.json rename lbrytv to web 2020-05-25 17:21:02 -04:00
.prettierrc.json redesign channel page 2019-05-06 23:29:50 -04:00
.sentryclirc update sentry config 2020-02-14 16:42:02 -05:00
.travis.yml add SHARE_DOMAIN_URL to travis config 2020-09-11 01:57:59 -04:00
action.yml update changelog and add back dangerfile 2019-09-03 23:21:24 -04:00
babel.config.js use same code for handling open links on lbry.tv and desktop 2019-12-03 13:25:17 -05:00
CHANGELOG.md bump sdk to 0.83.0 2020-10-12 15:01:24 -04:00
config.js add file reactions code from odysee 2020-10-02 15:28:00 -04:00
CONTRIBUTING.md Updated the broken link 2020-05-11 09:30:30 -04:00
dangerfile.js update changelog and add back dangerfile 2019-09-03 23:21:24 -04:00
Dockerfile remove old keytar references 2020-03-24 10:20:29 -04:00
electron-builder.json Initial commit for LBRY-First 2020-07-08 14:23:43 -04:00
LICENSE Update LICENSE 2020-02-03 09:19:48 -05:00
package.json v0.48.1 2020-10-14 13:13:41 -04:00
postcss.config.js redesign channel page 2019-05-06 23:29:50 -04:00
README.md Changed Raspberry Pi to ARM 2020-08-18 22:57:03 -04:00
webpack.base.config.js integrate PostCSS-plugin for RTL-adaptivity 2020-07-29 17:54:10 -04:00
webpack.electron.config.js Initial commit for LBRY-First 2020-07-08 14:23:43 -04:00
yarn.lock Bump electron from 9.0.1 to 9.3.1 2020-10-07 16:23:33 -04:00

LBRY App - https://lbry.tv

This repo contains the UI code that powers the official LBRY desktop app, as well as lbry.tv. The LBRY app is a graphical browser for the decentralized content marketplace provided by the LBRY protocol. It is essentially the lbry daemon bundled with a UI using Electron.

npm Build Status GitHub contributors

forthebadge forthebadge

App GIF

Table of Contents

  1. Install
  2. Usage
  3. Running from Source
  4. Contributing
  5. License
  6. Security
  7. Contact

Install

Windows Linux MacOS

We provide installers for Windows, macOS (v10.12.4, Sierra, or greater), and Debian-based Linux. See community maintained builds section for alternative Linux installations.

Windows macOS Linux
Latest Stable Release Download Download Download
Latest Pre-release Download Download Download

Our releases page also contains the latest release, pre-releases, and past builds.
Note: If the deb fails to install using the Ubuntu Software Center, install manually via sudo dpkg -i <path to deb>. You'll need to run sudo apt-get install -f if this is the first time installing it to install dependencies

To install from source or make changes to the application, continue to the next section below.

Community maintained builds for Arch Linux and Flatpak are available, see below. These installs will need to be updated manually as the in-app update process only supports Debian installs at this time. Note: If coming from a deb install, the directory structure is different and you'll need to migrate data.

Flatpak Arch ARM/ARM64
Latest Release FlatHub Page AUR Package Build Guide
Maintainers @kcSeb @kcSeb/@TimurKiyivinski @Madiator2011

Usage

Double click the installed application to interact with the LBRY network.

Running from Source

You can run the web version (lbry.tv), the electron app, or both at the same time.

Prerequisites

  1. Clone (or fork) this repository: git clone https://github.com/lbryio/lbry-desktop
  2. Change directory into the cloned repository: cd lbry-desktop
  3. Install the dependencies: yarn

Run the electron app

yarn compile:electron (this is only needed the first time you run the app)

yarn dev

  • If you want to build and launch the production app you can run yarn build. This will give you an executable inside the /dist folder. We use electron-builder to create distributable packages.

Run the web app for development

yarn compile:web (this is only needed the first time you run the app)

yarn dev:web

  • This uses webpack-dev-server and includes hot-reloading. If you want to debug the web server we use in production you can run yarn dev:web-server. This starts a server at localhost:1337 and does not include hot reloading.

Customize the web app

  • In root directory, copy .env.defaults to .env and make changes
cp .env.defaults .env
nano .env
  • To specify your own OG-IMAGE You can either place a png named v2-og.png in the /custom folder or specify the OG_IMAGE_URL in .env

  • To specify your own channels to be followed on first run AUTO_FOLLOW_URLS=lbry://@chan#123...a lbry://@chan2#456...a

  • If you want to customize the homepage content

  1. add CUSTOM_HOMEPAGE=true to the '.env' file
  2. copy /custom/homepage.example.js to /custom/homepage.js and make desired changes to homepage.js
  • If you want up to two custom sidebar links
PINNED_URI_1=@someurl#2/someclaim#4
PINNED_LABEL_1=Linktext

PINNED_URI_2=$/discover?t=tag&[queryparams]
PINNED_LABEL_2=OtherLinkText
  • Finally NODE_ENV=production yarn compile:web to rebuild Note: You don't need to edit the .env file in the /web folder - that is copied during compile.

Deploy the web app (experimental)

  1. Create a server with a domain name and a reverse proxy https to port 1337.
  2. Install pm2, node v10, yarn
  3. Clone this repo
  4. Make any customizations as above
  5. Run yarn to install
  6. Run NODE_ENV=production yarn compile:web to build
  7. Set up pm2 to start ./web/index.js

Run both at the same time

Run the two commands above in separate terminal windows

yarn dev

// in another terminal window
yarn dev:web

Resetting your Packages

If the app isn't building, or yarn xxx commands aren't working you may need to just reset your node_modules. To do so you can run: rm -r node_modules && yarn or del /s /q node_modules && yarn on Windows.

If you really think something might have gone wrong, you can force your repo to clear everything that doesn't match the repo with git reset --hard HEAD && git clean -fxd && git pull -r

Contributing

We ❤️ contributions from everyone and contributions to this project are encouraged, and compensated. We welcome bug reports, bug fixes and feedback is always appreciated. For more details, see CONTRIBUTING.md.

contributions welcome GitHub contributors

License

This project is MIT licensed. For the full license, see LICENSE.

Security

We take security seriously. Please contact security@lbry.com regarding any security issues. Our PGP key is here if you need it. All releases are signed by Sean Yesmunt.

Contact

The primary contact for this project is @seanyesmunt.