Skip to content

Commit 442ae0c

Browse files
committed
fix some text overflow issue and update contributing.md file
1 parent 1075b6e commit 442ae0c

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

CONTRIBUTING.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,20 @@ flutter doctor
6868
flutter pub get
6969
```
7070

71-
5. Installing packages (**IOS ONLY**)
71+
5. Initialize localization for multi-language support.
72+
73+
```bash
74+
flutter gen-l10n --arb-dir=lib/l10n/arb
75+
```
76+
77+
6. Installing packages (**IOS ONLY**)
7278

7379
```bash
7480
cd ios
7581
pod install --verbose
7682
```
7783

78-
6. Run the app:
84+
7. Run the app:
7985

8086
```bash
8187
flutter run

lib/Pages/home_screen/widgets/rss_feed_home_page.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1521,11 +1521,11 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
15211521
const EdgeInsets.all(
15221522
5.0),
15231523
child: Text(
1524-
tagLable.length <= 20
1524+
tagLable.length <= 17
15251525
? tagLable
15261526
: tagLable
15271527
.substring(
1528-
0, 20) +
1528+
0, 17) +
15291529
"..",
15301530
style: TextStyle(
15311531
fontSize: 12),

lib/l10n/arb/app_en.arb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@
6868
"rules_match": "Match",
6969
"rules_exclude": "Exclude",
7070
"feeds_no_rules_defined": "No rules defined.",
71-
"rules_textfield_lable" : "Lable",
72-
"rules_textfield_hint" : "Lable",
71+
"rules_textfield_lable" : "Label",
72+
"rules_textfield_hint" : "Label",
7373
"rules_textfield_validator" : "You must specify a label.",
7474
"feeds_applicable_feed": "Applicable Feed",
7575
"feeds_applicable_feed_validator": "Please select a feed",

lib/l10n/arb/app_hi.arb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"torrent_magnet_link_textfield_hint": "टोरेंट URL या मैग्नेट लिंक",
1313
"torrent_magnet_link_textfield_validator": "फ़ील्ड खाली नहीं हो सकता",
1414
"textfield_destination_torrent": "गंतव्य",
15-
"torrents_destination_base_path": "बेस पथ के रूप में उपयोग करें",
15+
"torrents_destination_base_path": "बेस पथ रूप में उपयोग",
1616
"torrents_destination_completed": "पूर्ण",
1717
"torrents_destination_sequential": "क्रमिक डाउनलोड",
1818
"add_torrent_button": "टोरेंट जोड़ें",
@@ -71,7 +71,7 @@
7171
"feeds_match_pattern_validator": "अवैध नियमित अभिव्यक्ति।",
7272
"rules_exclude_pattern": "पैटर्न छोड़ें",
7373
"feeds_torrent_destination": "टॉरेंट गंतव्य",
74-
"feeds_rule_start_on_load": "लोड पर शुरू करें",
74+
"feeds_rule_start_on_load": "लोड पर शुरू",
7575
"button_new": "नया",
7676
"button_add": "जोड़ें",
7777
"button_cancel": "रद्द करें",

0 commit comments

Comments
 (0)