<script type="text/javascript">
window.onload = function() {
document.getElementById("find_link").text = "Tasks";
document.getElementById("find_link").addEventListener("click", function(){
setInterval(function() {
document.getElementById("issues_new_search_link").childNodes[0].text = "Search for tasks";
document.getElementById("issues_history_main").childNodes[0].innerText = "RECENT TASKS";
document.getElementById("bulk_create_dd_link").childNodes[0].text = "Import Tasks from CSV";
document.getElementById("filter_lnk_my").childNodes[0].text = "My open tasks";
}, 600);
});
};
</script>
Part of me wants to delete this answer as it is a really really bad thing to do.
But it is an option if people need it. It's missing a lot of places though. Most places in Jira will still refer to "issue(s)"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@John Funk - Actually it is possible. I have seen this and I had the documentation as well for the same. I am not able to find that document.
The risk with that customization is Atlassian stops the support because of the change in Source Code.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Correct, given you are on server, you can crack open the code and change the text. You will need to redo this effort following any upgrade of Jira. Also correct that you may not get support from Atlassian.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yepp. Given the scenario by my management, I have to do this customization.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is info on downloading the source code - https://confluence.atlassian.com/jirakb/download-source-code-for-jira-server-800307235.html
note I think changing to “task” is short sighted because it is rare that all issues are in fact “tasks”, e.g. bugs, epics, stories, etc. that said, I am not privy to your world so maybe Jira is for managing tasks. If that is the case then likely you should be using Jira Core.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would tell your managers to stop wasting their time and yours.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Jack Brickey - You are right we are using Jira Core. Thanks for the link and I have no option but to proceed with this change.
@Nic - I have already tried this. It is not going to be Tasks but some other Keyword. I have used Tasks for a reference.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well I guess having a job these days is a good thing LOL. Ask them if they want it in pink! 😂
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Whatever the word is, point 1 and 3 still stand (point 2 almost certainly does)
I would point your management here, you've got three long-standing, deeply experienced community leaders saying this is a bad thing to do. Any partner or consultant will tell you (and your management) the same.
As the admin, you need to strongly question the business value of rendering your system unsupported and harder to use. How would your managers justify this to experts like the people here?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Jack Brickey - Certainly, I am going to ask this. Probably baby pink will work.
@Nic - Trust me I had tried my level best.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have found a workaround and management is happy with that. Code may help other people
<script type="text/javascript">
window.onload = function() {
document.getElementById("find_link").text = "Tasks";
document.getElementById("find_link").addEventListener("click", function(){
setInterval(function() {
document.getElementById("issues_new_search_link").childNodes[0].text = "Search for tasks";
document.getElementById("issues_history_main").childNodes[0].innerText = "RECENT TASKS";
document.getElementById("bulk_create_dd_link").childNodes[0].text = "Import Tasks from CSV";
document.getElementById("filter_lnk_my").childNodes[0].text = "My open tasks";
}, 600);
});
};
</script>
Thanks @Nic Brough -Adaptavist- @Jack Brickey @John Funk for all your help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.