Edit response with template TRIVIA - actions-on-google

I try Trivia App with templates, but I want to know how to modify the answers that say: Yes, it's a good answer! Let's move on to the next question "
Thank-you !

Those are prompts provided by the templates. These have been designed by VUI experts to create a fun conversational experience.
We don't provide a way to customize those VUI prompts.
For the trivia template there are other persona's that you can pick. Each of these have their own prompts that are appropriate for that persona.

Related

Adding user registration to a DocC Tutorial with assessment

I've created an interactive Swift DocC Tutorial with multiple choice assessments. Now I want to add a user registration so that I can keep tab of who has completed the tutorial. How might I do this? Specifically:
How do I make sure they answer all the assessments?
How can I add a user registration to the tutorial?
Appreciate very much the inputs. Thanks.

Shall I mention the deep links in the sample invocation in the directory page?

I am making an action for google assistant.I have created some deep links so should I mention them in the sample invocations in the directory information? I also want the users to see the first welcome screen that is the default welcome intent and not directly jump to the other intents for the first time.I cannot decide what to do.Can someone please help me with this?
Showing them in your examples lets people know that the feature is possible.
If you really don't want to allow it when they first start - you can intercept the "deep link" at invocation time and send back a reply welcoming them first and explaining things, then either letting them do it or letting them do it in the future.

how to create a simple web form in scala/lift

I need to create a from in lift with username and phone number.
can someone give a full example how to create a simple form in lift that can be submitted? or a reference to a good one. all examples I have seen are not full or has too many options for me, and I couldn't manage to compile them.
Thanks,
Ohad.
You can find an excellent, simple example in the introductory course given by David Pollak in London here. The snippet for the simple form (instead of a phone number as you comment it has an age) is here. The html associated is this one, just comment the Lift Screen section and uncomment the simple form.
Please also note that Lift has a very active and willing to help community, so you can also ask these questions in the Lift mail list.

How can I customize an email-notification within a sharepoint 2010 workflow?

I've got a random workflow in my sharepoint application that allows employees to make a request for some holiday period! So some emails have to be send around.
I'd like tu customize this email-notifications in the following way:
language (default is 'en', and I'd
like to cange if possible)
structure
thanks a lot!
george
I still got no idea how you can customize an email-notification...perhaps you could look for it's tamplate and "customize" it there, but this would change it for all notificaitons...so that's not a real solution!
anyway, I've found a quite good way to change the language. Well, email notifications always take the "default language" (which you can find in Site Actions/Site Settings/Site Administration/Language Settings) from the actual Site/SiteCollection/...regarding to this problem you should check my answer to this question link
So, now you can change a Site's default language to a new one(of course only if you got the right [Language ID]and the language pack(s) installed)...do some stuff like sending notification mails in favored language(s) (for example within a workflow like the one I've described above).
When your work(act. the workflow's work) is done you can set back the Site's language to the original one and you're done!

WordPress notifier - replicate built-in function whereby if update is available, an icon appears in the menu

First time here, so please be gentle.
Does anyone know how to replicate the built-in functionality of WordPress whereby the admin is informed of when updates for plugins are available - i.e. when one (more more) is available, an icon appears over the plugins menu which contains the number of available updates.
The plugin that I am writing could really benefit, from a UI perspective, with having a feature very similar to this.
Does anyone know if there are any hooks which I can use, or any function which I can call?
Any help on this is greatly appreciated!
Thank you very much in advance,
Richard
There's a API hook called get_plugin_data and lots of info in this thread at WordPress on using and implementing.
I've kind of answered my own question here...
$friendly_contact_add_main_page = add_menu_page('Contact Form', "Contact<span class='update-plugins count-$my_var'><span class='plugin-count'>$my_var</span></span>", 10, __FILE__, 'friendly_contact_main_page',$icon_url);
add_action( "admin_print_scripts-$friendly_contact_add_main_page", 'friendly_contact_main_page_head_scripts' );
The $my_var can be anything you want -- you decide how your script returns whether you have updates or not. Pretty simple, really! :)