From 5836e55a36f09ca221deaab64a16b478e5bf97ad Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Fri, 11 Mar 2022 19:42:07 +0100 Subject: [PATCH] docs(readme): update readme with languages section, add license badge --- README.md | 17 ++++++++++++++--- client/config/languages.ts | 10 ++++++++++ client/wrappers/DateWrapper.tsx | 2 ++ 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2e30a09a..46af8fd9 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,12 @@ # Reactive Resume +![Project Version](https://img.shields.io/github/package-json/v/AmruthPillai/Reactive-Resume?style=flat-square) +![Project License](https://img.shields.io/github/license/AmruthPillai/Reactive-Resume?style=flat-square) [![Docker Pulls](https://img.shields.io/docker/pulls/amruthpillai/reactive-resume?style=flat-square)](https://hub.docker.com/r/amruthpillai/reactive-resume) [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FAmruthPillai%2FReactive-Resume.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2FAmruthPillai%2FReactive-Resume?ref=badge_shield) -## [Go to App](https://beta.rxresu.me/) +## [Go to App](https://rxresu.me/) Reactive Resume is a free and open source resume builder that’s built to make the mundane tasks of creating, updating and sharing your resume as easy as 1, 2, 3. With this app, you can create multiple resumes, share them with recruiters through a unique link and print as PDF, all for free, no advertisements, without losing the integrity and privacy of your data. @@ -15,13 +17,13 @@ You have complete control over what goes into your resume, how it looks, what co - Free, forever - No Advertising -- No Tracking (no 🍪s too) +- No User Tracking - Sync your data across devices +- Accessible in multiple languages - Import data from [LinkedIn](https://www.linkedin.com/), [JSON Resume](https://jsonresume.org/) - Manage multiple resumes with one account - Open Source (with large community support) - Send your resume to others with a unique sharable link -- Accessible in multiple languages, [help translate here](https://translate.rxresu.me/) - Pick any font from [Google Fonts](https://fonts.google.com/) to use on your resume - Choose from 6 vibrant templates and more coming soon - Export your resume to JSON or PDF format with just one click @@ -31,6 +33,15 @@ You have complete control over what goes into your resume, how it looks, what co - Tailor-made Backend and Database, isolated from Google, Amazon etc. - **Oh, and did I mention that it's free?** +## Languages + +- English +- German (Deutsch) +- Kannada (ಕನ್ನಡ) (@aksh1251) +- Tamil (தமிழ்) + +Help by [translating Reactive Resume](https://translate.rxresu.me) to your language! + ## Docker Setup You can pull the prebuilt docker images right off the shelf from either [Docker Hub](https://hub.docker.com/repository/docker/amruthpillai/reactive-resume) or [GitHub Container Registry](https://ghcr.io/amruthpillai/reactive-resume). Keep in mind, you would also need a database for this to work as intended. diff --git a/client/config/languages.ts b/client/config/languages.ts index e4302adf..07c1d18b 100644 --- a/client/config/languages.ts +++ b/client/config/languages.ts @@ -14,6 +14,16 @@ export const languages: Language[] = [ name: 'Kannada', localName: 'ಕನ್ನಡ', }, + { + code: 'ta', + name: 'Tamil', + localName: 'தமிழ்', + }, + { + code: 'de', + name: 'German', + localName: 'Deutsch', + }, ]; export const languageMap: Record = languages.reduce( diff --git a/client/wrappers/DateWrapper.tsx b/client/wrappers/DateWrapper.tsx index ab1f166e..234e9280 100644 --- a/client/wrappers/DateWrapper.tsx +++ b/client/wrappers/DateWrapper.tsx @@ -10,7 +10,9 @@ const DateWrapper: React.FC = ({ children }) => { dayjs.extend(relativeTime); // Locales + require('dayjs/locale/de'); require('dayjs/locale/kn'); + require('dayjs/locale/ta'); locale && dayjs.locale(locale); }, [locale]);