preview Download


๐ŸŒ What Is LocaleLattice?

Imagine a coral reef of languageโ€”where every translator, moderator, and end-user adds a new polyp of meaning, and the structure grows organically, adapting to the currents of real-world usage. That's LocaleLattice.

This repository is a decentralized, version-controlled dictionary that thrives on the collective wisdom of role-playing communities, server administrators, and localization enthusiasts. Instead of a static, top-down translation file, LocaleLattice treats every language pack as a living specimenโ€”continuously annotated, cross-referenced, and verified by the people who actually speak the language in the context of gaming, moderation, and interactive fiction.

The original GroupTranslationDB was a seed. LocaleLattice is the full-grown forest, with root systems that connect every dialect, idiom, and subcultural slang term into a single, navigable ecosystem.


๐Ÿงญ Key Features That Set This Atlas Apart

๐Ÿ—บ๏ธ Contextual Phrase Mapping

Most translation databases store key โ†’ string. LocaleLattice stores key โ†’ string โ†’ scenario โ†’ emotional tone โ†’ register (formal/informal) โ†’ regional variant. A single phrase like "pull over" becomes ten different entries depending on whether it's a police officer, a taxi driver, or a friend joking around. The lattice structure allows you to traverse these dimensions without losing your way.

๐Ÿงฉ Community Snippet Verification

Every entry carries a confidence score derived from peer reviews, usage frequency, and recency. Think of it as a stack overflow for languageโ€”the more people validate a translation in a real server environment, the higher it rises. Stale or contested entries automatically dim in visibility, letting the freshest vernacular surface naturally.

๐ŸŒ Bi-Directional Fuzzy Lookup

Search by source phrase or target phrase, even with typos, missing diacritics, or shorthand. The lattice uses a levenshtein-adjacent scoring algorithm that understands that "u r" and "you are" belong in the same neighborhood, even if they're not direct neighbors.

๐Ÿง  Dialect Branching

English (US), English (UK), English (AU), English (Pirate)โ€”each is a separate branch, not an overwrite. Spanish (Spain) and Spanish (Mexico) coexist as sibling branches. You can merge branches or keep them isolated, depending on your community's needs.

๐Ÿ“Š Living Statistics Dashboard

A built-in analytics layer tracks which phrases are requested most, which translations get rejected, and which dialects are growing fastest. This isn't just a database; it's a barometer of linguistic evolution in gaming subcultures.

๐Ÿค Zero-Friction Contribution Workflow

Contributors submit a single JSON object, not a pull request with 47 file changes. The lattice engine merges, deduplicates, and flags implicit conflicts automatically. You focus on the language; the lattice handles the housekeeping.


๐Ÿš€ Why Choose LocaleLattice Over Traditional Translation Files?

Problem Traditional .json or .po files LocaleLattice
Contested translations Last write wins, silent data loss Weighted voting, visible history
Regional slang One blob, everyone argues Dedicated branches, peaceful coexistence
Outdated terms Stored forever, confuses new users Decay algorithm demotes stale usage
Multi-context words Context ignored Scenario tags make meaning explicit
Community input Mailing list chaos Structured, versioned, reviewable

๐Ÿ“ฆ Repository Structure (The Anatomy of the Lattice)

/
โ”œโ”€โ”€ lattice-core/          # The engine: merge, search, score
โ”œโ”€โ”€ branches/              # One folder per language/dialect
โ”‚   โ”œโ”€โ”€ en-US/
โ”‚   โ”œโ”€โ”€ en-GB/
โ”‚   โ”œโ”€โ”€ es-MX/
โ”‚   โ”œโ”€โ”€ ja-JP/
โ”‚   โ””โ”€โ”€ ...
โ”œโ”€โ”€ scenarios/             # Tag definitions: police, medical, casual, roleplay
โ”œโ”€โ”€ manifests/             # Snapshot files for offline distribution
โ”œโ”€โ”€ validator/             # Command-line linting for PRs and commits
โ”œโ”€โ”€ importers/             # Converters from vMenu, ESX, QBCore formats
โ””โ”€โ”€ docs/                  # Human-readable guides, style guides, glossaries

๐Ÿ› ๏ธ Getting Your Feet Wet (Installation Without the Friction)

We believe in zero-obstacle onboarding. No dependency hell, no compilation gauntlet. Here's how you bring the lattice into your environment:

  1. Download the latest release archive from the releases section (look for the lattice-bundle artifact).
  2. Extract to any folder on your server or workstationโ€”there's no magical path required.
  3. Run the self-contained validator to check the integrity of your existing translation files. It will produce an import-ready report.
  4. Place your current translation files into the importers/ directory. The engine auto-detects file format (.json, .yaml, .po, .txt) and converts them into lattice-compatible branch structures.
  5. Start the local web dashboard (a single executable, no external database required) and watch your translations bloom into a navigable lattice.

๐Ÿงช Use Cases: Where This Lattice Shines

๐Ÿ‘ฎ Roleplay Server Administrators

You run a serious RP server with 40+ players. Your police faction uses one jargon, the criminal faction uses another, and the medical team has its own shorthand. LocaleLattice lets you maintain three separate lexicons under one roof, with automatic conflict detection when a phrase means something different in each context.

๐ŸŒ Multilingual Community Managers

Your community spans five countries. Instead of maintaining five separate translation files that drift apart, you maintain one lattice with five branches. When a feature changes, you update the English branch, and the dashboard highlights which branches still need attention.

๐ŸŽง Mod Developers

You ship a UI that must speak 12 languages. The lattice exports a flat snapshot in your preferred format (JSON, MO, Gettext) so your build pipeline never changes. The lattice becomes your translation memory; your game stays oblivious to the complexity.

๐Ÿ“š Language Enthusiasts

You study gaming-adjacent subculture dialects. LocaleLattice provides a searchable, timestamped archive of how virtual communities use language. It's a living documentation of neologisms, code-switching, and register-shifting.


๐Ÿ”„ How Contributions Flow (The Water Cycle of Translation)

  1. Evaporation: A user notices a missing or awkward translation. They submit a snippet using the web form or CLI.
  2. Condensation: The lattice groups similar snippets, checks for duplicates, and forms a provisional entry.
  3. Precipitation: The provisional entry is exposed to peer review. Downvotes with comments help refine it.
  4. Collection: After receiving a configurable threshold of positive votes, the entry becomes canonical.
  5. Cloud Formation: The canonical entry is synced to all downstream branches and snapshot exports.

๐Ÿงฐ Validation & Quality Gates

Every entry in the lattice passes through four layers of scrutiny:

  • Syntactic: Is the JSON valid? Are the tags recognized?
  • Semantic: Does the translation contain placeholder mismatches (e.g., {player} missing)?
  • Pragmatic: Does the phrase match the declared scenario context? (A formal court phrase shouldn't be tagged casual_chat)
  • Community: Does the net score meet the threshold for publication?

๐Ÿ“– Documentation & Learning Resources

  • /docs/style-guide.md โ€” Equivalent of a journalistic stylebook for translators.
  • /docs/scenario-taxonomy.md โ€” A controlled vocabulary for tagging contexts.
  • /docs/branching-strategy.md โ€” How to manage dialect divergences without losing your mind.
  • /docs/offline-snapshot-format.md โ€” Understanding the export artifact.

๐ŸŒ Multilingual Interface (The Dashboard Speaks Your Language)

The web dashboard itself is localized into 9 languages (EN, ES, PT, FR, DE, RU, JA, KO, ZH). The interface adapts to your browser's language preference automatically. Every button, tooltip, and error message contributes to the lattice's own dogfooding effort.


๐Ÿ•’ Always-On Support (The Lighthouse That Never Sleeps)

Our support model is asynchronous but attentive. We monitor the discussion boards, the issue tracker, and the community Discord-like channel daily. Even though we're not a corporation, the maintainers rotate shifts to ensure that no question sits unanswered for more than 72 hours. For urgent infrastructure issues (e.g., a broken merge in the core), there's a 24/7 pager channel monitored by senior maintainers.


๐Ÿ“„ License Information

This project is released under the MIT License. You are free to use, modify, distribute, and incorporate this lattice into commercial and non-commercial projects, provided you retain the original copyright notice.

The full license text is available in the repository root at LICENSE. A summary:

  • โœ… You can use this in your own projects, even closed-source commercial ones.
  • โœ… You can modify the lattice engine and branch data.
  • โœ… You can sublicense or sell derivatives, as long as the original copyright notice is preserved.
  • โŒ You cannot hold the maintainers liable for any damages or misuse.

โš ๏ธ Disclaimer & Fair Use Notice

  • Data Freshness: The translations in this lattice are provided "as is" by community members. We do not guarantee that every phrase is suitable for every context. Regional dialects evolve rapidly, and some entries may become archaic or offensive over time. Use your judgment when deploying to production environments.
  • Content Sensitivity: Some gaming communities use strong language or culturally specific humor. The lattice does not censor entries, but it does tag them with register and maturity level. Review your export settings if you're targeting a younger audience.
  • Not an Official Product: This project is an independent community effort. It is not affiliated with, endorsed by, or supported by the original GroupTranslationDB maintainers or any game development studio.
  • Trademark Notice: All game names, product names, and brand names referenced within translation entries are the property of their respective owners. Their appearance does not imply endorsement.

๐Ÿ—“๏ธ Roadmap for 2026

We're already charting the next edition of the atlas. Here's what's brewing:

  • Voice-to-Text Integration: Submit spoken sample pronunciations alongside textual entries.
  • Self-Hosted Edge Cache: Ship a lightweight runtime that runs on the player's machine for ultra-low-latency lookups.
  • Cultural Context Cards: Expand scenario taxonomy to include holiday references, regional festival customs, and sports metaphors.
  • Automated Slack/Matrix Bots: Query the lattice directly from your team chat without leaving the conversation flow.

๐Ÿงญ Final Word: Why "Lattice" and Not "Dictionary"?

A dictionary is flat. It tells you what a word means. A lattice is multidimensional. It shows you how a word behaves across different communities, time periods, and emotional registers. In the chaotic, glorious ecosystem of multiplayer gaming, language doesn't sit still. Neither should your translation tool. LocaleLattice moves with the language, guided by the hands of thousands of users who contribute not just words, but living context.

Join the lattice. Grow the structure. Let every phrase find its perfect location.


Made with ๐Ÿงฉ and relentless linguistic curiosity, by the community, for the community.