Drupal 8 - browser tab title translations for views - drupal-views

I am creating a multilingual site in Drupal 8. The browser tab title for nodes translate, but in a view the titles are all in english.
Currently, the goal is to create one view page and use a URL alias to direct to the other translation views. I have the filter set to content revisions for languages using the "Interface text language selected for page". On these view pages, everything but the title translates.
Is there a way to force the browser tab titles to translate without having to create additional view pages for each language?
Thank you in advance for any advice

If by "browser tab title" you mean Views' title, enable "Configuration Translation" core module, and then click on "Translate" link next to your View ("Operations" column, /admin/structure/views).
If you mean titles of nodes' which you output in a View, then check out settings of a default prebuild "FrontPage" View, because it works just great with content translations, maybe you've just missed some important settings which you can spot there.

Related

Rename Prestashop mobile menu caption

I use PrestaShop 1.6.0.9. I know how to change the items in the top navigation menu or how to add/delete categories from the left menu.
But I can't investigate how to change the caption of category menu in mobile template?
You can see here that the left category menu on desktop is called "Produkty". If you scale down the tab or you view it on your mobile, it is called "Menu". I would like to rename it. I tried to find it in the Localization / Translation of the template, core and moduls. Unfortunatelly without any success.
Do you know which files should be edited to display "Menu" caption as "Produkty" even on the mobile?
I finally figured it out.
It was located in files in www/modules/tmleftmenu/ and need to be replaced in in files:
tmleftmenu.tpl (for mobile view)
tmleftmenu_left.tpl (for desktop
view)

How to hide Resources tab on page translations in TYPO3 6.2

How can i hide the BE tab "Resources" in translated page properties?
In TYPO3 6.2 i want to use the same media resources in page properties for all languages.
Frontend is done with:
$TYPO3_CONF_VARS[’FE’][’pageOverlayFields’] = ‘uid,title,subtitle,nav_title,keywords,description,abstract,author,author_email’;
(removed "media")
So any changes on the tab resources in page properties translations are ignored in FE. To avoid confused editors i want to hide this tab but i don't know how to do this.
(maybe it would be better to show the tab and the original language resources without the buttons "Add new relation" and "Select & upload files" but this sounds more complicated to me)
thanks for help

Links are not working on UIWebview

In my application, I am using UIWebview to display some url say "Google". The problem is that, it is displaying the web page correctly but the links present on that page are not working.
Say if on Google page I click on map or gmail, then nothing happens. I know, I am missing some minor things, still need help from you.
Check in Interface Builder your .xib with UIWebView, in Attributes Inspector (4th tab of the right panel) in section Web View Detection Links checkbox. It must be checked on in order to make links work.
You also want to make sure that "User interactions Enabled" (in the View section of the attributes tab) is checked.
Make sure your link is constructed exactly like this:
Google
It should just "work".

how to combine two project on iPhone?

I want to ask about the objective C on iPhone. I am writing a application, it contains 2 pages. The first page requires the user enter some information. The second page displays the tab page (3 tab).
And I create the first page and the second page in different project. I use the 'Window-based Application' to create the first one and use the 'Tab Bar Application' to create the second one.
However, I don't know how to combine it. Or should I build the second page in the first page project? If so, what should I do and link the tab bar? As I don't know how to create a tab bar content in the first project.
Thank you very much.
The link below might help get you started, but you'll have some difficulty with the Tab Bar Controller part. I usually create all those pieces programmatically...
http://pushplay.net/blog_detail.php?id=27
Does the "info page" collect some information and then not appear again under normal usage (e.g. a login screen)? If so, I would recommend making the "tab page" your main view, and present the "info page" modally (with presentModalViewController:animated:). It shouldn't be too hard to copy the view controller files and xib, if necessary, into the project with the "tab page".

Links in UINavigationController

What is the class type used to create items that look like HTML links in iPhone apps? Is it just a label with formatted text? How is the selection detected?
I am looking to have a Navigation Controller and have some text links on the root page. The user can then select any of the links, and the controller will go to the page for that link.
You can use UIButton and choose "custom" as "type". If you don't specify any border, it looks like click-/tabable text.