This tool formats Romanian titles using the correct Romanian capitalisation convention, which is sentence style: only the first word and proper nouns are capitalised — unlike English Title Case, which capitalises most words.
How it works
The algorithm normalises the whole title to lowercase first (so all-caps input is handled), then re-capitalises exactly two things:
- The first word of the title.
- Any word you list as a proper noun (names of people, places, institutions, brands).
Everything else — articles (un, o, le), prepositions (de, la, pe, în, cu), conjunctions (și, sau, dar) and all common nouns and adjectives — stays lowercase. Romanian diacritics (ă, â, î, ș, ț) are correctly cased.
Why a proper-noun list is needed
Capitalisation of proper nouns cannot be inferred from text alone — piatra is a common noun (“stone”) but Piatra (Neamț) is a city. So you supply the proper nouns explicitly, one per line, and the tool preserves their capital wherever they occur. Matching is diacritic- and case-insensitive against your list.
Example
Input title: ISTORIA LIMBII ROMÂNE ÎN EUROPA
Proper nouns: România (matches Române’s root only if listed exactly), Europa
Result: Istoria limbii române în Europa
Here only Istoria (first word) and Europa (a listed proper noun) are capitalised; limbii, române and the preposition în are lowercase. All processing runs in your browser.