-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump packages * Tabs > Spaces * Add test cases
- Loading branch information
Showing
47 changed files
with
7,197 additions
and
7,515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = tab | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = crlf | ||
charset = utf-8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
const quotes = { | ||
leftDoubleQuote : "„", | ||
rightDoubleQuote : "“", | ||
leftSingleQuote : "‚", | ||
rightSingleQuote : "‘", | ||
leftDoubleQuote : "„", | ||
rightDoubleQuote : "“", | ||
leftSingleQuote : "‚", | ||
rightSingleQuote : "‘", | ||
}; | ||
|
||
const numbers = { | ||
ordinalIndicator : "\\.", | ||
romanOrdinalIndicator : "\\.", | ||
ordinalIndicator : "\\.", | ||
romanOrdinalIndicator : "\\.", | ||
} | ||
|
||
const singleWordAbbreviations = [ | ||
"č", | ||
"s", | ||
"fol", | ||
"str", | ||
"r", | ||
"par", | ||
"odst", | ||
"např", | ||
"sv", | ||
"tj", | ||
"tzv", | ||
"č", | ||
"s", | ||
"fol", | ||
"str", | ||
"r", | ||
"par", | ||
"odst", | ||
"např", | ||
"sv", | ||
"tj", | ||
"tzv", | ||
] | ||
|
||
// Disregard correct spelling in your locale | ||
// and provide abbreviations in format “abbr abbr abbr…” | ||
const multipleWordAbbreviations = [ | ||
"hl m", | ||
"n l", | ||
"p n l", | ||
"př n l", | ||
"hl m", | ||
"n l", | ||
"p n l", | ||
"př n l", | ||
|
||
] | ||
|
||
export default { | ||
quotes, | ||
numbers, | ||
singleWordAbbreviations, | ||
multipleWordAbbreviations | ||
quotes, | ||
numbers, | ||
singleWordAbbreviations, | ||
multipleWordAbbreviations | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,70 @@ | ||
const quotes = { | ||
leftDoubleQuote : "„", | ||
rightDoubleQuote : "“", | ||
leftSingleQuote : "‚", | ||
rightSingleQuote : "‘", | ||
leftDoubleQuote : "„", | ||
rightDoubleQuote : "“", | ||
leftSingleQuote : "‚", | ||
rightSingleQuote : "‘", | ||
}; | ||
|
||
const numbers = { | ||
ordinalIndicator : "\\.", | ||
romanOrdinalIndicator : "\\.", | ||
ordinalIndicator : "\\.", | ||
romanOrdinalIndicator : "\\.", | ||
} | ||
|
||
const singleWordAbbreviations = [ | ||
"S", | ||
"z", | ||
"St", | ||
"Stk", | ||
"Mo", | ||
"Di", | ||
"Mi", | ||
"Do", | ||
"Fr", | ||
"Sa", | ||
"So", | ||
"Bhf", | ||
"Hbf", | ||
"Nr", | ||
"ca", | ||
"usw", | ||
"geb", | ||
"gest", | ||
"u" | ||
"S", | ||
"z", | ||
"St", | ||
"Stk", | ||
"Mo", | ||
"Di", | ||
"Mi", | ||
"Do", | ||
"Fr", | ||
"Sa", | ||
"So", | ||
"Bhf", | ||
"Hbf", | ||
"Nr", | ||
"ca", | ||
"usw", | ||
"geb", | ||
"gest", | ||
"u" | ||
] | ||
|
||
// Disregard correct spelling in your locale | ||
// and provide abbreviations in format “abbr abbr abbr…” | ||
const multipleWordAbbreviations = [ | ||
"b w", | ||
"d h", | ||
"d i", | ||
"e V", | ||
"n Chr", | ||
"s a", | ||
"s o", | ||
"s u", | ||
"u a", | ||
"u ä", | ||
"u Ä", | ||
"u dgl", | ||
"u U", | ||
"u z", | ||
"u zw", | ||
"v a", | ||
"v Chr", | ||
"z B", | ||
"z T", | ||
"z Zt", | ||
"n u Z", | ||
"u a m", | ||
"v u Z", | ||
"Ges m b H", | ||
"b w", | ||
"d h", | ||
"d i", | ||
"e V", | ||
"n Chr", | ||
"s a", | ||
"s o", | ||
"s u", | ||
"u a", | ||
"u ä", | ||
"u Ä", | ||
"u dgl", | ||
"u U", | ||
"u z", | ||
"u zw", | ||
"v a", | ||
"v Chr", | ||
"z B", | ||
"z T", | ||
"z Zt", | ||
"n u Z", | ||
"u a m", | ||
"v u Z", | ||
"Ges m b H", | ||
] | ||
|
||
|
||
export default { | ||
quotes, | ||
numbers, | ||
singleWordAbbreviations, | ||
multipleWordAbbreviations | ||
quotes, | ||
numbers, | ||
singleWordAbbreviations, | ||
multipleWordAbbreviations | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
const quotes = { | ||
leftDoubleQuote : "“", | ||
rightDoubleQuote : "”", | ||
leftSingleQuote : "‘", | ||
rightSingleQuote : "’", | ||
leftDoubleQuote : "“", | ||
rightDoubleQuote : "”", | ||
leftSingleQuote : "‘", | ||
rightSingleQuote : "’", | ||
}; | ||
|
||
const numbers = { | ||
ordinalIndicator : "st|nd|rd|th", | ||
romanOrdinalIndicator : "", | ||
ordinalIndicator : "st|nd|rd|th", | ||
romanOrdinalIndicator : "", | ||
} | ||
|
||
const singleWordAbbreviations = [ | ||
"p", | ||
"pp", | ||
"no", | ||
"vol" | ||
"p", | ||
"pp", | ||
"no", | ||
"vol" | ||
] | ||
|
||
// Disregard correct spelling in your locale | ||
// and provide abbreviations in format “abbr abbr abbr…” | ||
const multipleWordAbbreviations = [ | ||
"U S", | ||
"e g", | ||
"i e", | ||
"a m", | ||
"p m", | ||
"U S", | ||
"e g", | ||
"i e", | ||
"a m", | ||
"p m", | ||
] | ||
|
||
export default { | ||
quotes, | ||
numbers, | ||
singleWordAbbreviations, | ||
multipleWordAbbreviations | ||
quotes, | ||
numbers, | ||
singleWordAbbreviations, | ||
multipleWordAbbreviations | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
const quotes = { | ||
leftDoubleQuote : "«", | ||
rightDoubleQuote : "»", | ||
leftSingleQuote : "‹", | ||
rightSingleQuote : "›", | ||
leftDoubleQuote : "«", | ||
rightDoubleQuote : "»", | ||
leftSingleQuote : "‹", | ||
rightSingleQuote : "›", | ||
}; | ||
|
||
const numbers = { | ||
ordinalIndicator : "\\.", | ||
romanOrdinalIndicator : "\\.", | ||
ordinalIndicator : "\\.", | ||
romanOrdinalIndicator : "\\.", | ||
} | ||
|
||
const singleWordAbbreviations = [ | ||
"ціт", | ||
"ст", | ||
"канц", | ||
"абз", | ||
"тзв", | ||
"Зб", | ||
"ч", | ||
"напр" | ||
"ціт", | ||
"ст", | ||
"канц", | ||
"абз", | ||
"тзв", | ||
"Зб", | ||
"ч", | ||
"напр" | ||
|
||
] | ||
|
||
// Disregard correct spelling in your locale | ||
// and provide abbreviations in format “abbr abbr abbr…” | ||
const multipleWordAbbreviations = [ | ||
"т зн", | ||
"Е Ч", | ||
"евід ч", | ||
"род ч", | ||
"т ч", | ||
"т д", | ||
"т зн", | ||
"Е Ч", | ||
"евід ч", | ||
"род ч", | ||
"т ч", | ||
"т д", | ||
] | ||
|
||
export default { | ||
quotes, | ||
numbers, | ||
singleWordAbbreviations, | ||
multipleWordAbbreviations | ||
quotes, | ||
numbers, | ||
singleWordAbbreviations, | ||
multipleWordAbbreviations | ||
} |
Oops, something went wrong.