Skip to content
Snippets Groups Projects
Commit a618c1d3 authored by Jared Hancock's avatar Jared Hancock
Browse files

i18n: Workaround for Crowdin yaml parsing issue

Crowdin seems to have difficulty parsing YAML files with spaces between list
items. This patch avoids the issue by removing unnecessary empty lines in
the file.
parent e8fc078e
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,6 @@ ...@@ -41,7 +41,6 @@
size: 40 size: 40
length: 64 length: 64
validator: email # notrans validator: email # notrans
- type: text # notrans - type: text # notrans
name: name # notrans name: name # notrans
label: Full Name label: Full Name
...@@ -51,13 +50,11 @@ ...@@ -51,13 +50,11 @@
configuration: configuration:
size: 40 size: 40
length: 64 length: 64
- type: phone # notrans - type: phone # notrans
name: phone # notrans name: phone # notrans
label: Phone Number label: Phone Number
required: false required: false
sort: 3 sort: 3
- type: memo # notrans - type: memo # notrans
name: notes name: notes
label: Internal Notes label: Internal Notes
...@@ -67,7 +64,6 @@ ...@@ -67,7 +64,6 @@
configuration: configuration:
rows: 4 rows: 4
cols: 40 cols: 40
- id: 2 - id: 2
type: T # notrans type: T # notrans
title: Ticket Details title: Ticket Details
...@@ -88,7 +84,6 @@ ...@@ -88,7 +84,6 @@
configuration: configuration:
size: 40 size: 40
length: 50 length: 50
- id: 21 - id: 21
type: thread # notrans type: thread # notrans
name: message # notrans name: message # notrans
...@@ -97,7 +92,6 @@ ...@@ -97,7 +92,6 @@
required: true required: true
edit_mask: 15 edit_mask: 15
sort: 2 sort: 2
- id: 22 - id: 22
type: priority # notrans type: priority # notrans
name: priority # notrans name: priority # notrans
...@@ -106,7 +100,6 @@ ...@@ -106,7 +100,6 @@
private: true private: true
edit_mask: 3 edit_mask: 3
sort: 3 sort: 3
- type: C # notrans - type: C # notrans
title: Company Information title: Company Information
instructions: Details available in email templates instructions: Details available in email templates
...@@ -121,7 +114,6 @@ ...@@ -121,7 +114,6 @@
configuration: configuration:
size: 40 size: 40
length: 64 length: 64
- type: text # notrans - type: text # notrans
name: website # notrans name: website # notrans
label: Website label: Website
...@@ -129,7 +121,6 @@ ...@@ -129,7 +121,6 @@
configuration: configuration:
size: 40 size: 40
length: 64 length: 64
- type: phone # notrans - type: phone # notrans
name: phone # notrans name: phone # notrans
label: Phone Number label: Phone Number
...@@ -137,7 +128,6 @@ ...@@ -137,7 +128,6 @@
sort: 3 sort: 3
configuration: configuration:
ext: false ext: false
- type: memo # notrans - type: memo # notrans
name: address name: address
label: Address label: Address
...@@ -148,7 +138,6 @@ ...@@ -148,7 +138,6 @@
cols: 40 cols: 40
html: false html: false
length: 100 length: 100
- type: O # notrans - type: O # notrans
title: Organization Information title: Organization Information
instructions: Details on user organization instructions: Details on user organization
...@@ -163,7 +152,6 @@ ...@@ -163,7 +152,6 @@
configuration: configuration:
size: 40 size: 40
length: 64 length: 64
- type: memo - type: memo
name: address name: address
label: Address label: Address
...@@ -174,13 +162,11 @@ ...@@ -174,13 +162,11 @@
cols: 40 cols: 40
length: 100 length: 100
html: false html: false
- type: phone - type: phone
name: phone name: phone
label: Phone label: Phone
required: false required: false
sort: 3 sort: 3
- type: text - type: text
name: website name: website
label: Website label: Website
...@@ -189,7 +175,6 @@ ...@@ -189,7 +175,6 @@
configuration: configuration:
size: 40 size: 40
length: 0 length: 0
- type: memo # notrans - type: memo # notrans
name: notes name: notes
label: Internal Notes label: Internal Notes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment