Closed (works as designed)
Project:
Language Icons
Version:
6.x-2.0
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
13 Jan 2012 at 08:18 UTC
Updated:
18 May 2013 at 16:38 UTC
Comments
Comment #1
Freso commentedAre the links to the disabled languages still there if you disable Language icons?
Comment #2
dutchie76 commentedYes, second this, if there is no translation available then the flag should not display otherwise you end up having to ensure all content is 100% translated, all at once or you face potentially lots of duplicated content.
Please advise.
Comment #3
Freso commentedYou did not answer my question from comment #1. Reverting status.
Comment #4
dutchie76 commentedbump
Comment #5
Freso commentedPriority level of issues:
Also, since this has been "maintainer needs more info" since February (almost half a year ago!), I'm closing the issue. (See the page on the status values.)
Comment #6
neorg commentedSearching for an answer on the same question (1)# I reached this page.
You can simply hide the flag of the non translated node with CSS
Comment #7
kifuzzy commentedwas searching too and want to notice .. (using drupal core 7.22, for that (multilingual, using a language-switcher-block displayed in an extra region i made for it in side-top) .. and using "language icons module" (drupal-test-installation with three languages))
modify css in locale.css where you may find ".locale-untranslated" works fine for untranslated things.
in my case, it also works for things being translated but not published cause my drupal marked the translated-but-not-published also as ".locale-untranslated"-element, so i can access translated-but-not-published via css and hide the language-flag / language-link also for translated-but-not-published.
effect before / without action on it: when an article (or whatever) was translated in a second (third,..,..) language but not published .. i saw the language flag (link) available for the new translated and not published article and if someone clicked on it - "access denied". so .. the way to hide it via css as a translated-but-not-published via .locale-untranslated. for me as a non-programmer good way.
css, i used "display: none;" for element, cause in some cases "visibility: hidden;" had problems in layout / arrangement of icons in how it was displayed.
with "visibility:hidden;" sometimes like:
icon displayed - icon hidden but empty space displayed - icon displayed ...
with "display:none;" more often like:
icon displayed - icon not displayed and no empty space displayed - icon displayed ... so it looks like:
icon displayed - icon displayed
etc