Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README.md may need some updates #41

Open
LaurelineP opened this issue Oct 25, 2024 · 0 comments
Open

README.md may need some updates #41

LaurelineP opened this issue Oct 25, 2024 · 0 comments

Comments

@LaurelineP
Copy link

Finding things to translate - query example most likely out of date most

unstranslatedKeys is incorrect, should most likely be untranslatedStrings as graphiql recommends - then an auto completion will be provided on submission for the fields

Current query if failing in Graphiql

// Original README.md example
query GetLocaleData {
  locale(localeId: ru_RU) {
    completion
    totalCount
    translatedCount
    translators
    untranslatedKeys
  }
}

// Proposition
query GetLocaleData {
  locale(localeId: ru_RU) {
    completion
    totalCount
    translatedCount
    translators
    untranslatedStrings 
  }
}


// Proposition autocompleted by GraphiQL-  with untranslatedStrings 
query GetLocaleData {
  locale(localeId: ru_RU) {
    completion
    totalCount
    translatedCount
    translators
    untranslatedStrings {
      key
      t
      tHtml
      tClean
      context
      isFallback
      aliasFor
    }
  }
}

Translation team link broken

Redirects to a 404
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant