Skip to content

Commit

Permalink
initial Turkish translation
Browse files Browse the repository at this point in the history
  • Loading branch information
Eli Mitchell committed Mar 20, 2012
1 parent 139144c commit 4ee0a1c
Show file tree
Hide file tree
Showing 13 changed files with 2,573 additions and 4 deletions.
4 changes: 3 additions & 1 deletion config.xml
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" version="1.0-b" defaultlocale="en">
<name short="Fix the Web">Fix the Web</name>
<description>A tool to report and fix web pages that have aesthetic or functional problems due to poor coding practices</description>
<!--New description: Report broken, incompatible, or browser-sniffing web pages and use or create patches/fixes for those sites.-->
<description xml:lang="en">A tool to report and fix web pages that have aesthetic or functional problems due to poor coding practices</description>
<description xml:lang="tr">Hatalı kodlama teknikleri nedeniyle görünümünde veya işlevlerinde sorunlar oluşan web sayfalarını bildirmek ve düzeltmek için bir araç</description>
<author href="http://my.opera.com/cyberstream/about" email="dev@cyberstream.us">cyberstream</author>
<icon src="images/icon-64.png" />

Expand Down
1 change: 0 additions & 1 deletion includes/patches.js
Expand Up @@ -182,7 +182,6 @@ if ( widget.preferences.getItem('prefixr') != 'false' ) {
var style = style_elements[i].innerHTML;

if (style.search(/-(moz|ms|webkit|o)-/gim) != -1 || style.search(/(?!-o-)(transition|transform|animation)/gim) != -1) {
console.log('3 passed')
style = style.replace(/[^-](transition|transform|animation)/gim,"-o-$1"); // -o--prefix CSS3 styles without prefix
style = style.replace(/-(moz|ms|webkit|o)-(border-(image|radius)|box-shadow)/gim, '$2'); // create prefixfree versions for all known working properties
style = style.replace(/-(moz|ms|webkit)-([^:])/gim,'-o-$2'); // change prefixes to -o- for all of the remaining ones
Expand Down
237 changes: 237 additions & 0 deletions locales/en/index.html
@@ -0,0 +1,237 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style type="text/css">
@import 'styles/modal_styles.css';
@import 'styles/index_styles.css';
</style>
<title>Fix the Web</title>
</head>
<body>
<div id="container">
<ul id="controls">
<li>
<strong>Order by</strong>
<ul id="order-by" class="dropdown">
<li><a href="#" data-order="time_desc" class="active change_state">newest first</a></li>
<li><a href="#" data-order="time_asc" class="change_state">oldest first</a></li>
<!--TODO add "most followed" and "popular" as options when comment ratings system is implemented-->
</ul>
</li>

<li>
<strong>Reports per page</strong>
<ul id="change-count" class="dropdown">
<li><a href="#" data-count="5" data-page="1" class="change_state">5 reports</a></li>
<li><a href="#" data-count="15" data-page="1" class="active change_state">15 reports</a></li>
<li><a href="#" data-count="25" data-page="1" class="change_state">25 reports</a></li>
<li><a href="#" data-count="50" data-page="1" class="change_state">50 reports</a></li>
<li><a href="#" data-count="100" data-page="1" class="change_state">100 reports</a></li>
</ul>
</li>
</ul>

<h1>Recent Reports</h1>

<p>This is a list of everyone's bug reports from any website. Click on a report to see more about it.</p>

<ul id="recent-reports">
<li id="loading-img"><img src="images/loading-circle.png" alt="Loading" title="Loading changes..." /></li>
</ul>

<div class="pagination hidden">
<a href="#" data-page="0" class="disabled previous change_state" title="Go back">Previous Page</a>
<span id="page-number">1</span>
<a href="#" data-page="2" class="next change_state" title="Go to the next page">Next Page</a>
</div>

<footer>
<a href="http://www.operaturkiye.net/fix-the-web">Web Interface</a>
<a href="options.html#about">About Fix the Web</a>
</footer>
</div>
<script src="scripts/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="scripts/jsOAuth-1.3.3.min.js"></script>
<script src="scripts/jquery.simplemodal.1.4.2.min.js"></script>
<script src="scripts/background.js"></script>
<script>
$(function() {
$('.change_state').click(function(e) {

// prevent page from following the link
e.preventDefault();

// don't load new data if the button clicked is disabled
if ( e.target.className.indexOf('disabled') != -1 ) return false;

// default values
var queryString = parseQueryString(location.search) || '',
page_num = queryString.page && parseInt(queryString.page) > 0 ? queryString.page : 1,
reports_count = queryString.count && parseInt(queryString.count) > 0 ? parseInt(queryString.count) : 15,
list_order = queryString.order && /^(most_followed|popularity|time_desc|time_asc)$/i.test(queryString.order) ? queryString.order : 'time_desc';

var data = {
page: $(this).data('page') || page_num,
count: $(this).data('count') || reports_count,
order: $(this).data('order') || list_order
}

$('#change-count a.active').removeClass('active');
$('#change-count a[data-count=' + data.count + ']').addClass('active');

$('#order-by a.active').removeClass('active');
$('#order-by a[data-order=' + data.order + ']').addClass('active');

history.pushState(data, '', 'index.html?page=' +data.page+ '&count=' +data.count+ '&order=' + data.order);

$('#recent-reports').html('<li id="loading-img"><img src="images/loading-circle.png" alt="Loading" title="Loading changes..." /></li>')
outputReports (data.page, data.count, data.order); // update the reports

changeButtonState();
});

// load reports from previous history state when the user clicks the back button
window.addEventListener ('popstate', function(data) {
// display the loading animation icon
$('#recent-reports').html('<li id="loading-img"><img src="images/loading-circle.png" alt="Loading" title="Loading changes..." /></li>');

$('#change-count a.active').removeClass('active');
$('#change-count a[data-count=' + data.state.count + ']').addClass('active');

$('#order-by a.active').removeClass('active');
$('#order-by a[data-order=' + data.state.order + ']').addClass('active');

// load reports into the page
outputReports(data.state.page, data.state.count, data.state.order);
changeButtonState()
}, false);

jQuery.support.cors = true; // enable cross-domain jQuery requests; if you don't do this, then you will get a "No Transport" error

// parses a query string and returns
parseQueryString = function (a,b,c,d,e) {for(b=/[?&]?([^=]+)=([^&]*)/g,c={},e=decodeURIComponent;d=b.exec(a.replace(/\+/g,' '));c[e(d[1])]=e(d[2]));return c;}

// modify the button state based on whether the next/previous pages exist
changeButtonState = function () {
var queryString = parseQueryString(location.search) || '',
page_number = queryString.page && parseInt(queryString.page) > 0 ? parseInt(queryString.page) : 1,
items_per_page = queryString.count && parseInt(queryString.count) > 0 ? parseInt(queryString.count) : 15;

// disable the "back" button if this is page #1
if (page_number <= 1) $('.pagination .previous').addClass('disabled')
else $('.pagination .previous').removeClass('disabled')

$('.pagination').addClass('hidden')

$.get(CONFIG.defaultHost + 'ajax_request_handler.php?mode=get_report_list&count=' + items_per_page + '&page=' + (page_number + 1), function(data) {
if (!data) $('.pagination .next').addClass('disabled');
else $('.pagination .next').removeClass('disabled');

$('.pagination').removeClass('hidden')
});

$('.pagination .next').data('page', page_number + 1);
$('.pagination .previous').data('page', page_number - 1);
$('.pagination #page-number').html(page_number);
}

outputReports = function ( page_number, reports_per_page, order ) {

// set default values for the reports query
var order = order && /^(most_followed|popularity|time_desc|time_asc)$/i.test(order) ? order : 'time_desc',
page_number = page_number && page_number > 0 ? page_number : 1,
reports_per_page = reports_per_page && reports_per_page > 0 ? reports_per_page : 15;

$.getJSON(CONFIG.defaultHost + 'ajax_request_handler.php?mode=get_report_list&order=' +order+ '&count=' + reports_per_page + '&page=' + page_number, function(data) {
if (!data || data == '') $('#recent-reports').html('<li>Oops, there are no reports for this page! <em><a href="#" class="change_state" onclick="history.go(-1); return false;">go back</a></em></li>')
else {
var output = '',
data = data.list;

for ( i = 0; i < data.length; i++ ) {
var current = data[i],
page_url = '<a href="' +current.page+ '" title="Page: ' +current.page+ '" target="_blank">'
+ (current.page.length > 40 ? current.page.substr(0, 40) + '...' : current.page) + '</a>',
severity = {
1 : 'minor annoyance',
2 : 'major problem',
3 : 'site unusable'
}

if (current.OS.length) {
var os_image;

if ( /windows/i.test(current.OS) ) os_image = 'images/windows.png'
else if ( /mac/i.test(current.OS) ) os_image = 'images/mac.png'
else if ( /linux/i.test(current.OS) ) os_image = 'images/linux.png'
else os_image = 'images/unidentified.png'
}

output += '<li title="Click to expand report" data-id="' +current.id+ '" data-username="' +current.username+ '" data-category="' +current.category+ '" data-datetime="' +current.date_time+ '" data-url="' +current.page+ '" data-report="' +current.report+ '" data-version="' +current.Opera+ '" data-build="' +current.build+ '" data-platform="' +current.OS+ '" data-platform-icon="' +os_image+ '" data-plugins="' +encodeURIComponent(current.misc)+ '">'
+ '<span class="severity_' +current.category+ '" title="' +(severity[current.category] || 'unknown')+ '"></span> <strong class="username">' +current.username+ '</strong> reported a problem on ' +page_url+ ' <span class="date_time">(' +current.date_time+ ')</span></li>';
}

$('#recent-reports').html(output)

$('#recent-reports li').click(function() {
var url = $(this).data('url');
page_url = '<a href="' +url+ '" title="Page: ' +url+ '" target="_blank">'
+ (url.length > 40 ? url.substr(0, 40) + '...' : url) + '</a>';

$.modal('<div id="report" data-id="' + $(this).data('id') + '"><span style="float: right;" class="severity_' +$(this).data('category')+ '" title="' +(severity[$(this).data('category')] || 'unknown')+ '"></span><strong>' +$(this).data('username')+ '</strong> reported a problem on ' +page_url + ':'
+ '<p class="report">"' + $(this).data('report').replace(/\\/g, '') + '"</p>Reported on <strong>' +$(this).data('datetime') + '</strong>'
+ '<p><img class="os_icon" src="' +$(this).data('platform-icon') + '" title="' +$(this).data('platform')+ '" alt="' +$(this).data('platform')+ '" /> <em title="Opera version: ' + $(this).data('version') + ' Build number: ' + $(this).data('build') + '">' + $(this).data('version') + '.' + $(this).data('build') + '</em>'
+ ' <a title="Click to see the reporting user\'s plugins and screen information." href="data:text/plain;charset=utf-8,' +$(this).data('plugins')+ '" target="_blank">plugins and screen</a></p></div>',
{ onOpen: function (dialog) {
dialog.overlay.fadeIn('medium', function () {
dialog.container.slideDown('medium', function () {
dialog.data.fadeIn('medium', function() {

// load comments thread after the dialog box is visible
/*var report_id = $('#report', this).data('id');
$.get(CONFIG.defaultHost + 'ajax_request_handler.php?mode=get_comment_list&id=' + report_id, function(data) {
data = JSON.parse(data || '[]')['list'] || '';
$('<div>' +(data.length ? data[0]['report'] : '')+ '</div>').appendTo('#simplemodal-data')
});
*/
});
});
});
},
onClose: function (dialog) {
dialog.container.fadeOut('medium', function () {
dialog.overlay.fadeOut('medium', function () {
$.modal.close(); // must call this!
});
});
},
maxWidth: window.innerWidth - 150,
maxHeight: window.innerHeight - 100
}); // end of the modal dialog functions
}); // end function that handles displaying reports modal window
} // end reports output
});
} // end outputReports() function

var queryString = parseQueryString(location.search) || '',
page_num = queryString.page && parseInt(queryString.page) > 0 ? queryString.page : 1,
reports_count = queryString.count && parseInt(queryString.count) > 0 ? parseInt(queryString.count) : 15,
list_order = queryString.order && /^(most_followed|popularity|time_desc|time_asc)$/i.test(queryString.order) ? queryString.order : 'time_desc';

$('#change-count a.active').removeClass('active');
$('#change-count a[data-count=' + reports_count + ']').addClass('active');

$('#order-by a.active').removeClass('active');
$('#order-by a[data-order=' + list_order + ']').addClass('active');
$('.pagination').addClass('hidden');

outputReports(page_num, reports_count, list_order)
changeButtonState()
$('.pagination').removeClass('hidden')
})
</script>
</body>
</html>

0 comments on commit 4ee0a1c

Please sign in to comment.