@plone/volto 16.23.0 → 16.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. package/.changelog.draft +8 -9
  2. package/.yarn/install-state.gz +0 -0
  3. package/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs +541 -0
  4. package/.yarn/releases/yarn-3.6.3.cjs +874 -0
  5. package/CHANGELOG.md +35 -0
  6. package/cypress.config.js +17 -0
  7. package/locales/ca/LC_MESSAGES/volto.po +31 -5
  8. package/locales/ca.json +1 -1
  9. package/locales/de/LC_MESSAGES/volto.po +31 -5
  10. package/locales/de.json +1 -1
  11. package/locales/en/LC_MESSAGES/volto.po +30 -4
  12. package/locales/en.json +1 -1
  13. package/locales/es/LC_MESSAGES/volto.po +31 -5
  14. package/locales/es.json +1 -1
  15. package/locales/eu/LC_MESSAGES/volto.po +30 -4
  16. package/locales/eu.json +1 -1
  17. package/locales/fi/LC_MESSAGES/volto.po +30 -4
  18. package/locales/fi.json +1 -1
  19. package/locales/fr/LC_MESSAGES/volto.po +31 -5
  20. package/locales/fr.json +1 -1
  21. package/locales/it/LC_MESSAGES/volto.po +30 -4
  22. package/locales/it.json +1 -1
  23. package/locales/ja/LC_MESSAGES/volto.po +30 -4
  24. package/locales/ja.json +1 -1
  25. package/locales/nl/LC_MESSAGES/volto.po +31 -5
  26. package/locales/nl.json +1 -1
  27. package/locales/pt/LC_MESSAGES/volto.po +31 -5
  28. package/locales/pt.json +1 -1
  29. package/locales/pt_BR/LC_MESSAGES/volto.po +30 -4
  30. package/locales/pt_BR.json +1 -1
  31. package/locales/ro/LC_MESSAGES/volto.po +31 -5
  32. package/locales/ro.json +1 -1
  33. package/locales/volto.pot +30 -4
  34. package/locales/zh_CN/LC_MESSAGES/volto.po +31 -5
  35. package/locales/zh_CN.json +1 -1
  36. package/package.json +2 -2
  37. package/packages/volto-slate/package.json +1 -1
  38. package/packages/volto-slate/src/editor/plugins/Link/render.jsx +5 -6
  39. package/src/components/manage/Blocks/Listing/ListingData.jsx +3 -3
  40. package/src/components/manage/Blocks/Listing/ListingData.test.jsx +2 -0
  41. package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +1 -1
  42. package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +42 -25
  43. package/src/components/manage/Blocks/ToC/View.jsx +1 -0
  44. package/src/components/manage/Controlpanels/Groups/GroupsControlpanel.jsx +65 -38
  45. package/src/components/manage/Controlpanels/Users/RenderUsers.jsx +95 -5
  46. package/src/components/manage/Controlpanels/Users/UsersControlpanel.jsx +116 -103
  47. package/src/components/manage/Sharing/Sharing.jsx +39 -16
  48. package/src/components/manage/Widgets/QueryWidget.jsx +6 -2
  49. package/src/helpers/MessageLabels/MessageLabels.js +26 -4
  50. package/src/reducers/navigation/navigation.js +5 -5
  51. package/src/reducers/navigation/navigation.test.js +30 -0
  52. package/styles/Microsoft/AMPM.yml +9 -0
  53. package/styles/Microsoft/Accessibility.yml +25 -0
  54. package/styles/Microsoft/Acronyms.yml +64 -0
  55. package/styles/Microsoft/Adverbs.yml +270 -0
  56. package/styles/Microsoft/Auto.yml +11 -0
  57. package/styles/Microsoft/Avoid.yml +14 -0
  58. package/styles/Microsoft/ComplexWords.yml +120 -0
  59. package/styles/Microsoft/Contractions.yml +50 -0
  60. package/styles/Microsoft/Dashes.yml +13 -0
  61. package/styles/Microsoft/DateFormat.yml +8 -0
  62. package/styles/Microsoft/DateNumbers.yml +40 -0
  63. package/styles/Microsoft/DateOrder.yml +8 -0
  64. package/styles/Microsoft/Ellipses.yml +9 -0
  65. package/styles/Microsoft/FirstPerson.yml +16 -0
  66. package/styles/Microsoft/Foreign.yml +13 -0
  67. package/styles/Microsoft/Gender.yml +8 -0
  68. package/styles/Microsoft/GenderBias.yml +44 -0
  69. package/styles/Microsoft/GeneralURL.yml +11 -0
  70. package/styles/Microsoft/HeadingAcronyms.yml +7 -0
  71. package/styles/Microsoft/HeadingColons.yml +8 -0
  72. package/styles/Microsoft/HeadingPunctuation.yml +13 -0
  73. package/styles/Microsoft/Headings.yml +28 -0
  74. package/styles/Microsoft/Hyphens.yml +14 -0
  75. package/styles/Microsoft/Negative.yml +13 -0
  76. package/styles/Microsoft/Ordinal.yml +13 -0
  77. package/styles/Microsoft/OxfordComma.yml +8 -0
  78. package/styles/Microsoft/Passive.yml +183 -0
  79. package/styles/Microsoft/Percentages.yml +7 -0
  80. package/styles/Microsoft/Quotes.yml +7 -0
  81. package/styles/Microsoft/RangeFormat.yml +13 -0
  82. package/styles/Microsoft/RangeTime.yml +13 -0
  83. package/styles/Microsoft/Ranges.yml +7 -0
  84. package/styles/Microsoft/Semicolon.yml +8 -0
  85. package/styles/Microsoft/SentenceLength.yml +7 -0
  86. package/styles/Microsoft/Spacing.yml +8 -0
  87. package/styles/Microsoft/Suspended.yml +7 -0
  88. package/styles/Microsoft/Terms.yml +41 -0
  89. package/styles/Microsoft/URLFormat.yml +10 -0
  90. package/styles/Microsoft/Units.yml +16 -0
  91. package/styles/Microsoft/Vocab.yml +25 -0
  92. package/styles/Microsoft/We.yml +11 -0
  93. package/styles/Microsoft/Wordiness.yml +122 -0
  94. package/styles/Microsoft/meta.json +4 -0
  95. package/theme/themes/pastanaga/elements/input.overrides +5 -1
  96. package/theme/themes/pastanaga/extras/login.less +2 -0
@@ -0,0 +1,44 @@
1
+ extends: substitution
2
+ message: "Consider using '%s' instead of '%s'."
3
+ ignorecase: true
4
+ level: error
5
+ swap:
6
+ (?:alumna|alumnus): graduate
7
+ (?:alumnae|alumni): graduates
8
+ air(?:m[ae]n|wom[ae]n): pilot(s)
9
+ anchor(?:m[ae]n|wom[ae]n): anchor(s)
10
+ authoress: author
11
+ camera(?:m[ae]n|wom[ae]n): camera operator(s)
12
+ chair(?:m[ae]n|wom[ae]n): chair(s)
13
+ congress(?:m[ae]n|wom[ae]n): member(s) of congress
14
+ door(?:m[ae]|wom[ae]n): concierge(s)
15
+ draft(?:m[ae]n|wom[ae]n): drafter(s)
16
+ fire(?:m[ae]n|wom[ae]n): firefighter(s)
17
+ fisher(?:m[ae]n|wom[ae]n): fisher(s)
18
+ fresh(?:m[ae]n|wom[ae]n): first-year student(s)
19
+ garbage(?:m[ae]n|wom[ae]n): waste collector(s)
20
+ lady lawyer: lawyer
21
+ ladylike: courteous
22
+ landlord: building manager
23
+ mail(?:m[ae]n|wom[ae]n): mail carriers
24
+ man and wife: husband and wife
25
+ man enough: strong enough
26
+ mankind: human kind
27
+ manmade: manufactured
28
+ manpower: personnel
29
+ men and girls: men and women
30
+ middle(?:m[ae]n|wom[ae]n): intermediary
31
+ news(?:m[ae]n|wom[ae]n): journalist(s)
32
+ ombuds(?:man|woman): ombuds
33
+ oneupmanship: upstaging
34
+ poetess: poet
35
+ police(?:m[ae]n|wom[ae]n): police officer(s)
36
+ repair(?:m[ae]n|wom[ae]n): technician(s)
37
+ sales(?:m[ae]n|wom[ae]n): salesperson or sales people
38
+ service(?:m[ae]n|wom[ae]n): soldier(s)
39
+ steward(?:ess)?: flight attendant
40
+ tribes(?:m[ae]n|wom[ae]n): tribe member(s)
41
+ waitress: waiter
42
+ woman doctor: doctor
43
+ woman scientist[s]?: scientist(s)
44
+ work(?:m[ae]n|wom[ae]n): worker(s)
@@ -0,0 +1,11 @@
1
+ extends: existence
2
+ message: "For a general audience, use 'address' rather than 'URL'."
3
+ link: https://docs.microsoft.com/en-us/style-guide/urls-web-addresses
4
+ level: warning
5
+ action:
6
+ name: replace
7
+ params:
8
+ - URL
9
+ - address
10
+ tokens:
11
+ - URL
@@ -0,0 +1,7 @@
1
+ extends: existence
2
+ message: "Avoid using acronyms in a title or heading."
3
+ link: https://docs.microsoft.com/en-us/style-guide/acronyms#be-careful-with-acronyms-in-titles-and-headings
4
+ level: warning
5
+ scope: heading
6
+ tokens:
7
+ - '[A-Z]{2,4}'
@@ -0,0 +1,8 @@
1
+ extends: existence
2
+ message: "Capitalize '%s'."
3
+ link: https://docs.microsoft.com/en-us/style-guide/punctuation/colons
4
+ nonword: true
5
+ level: error
6
+ scope: heading
7
+ tokens:
8
+ - ':\s[a-z]'
@@ -0,0 +1,13 @@
1
+ extends: existence
2
+ message: "Don't use end punctuation in headings."
3
+ link: https://docs.microsoft.com/en-us/style-guide/punctuation/periods
4
+ nonword: true
5
+ level: warning
6
+ scope: heading
7
+ action:
8
+ name: edit
9
+ params:
10
+ - remove
11
+ - '.?!'
12
+ tokens:
13
+ - '[a-z][.?!](?:\s|$)'
@@ -0,0 +1,28 @@
1
+ extends: capitalization
2
+ message: "'%s' should use sentence-style capitalization."
3
+ link: https://docs.microsoft.com/en-us/style-guide/capitalization
4
+ level: suggestion
5
+ scope: heading
6
+ match: $sentence
7
+ indicators:
8
+ - ':'
9
+ exceptions:
10
+ - Azure
11
+ - CLI
12
+ - Code
13
+ - Cosmos
14
+ - Docker
15
+ - Emmet
16
+ - I
17
+ - Kubernetes
18
+ - Linux
19
+ - macOS
20
+ - Marketplace
21
+ - MongoDB
22
+ - REPL
23
+ - Studio
24
+ - TypeScript
25
+ - URLs
26
+ - Visual
27
+ - VS
28
+ - Windows
@@ -0,0 +1,14 @@
1
+ extends: existence
2
+ message: "'%s' doesn't need a hyphen."
3
+ link: https://docs.microsoft.com/en-us/style-guide/punctuation/dashes-hyphens/hyphens
4
+ level: warning
5
+ ignorecase: false
6
+ nonword: true
7
+ action:
8
+ name: edit
9
+ params:
10
+ - replace
11
+ - '-'
12
+ - ' '
13
+ tokens:
14
+ - '\s[^\s-]+ly-'
@@ -0,0 +1,13 @@
1
+ extends: existence
2
+ message: "Form a negative number with an en dash, not a hyphen."
3
+ link: https://docs.microsoft.com/en-us/style-guide/numbers
4
+ nonword: true
5
+ level: error
6
+ action:
7
+ name: edit
8
+ params:
9
+ - replace
10
+ - '-'
11
+ - '–'
12
+ tokens:
13
+ - '\s-\d+\s'
@@ -0,0 +1,13 @@
1
+ extends: existence
2
+ message: "Don't add -ly to an ordinal number."
3
+ link: https://docs.microsoft.com/en-us/style-guide/numbers
4
+ level: error
5
+ action:
6
+ name: edit
7
+ params:
8
+ - trim
9
+ - ly
10
+ tokens:
11
+ - firstly
12
+ - secondly
13
+ - thirdly
@@ -0,0 +1,8 @@
1
+ extends: existence
2
+ message: "Use the Oxford comma in '%s'."
3
+ link: https://docs.microsoft.com/en-us/style-guide/punctuation/commas
4
+ scope: sentence
5
+ level: suggestion
6
+ nonword: true
7
+ tokens:
8
+ - '(?:[^\s,]+,){1,} \w+ (?:and|or) \w+[.?!]'
@@ -0,0 +1,183 @@
1
+ extends: existence
2
+ message: "'%s' looks like passive voice."
3
+ ignorecase: true
4
+ level: suggestion
5
+ raw:
6
+ - \b(am|are|were|being|is|been|was|be)\b\s*
7
+ tokens:
8
+ - '[\w]+ed'
9
+ - awoken
10
+ - beat
11
+ - become
12
+ - been
13
+ - begun
14
+ - bent
15
+ - beset
16
+ - bet
17
+ - bid
18
+ - bidden
19
+ - bitten
20
+ - bled
21
+ - blown
22
+ - born
23
+ - bought
24
+ - bound
25
+ - bred
26
+ - broadcast
27
+ - broken
28
+ - brought
29
+ - built
30
+ - burnt
31
+ - burst
32
+ - cast
33
+ - caught
34
+ - chosen
35
+ - clung
36
+ - come
37
+ - cost
38
+ - crept
39
+ - cut
40
+ - dealt
41
+ - dived
42
+ - done
43
+ - drawn
44
+ - dreamt
45
+ - driven
46
+ - drunk
47
+ - dug
48
+ - eaten
49
+ - fallen
50
+ - fed
51
+ - felt
52
+ - fit
53
+ - fled
54
+ - flown
55
+ - flung
56
+ - forbidden
57
+ - foregone
58
+ - forgiven
59
+ - forgotten
60
+ - forsaken
61
+ - fought
62
+ - found
63
+ - frozen
64
+ - given
65
+ - gone
66
+ - gotten
67
+ - ground
68
+ - grown
69
+ - heard
70
+ - held
71
+ - hidden
72
+ - hit
73
+ - hung
74
+ - hurt
75
+ - kept
76
+ - knelt
77
+ - knit
78
+ - known
79
+ - laid
80
+ - lain
81
+ - leapt
82
+ - learnt
83
+ - led
84
+ - left
85
+ - lent
86
+ - let
87
+ - lighted
88
+ - lost
89
+ - made
90
+ - meant
91
+ - met
92
+ - misspelt
93
+ - mistaken
94
+ - mown
95
+ - overcome
96
+ - overdone
97
+ - overtaken
98
+ - overthrown
99
+ - paid
100
+ - pled
101
+ - proven
102
+ - put
103
+ - quit
104
+ - read
105
+ - rid
106
+ - ridden
107
+ - risen
108
+ - run
109
+ - rung
110
+ - said
111
+ - sat
112
+ - sawn
113
+ - seen
114
+ - sent
115
+ - set
116
+ - sewn
117
+ - shaken
118
+ - shaven
119
+ - shed
120
+ - shod
121
+ - shone
122
+ - shorn
123
+ - shot
124
+ - shown
125
+ - shrunk
126
+ - shut
127
+ - slain
128
+ - slept
129
+ - slid
130
+ - slit
131
+ - slung
132
+ - smitten
133
+ - sold
134
+ - sought
135
+ - sown
136
+ - sped
137
+ - spent
138
+ - spilt
139
+ - spit
140
+ - split
141
+ - spoken
142
+ - spread
143
+ - sprung
144
+ - spun
145
+ - stolen
146
+ - stood
147
+ - stridden
148
+ - striven
149
+ - struck
150
+ - strung
151
+ - stuck
152
+ - stung
153
+ - stunk
154
+ - sung
155
+ - sunk
156
+ - swept
157
+ - swollen
158
+ - sworn
159
+ - swum
160
+ - swung
161
+ - taken
162
+ - taught
163
+ - thought
164
+ - thrived
165
+ - thrown
166
+ - thrust
167
+ - told
168
+ - torn
169
+ - trodden
170
+ - understood
171
+ - upheld
172
+ - upset
173
+ - wed
174
+ - wept
175
+ - withheld
176
+ - withstood
177
+ - woken
178
+ - won
179
+ - worn
180
+ - wound
181
+ - woven
182
+ - written
183
+ - wrung
@@ -0,0 +1,7 @@
1
+ extends: existence
2
+ message: "Use a numeral plus the units."
3
+ link: https://docs.microsoft.com/en-us/style-guide/numbers
4
+ nonword: true
5
+ level: error
6
+ tokens:
7
+ - '\b[a-zA-z]+\spercent\b'
@@ -0,0 +1,7 @@
1
+ extends: existence
2
+ message: 'Punctuation should be inside the quotes.'
3
+ link: https://docs.microsoft.com/en-us/style-guide/punctuation/quotation-marks
4
+ level: error
5
+ nonword: true
6
+ tokens:
7
+ - '["“][^"”“]+["”][.,]'
@@ -0,0 +1,13 @@
1
+ extends: existence
2
+ message: "Use an en dash in a range of numbers."
3
+ link: https://docs.microsoft.com/en-us/style-guide/numbers
4
+ nonword: true
5
+ level: error
6
+ action:
7
+ name: edit
8
+ params:
9
+ - replace
10
+ - '-'
11
+ - '–'
12
+ tokens:
13
+ - '\b\d+\s?[-]\s?\d+\b'
@@ -0,0 +1,13 @@
1
+ extends: existence
2
+ message: "Use 'to' instead of a dash in '%s'."
3
+ link: https://docs.microsoft.com/en-us/style-guide/numbers
4
+ nonword: true
5
+ level: error
6
+ action:
7
+ name: edit
8
+ params:
9
+ - replace
10
+ - '[-–]'
11
+ - 'to'
12
+ tokens:
13
+ - '\b(?:AM|PM)\s?[-–]\s?.+(?:AM|PM)\b'
@@ -0,0 +1,7 @@
1
+ extends: existence
2
+ message: "In most cases, use 'from' or 'through' to describe a range of numbers."
3
+ link: 'https://docs.microsoft.com/en-us/style-guide/numbers'
4
+ nonword: true
5
+ level: warning
6
+ tokens:
7
+ - '\b\d+\s?[-–]\s?\d+\b'
@@ -0,0 +1,8 @@
1
+ extends: existence
2
+ message: "Try to simplify this sentence."
3
+ link: https://docs.microsoft.com/en-us/style-guide/punctuation/semicolons
4
+ nonword: true
5
+ scope: sentence
6
+ level: suggestion
7
+ tokens:
8
+ - ';'
@@ -0,0 +1,7 @@
1
+ extends: occurrence
2
+ message: "Try to keep sentences short (< 30 words)."
3
+ scope: sentence
4
+ level: suggestion
5
+ max: 30
6
+ token: \b(\w+)\b
7
+
@@ -0,0 +1,8 @@
1
+ extends: existence
2
+ message: "'%s' should have one space."
3
+ link: https://docs.microsoft.com/en-us/style-guide/punctuation/periods
4
+ level: error
5
+ nonword: true
6
+ tokens:
7
+ - '[a-z][.?!] {2,}[A-Z]'
8
+ - '[a-z][.?!][A-Z]'
@@ -0,0 +1,7 @@
1
+ extends: existence
2
+ message: "Don't use '%s' unless space is limited."
3
+ link: https://docs.microsoft.com/en-us/style-guide/punctuation/dashes-hyphens/hyphens
4
+ ignorecase: true
5
+ level: warning
6
+ tokens:
7
+ - '\w+- and \w+-'
@@ -0,0 +1,41 @@
1
+ extends: substitution
2
+ message: "Prefer '%s' over '%s'."
3
+ # term preference should be based on microsoft style guide, such as
4
+ link: https://learn.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/a/adapter
5
+ level: warning
6
+ ignorecase: true
7
+ action:
8
+ name: replace
9
+ swap:
10
+ '(?:agent|virtual assistant|intelligent personal assistant)': personal digital assistant
11
+ '(?:drive C:|drive C>|C: drive)': drive C
12
+ '(?:internet bot|web robot)s?': bot(s)
13
+ '(?:microsoft cloud|the cloud)': cloud
14
+ '(?:mobile|smart) ?phone': phone
15
+ '24/7': every day
16
+ 'audio(?:-| )book': audiobook
17
+ 'back(?:-| )light': backlight
18
+ 'chat ?bots?': chatbot(s)
19
+ adaptor: adapter
20
+ administrate: administer
21
+ afterwards: afterward
22
+ alphabetic: alphabetical
23
+ alphanumerical: alphanumeric
24
+ anti-aliasing: antialiasing
25
+ anti-malware: antimalware
26
+ anti-spyware: antispyware
27
+ anti-virus: antivirus
28
+ appendixes: appendices
29
+ artificial intelligence: AI
30
+ '(?:assembler|machine language)': assembly language
31
+ caap: CaaP
32
+ conversation-as-a-platform: conversation as a platform
33
+ eb: EB
34
+ gb: GB
35
+ gbps: Gbps
36
+ kb: KB
37
+ keypress: keystroke
38
+ mb: MB
39
+ pb: PB
40
+ tb: TB
41
+ zb: ZB
@@ -0,0 +1,10 @@
1
+ extends: substitution
2
+ message: "Use '%s' instead of '%s'."
3
+ ignorecase: true
4
+ level: error
5
+ action:
6
+ name: replace
7
+ swap:
8
+ URL for: URL of
9
+ an URL: a URL
10
+
@@ -0,0 +1,16 @@
1
+ extends: existence
2
+ message: "Don't spell out the number in '%s'."
3
+ link: https://docs.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/term-collections/units-of-measure-terms
4
+ level: error
5
+ raw:
6
+ - '[a-zA-Z]+\s'
7
+ tokens:
8
+ - '(?:centi|milli)?meters'
9
+ - '(?:kilo)?grams'
10
+ - '(?:kilo)?meters'
11
+ - '(?:mega)?pixels'
12
+ - cm
13
+ - inches
14
+ - lb
15
+ - miles
16
+ - pounds
@@ -0,0 +1,25 @@
1
+ extends: existence
2
+ message: "Verify your use of '%s' with the A-Z word list."
3
+ link: 'https://docs.microsoft.com/en-us/style-guide'
4
+ level: suggestion
5
+ ignorecase: true
6
+ tokens:
7
+ - above
8
+ - accessible
9
+ - actionable
10
+ - against
11
+ - alarm
12
+ - alert
13
+ - alias
14
+ - allows?
15
+ - and/or
16
+ - as well as
17
+ - assure
18
+ - author
19
+ - avg
20
+ - beta
21
+ - ensure
22
+ - he
23
+ - insure
24
+ - sample
25
+ - she
@@ -0,0 +1,11 @@
1
+ extends: existence
2
+ message: "Try to avoid using first-person plural like '%s'."
3
+ link: https://docs.microsoft.com/en-us/style-guide/grammar/person#avoid-first-person-plural
4
+ level: warning
5
+ ignorecase: true
6
+ tokens:
7
+ - we
8
+ - we'(?:ve|re)
9
+ - ours?
10
+ - us
11
+ - let's
@@ -0,0 +1,122 @@
1
+ extends: substitution
2
+ message: "Consider using '%s' instead of '%s'."
3
+ link: https://docs.microsoft.com/en-us/style-guide/word-choice/use-simple-words-concise-sentences
4
+ ignorecase: true
5
+ level: warning
6
+ action:
7
+ name: replace
8
+ swap:
9
+ (?:give|gave) rise to: lead to
10
+ (?:previous|prior) to: before
11
+ a (?:large)? majority of: most
12
+ a (?:large)? number of: many
13
+ a myriad of: myriad
14
+ adversely impact: hurt
15
+ all across: across
16
+ all of a sudden: suddenly
17
+ all of these: these
18
+ all of: all
19
+ all-time record: record
20
+ almost all: most
21
+ almost never: seldom
22
+ along the lines of: similar to
23
+ an adequate number of: enough
24
+ an appreciable number of: many
25
+ an estimated: about
26
+ any and all: all
27
+ are in agreement: agree
28
+ as a matter of fact: in fact
29
+ as a means of: to
30
+ as a result of: because of
31
+ as of yet: yet
32
+ as per: per
33
+ at a later date: later
34
+ at all times: always
35
+ at the present time: now
36
+ at this point in time: at this point
37
+ based in large part on: based on
38
+ based on the fact that: because
39
+ basic necessity: necessity
40
+ because of the fact that: because
41
+ came to a realization: realized
42
+ came to an abrupt end: ended abruptly
43
+ carry out an evaluation of: evaluate
44
+ close down: close
45
+ closed down: closed
46
+ complete stranger: stranger
47
+ completely separate: separate
48
+ concerning the matter of: regarding
49
+ conduct a review of: review
50
+ conduct an investigation: investigate
51
+ conduct experiments: experiment
52
+ continue on: continue
53
+ despite the fact that: although
54
+ disappear from sight: disappear
55
+ drag and drop: drag
56
+ drag-and-drop: drag
57
+ doomed to fail: doomed
58
+ due to the fact that: because
59
+ during the period of: during
60
+ during the time that: while
61
+ emergency situation: emergency
62
+ except when: unless
63
+ excessive number: too many
64
+ extend an invitation: invite
65
+ fall down: fall
66
+ fell down: fell
67
+ for the duration of: during
68
+ gather together: gather
69
+ has the ability to: can
70
+ has the capacity to: can
71
+ has the opportunity to: could
72
+ hold a meeting: meet
73
+ if this is not the case: if not
74
+ in a careful manner: carefully
75
+ in a thoughtful manner: thoughtfully
76
+ in a timely manner: timely
77
+ in an effort to: to
78
+ in between: between
79
+ in lieu of: instead of
80
+ in many cases: often
81
+ in most cases: usually
82
+ in order to: to
83
+ in some cases: sometimes
84
+ in spite of the fact that: although
85
+ in spite of: despite
86
+ in the (?:very)? near future: soon
87
+ in the event that: if
88
+ in the neighborhood of: roughly
89
+ in the vicinity of: close to
90
+ it would appear that: apparently
91
+ lift up: lift
92
+ made reference to: referred to
93
+ make reference to: refer to
94
+ mix together: mix
95
+ none at all: none
96
+ not in a position to: unable
97
+ not possible: impossible
98
+ of major importance: important
99
+ perform an assessment of: assess
100
+ pertaining to: about
101
+ place an order: order
102
+ plays a key role in: is essential to
103
+ present time: now
104
+ readily apparent: apparent
105
+ some of the: some
106
+ span across: span
107
+ subsequent to: after
108
+ successfully complete: complete
109
+ sufficient number (?:of)?: enough
110
+ take action: act
111
+ take into account: consider
112
+ the question as to whether: whether
113
+ there is no doubt but that: doubtless
114
+ this day and age: this age
115
+ this is a subject that: this subject
116
+ time (?:frame|period): time
117
+ under the provisions of: under
118
+ until such time as: until
119
+ used for fuel purposes: used for fuel
120
+ whether or not: whether
121
+ with regard to: regarding
122
+ with the exception of: except for
@@ -0,0 +1,4 @@
1
+ {
2
+ "feed": "https://github.com/errata-ai/Microsoft/releases.atom",
3
+ "vale_version": ">=1.0.0"
4
+ }