repo stringlengths 7 63 | file_url stringlengths 81 284 | file_path stringlengths 5 200 | content stringlengths 0 32.8k | language stringclasses 1 value | license stringclasses 7 values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:02:33 2026-01-05 05:24:06 | truncated bool 2 classes |
|---|---|---|---|---|---|---|---|---|
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/innerpages/11_1f2e4.php | innerpages/11_1f2e4.php | <?php
require_once("../genclude.php");
recordVisit($testcase);
?>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/innerpages/6_14b3c.php | innerpages/6_14b3c.php | <?php
require_once("../genclude.php");
recordVisit($testcase);
?>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/21.php | pages/21.php | <?php
require_once('../genclude.php');
?>
<center>
<script src='<?php echo $_SESSION['baseaddrwithnoprotocol']; ?>innerpages/<?php tc('21_1f822'); ?>.php' type='text/javascript'></script>
</center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/100.php | pages/100.php | <?php
session_start();
// Unset all of the session variables.
$_SESSION = array();
// If it's desired to kill the session, also delete the session cookie.
// Note: This will destroy the session, and not just the session data!
if (isset($_COOKIE[session_name()])) {
setcookie(session_name(), '', time() - 42000, '/');
}
// Finally, destroy the session.
session_destroy();
// phew!
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
<link type="text/css" href="../style.css" rel="stylesheet"/>
</head>
<body class="body">
<br/>
<br/>
<center>
You are now logged out!
</center>
</body>
</html>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/8.php | pages/8.php | <?php
require_once('../genclude.php');
?>
<!-- my comment with full link: <?php echo $_SESSION['baseaddr'] . "innerpages/".tc('8_1b6e1', false).".php" ?> -->
<!-- my comment with relative: <?php echo $url_relative . "innerpages/".tc('8_2b6f1', false).".php" ?> -->
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/16.php | pages/16.php | <?php
// starting output buffering in order to avoid; Headers sent before ... warning
ob_start();
define('NOSTARTHTML', true);
require_once('../genclude.php');
function redirect($url, $hiddenUrl)
{
header("Location: $url");
html_header();
echo 'This page has moved to <a href="'.$hiddenUrl.'">HERE :)</a>';
exit();
}
redirect('../innerpages/'.tc('16_1b14f').'.php', '../innerpages/'.tc('16_2f41a').'.php');
ob_end_flush();
?>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/4.php | pages/4.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<script>
function openUserSetting(){
window.open('../innerpages/<?php tc('4_1c3f8'); ?>.php', '8', 'resizable=yes,width=400,height=50');
}
</script>
<?php html_body(); ?>
<center>
<p>
<a href="javascript:openUserSetting()">click me</a>
</p>
<center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/6.php | pages/6.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<script>
function searchMe(){
alert("alert teaser");
var searchcontainer = document.getElementById("searchcontainer");
var enginesel = document.getElementById("engine");
searchcontainer.src = enginesel.options[enginesel.selectedIndex].value;
}
</script>
<?php html_body(); ?>
<center>
<form method="POST" name="systemform">
<table>
<tr>
<td>Input:<td>
<td><input id="term" name="term" type="text" size="20"/><td>
<tr>
<tr>
<td>Select One:<td>
<td>
<select name="engine" id="engine" onchange="searchMe();">
<option value ="http://www.google.com">google</option>
<option value ="http://www.live.com">live</option>
<option value ="http://www.yahoo.com">yahoo</option>
<option value ="<?php echo $_SESSION['baseaddr']; ?>innerpages/<?php tc('6_14b3c'); ?>.php">ours</option>
</select>
<td>
<tr>
</table>
</form>
<iframe id="searchcontainer" width="600px" height="300px"/>
<center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/19.php | pages/19.php | <?php
define('NOSTARTHTML', true);
require_once('../genclude.php');
?>
<html lang="en">
<!--
Smart developers always View Source.
This application was built using Adobe Flex, an open source framework
for building rich Internet applications that get delivered via the
Flash Player or to desktops via Adobe AIR.
Learn more about Flex at http://flex.org
// -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- BEGIN Browser History required section -->
<link rel="stylesheet" type="text/css" href="../history/history.css" />
<!-- END Browser History required section -->
<title></title>
<script src="../AC_OETags.js" language="javascript"></script>
<!-- BEGIN Browser History required section -->
<script src="../history/history.js" language="javascript"></script>
<!-- END Browser History required section -->
<style>
body { margin: 0px; overflow:hidden }
</style>
<script language="JavaScript" type="text/javascript">
<!--
// -----------------------------------------------------------------------------
// Globals
// Major version of Flash required
var requiredMajorVersion = 9;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Minor version of Flash required
var requiredRevision = 124;
// -----------------------------------------------------------------------------
// -->
</script>
</head>
<body scroll="no">
<script language="JavaScript" type="text/javascript">
<!--
// Version check for the Flash Player that has the ability to start Player Product Install (6.0r65)
var hasProductInstall = DetectFlashVer(6, 0, 65);
// Version check based upon the values defined in globals
var hasRequestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if ( hasProductInstall && !hasRequestedVersion ) {
// DO NOT MODIFY THE FOLLOWING FOUR LINES
// Location visited after installation is complete if installation is required
var MMPlayerType = (isIE == true) ? "ActiveX" : "PlugIn";
var MMredirectURL = window.location;
document.title = document.title.slice(0, 47) + " - Flash Player Installation";
var MMdoctitle = document.title;
AC_FL_RunContent(
"src", "playerProductInstall",
"FlashVars", "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"",
"width", "100%",
"height", "100%",
"align", "middle",
"id", "wivet1",
"quality", "high",
"bgcolor", "#869ca7",
"name", "wivet1",
"allowScriptAccess","sameDomain",
"type", "application/x-shockwave-flash",
"pluginspage", "http://www.adobe.com/go/getflashplayer"
);
} else if (hasRequestedVersion) {
// if we've detected an acceptable version
// embed the Flash Content SWF when all tests are passed
AC_FL_RunContent(
"src", "wivet1",
"width", "100%",
"height", "100%",
"align", "middle",
"id", "wivet1",
"quality", "high",
"bgcolor", "#869ca7",
"name", "wivet1",
"allowScriptAccess","sameDomain",
"type", "application/x-shockwave-flash",
"pluginspage", "http://www.adobe.com/go/getflashplayer"
);
} else { // flash is too old or we can't detect the plugin
var alternateContent = 'Alternate HTML content should be placed here. '
+ 'This content requires the Adobe Flash Player. '
+ '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';
document.write(alternateContent); // insert non-flash content
}
// -->
</script>
<noscript>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
id="wivet1" width="100%" height="100%"
codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
<param name="movie" value="wivet1.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#869ca7" />
<param name="allowScriptAccess" value="sameDomain" />
<embed src="wivet1.swf" quality="high" bgcolor="#869ca7"
width="100%" height="100%" name="wivet1" align="middle"
play="true"
loop="false"
quality="high"
allowScriptAccess="sameDomain"
type="application/x-shockwave-flash"
pluginspage="http://www.adobe.com/go/getflashplayer">
</embed>
</object>
</noscript>
</body>
</html>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/11.php | pages/11.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<script type="text/javascript" src="../js/jquery/jquery.js"></script>
<script type="text/javascript" >
$(document).ready(function(){
$("#link").each(function(){this.href = "../innerpages/<?php tc('11_1f2e4'); ?>.php";});
});
</script>
<?php html_body(); ?>
<center>
<a id="link" href="" target="body">click me</a>
<a href="javascript:window.open('../innerpages'+'/<?php tc('11_2d3ff'); ?>.php', 'windowopen', 'resizable=yes,width=500,height=400');">click me 2</a>
</center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/9.php | pages/9.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<script>
function go1(){
window.location = "../innerpages/<?php tc('9_1a1b2'); ?>.php";
}
function go2(){
window.location.href = "../innerpages/<?php tc('9_2ff21'); ?>.php";
}
function go3(){
document.location.href = "../innerpages/<?php tc('9_3a2b7'); ?>.php";
}
function go4(){
document.location = "../innerpages/<?php tc('9_4b82d'); ?>.php";
}
function genericGo(i){
var linknames = new Array();
<?php
for($i=0; $i < 30; $i++) {
echo ' linknames['.$i.'] = "'.tc('9_'.$i.'ee31', false).'";'."\n";
}
?>
window.location.href = "../innerpages/" + linknames[i] + ".php";
}
function go5(){
document.location = "../innerpages/<?php tc('9_26dd2e'); ?>.php";
}
</script>
<?php html_body(); ?>
<!-- span -->
<span onclick="go1()">click here </span>
<span onmouseout="go2()">click here </span>
<span onmousedown="go3()">click here </span>
<span onmouseup="go4()">click here </span>
<!-- p -->
<p onclick="genericGo(5)">click here </p>
<p onmouseout="genericGo(6)">click here </p>
<p onmousedown="genericGo(7)">click here </p>
<p onmouseup="genericGo(8)">click here </p>
<br/>
<!-- div -->
<div onclick="genericGo(9)">click here</div>
<div onmouseout="genericGo(10)">click here</div>
<div onmousedown="genericGo(11)">click here</div>
<div onmouseup="genericGo(12)">click here</div>
<br/>
<!-- tr and td -->
<table>
<tr>
<td onclick="genericGo(13)">click here</td>
<td onmouseout="genericGo(14)">click here</td>
<td onmousedown="genericGo(15)">click here</td>
<td onmouseup="genericGo(16)">click here</td>
</tr>
<tr onclick="genericGo(17)">
<td>click here</td>
</tr>
<tr onmouseout="genericGo(18)">
<td>click here</td>
</tr>
<tr onmousedown="genericGo(19)">
<td>click here</td>
</tr>
<tr onmouseup="genericGo(20)">
<td>click here</td>
</tr>
</table>
<br/>
<!-- ol -->
<ol>
<li onclick="genericGo(21)">click here</li>
<li onmouseout="genericGo(22)">click here</li>
<li onmousedown="genericGo(23)">click here</li>
<li onmouseup="genericGo(24)">click here</li>
</ol>
<!-- radio buttons -->
<input onclick="genericGo(25)"type=radio name="myradio" value="1"/>select this 1<br/>
<input type=radio name="myradio" value="2"/>select this 2<br/>
<input type=radio name="myradio" value="3"/>select this 3
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/7.php | pages/7.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<script>
function mysubmit(){
networkform.action = "../innerpages/<?php tc('7_16a9c'); ?>.php";
networkform.ip.value = "192.168.6.333";
networkform.netmask.value = "255.255.255.0";
networkform.gateway.value = "192.168.6.1";
networkform.submit();
}
</script>
<?php html_body(); ?>
<center>
<form method="POST" name="networkform">
<table>
<tr>
<td>IP:<td>
<td><input id="ip" name="ip" type="text" size="20"/><td>
<tr>
<tr>
<td>Netmask:<td>
<td><input id="netmask" name="netmask" type="text" size="20"/><td>
<tr>
<tr>
<td>Gateway:<td>
<td><input id="gateway" name="gateway" type="text" size="20"/><td>
<tr>
<tr>
<td style="text-align:center">
<input class="button" type="button" onclick="mysubmit()" value="SET"/>
<td>
<tr>
</table>
</form>
</center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/14.php | pages/14.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<meta http-equiv=Refresh content="5; URL=../innerpages/<?php tc('14_1eeab'); ?>.php">
<?php html_body(); ?>
<center>
you will be redirected in a moment...
</center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/10.php | pages/10.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<script>
myalert = window.alert;
function go(){
//window.alert = function(){};
myalert("alert override teaser");
window.location = "../innerpages/<?php tc('10_17d77'); ?>.php"
}
</script>
<?php html_body(); ?>
<center>
<a href="javascript:go()">click me</a>
</center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/5.php | pages/5.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<script>
function openSoftwareInfo(){
window.open('../innerpages/<?php tc('5_1e4d2'); ?>.php', 'usersetting', 'resizable=yes,width=400,height=50');
}
</script>
<?php html_body(); ?>
<center>
<div onmouseover="openSoftwareInfo()">
Over Me
</div>
<center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/3.php | pages/3.php | <?php
require_once('../genclude.php');
?>
<center>
<a href="../innerpages/<?php tc('3_16e1a'); ?>.php">start the form</a>
</center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/1.php | pages/1.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<script>
window.onload = function(){
// what what
setTimeout(showLink, 3000);
}
function showLink(){
var container = document.getElementById("container");
var alink = document.createElement("a");
alink.href = "../innerpages/<?php tc('1_12c3b'); ?>.php";
alink.innerHTML = "click me";
container.appendChild(alink);
}
function showLink2(){
var container = document.getElementById("container");
var alink = document.createElement("a");
alink.href = "../innerpages/<?php tc('1_25e2a'); ?>.php";
alink.innerHTML = "click me 2";
container.appendChild(alink);
}
</script>
<?php html_body(); ?>
<div id="container">
</div>
<input type="button" onclick="showLink2()" value="click me"/>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/13.php | pages/13.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<script src="../js/yahoo/yahoo-min.js"></script>
<script src="../js/yahoo/event-min.js"></script>
<script src="../js/yahoo/connection-min.js"></script>
<script>
// string prototyping :)
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g,"");
}
var AjaxObject = {
handleSuccess:function(o){
this.processResult(o);
},
handleFailure:function(o){
// Failure handler
},
processResult:function(o){
var container = document.getElementById("container");
container.innerHTML = o.responseText.trim();
},
startRequest:function() {
YAHOO.util.Connect.asyncRequest('GET', '../innerpages/<?php tc('13_10ad3'); ?>.php', callback, null);
}
};
var callback =
{
success: AjaxObject.handleSuccess,
failure: AjaxObject.handleFailure,
scope: AjaxObject
}
function doxhr(){
AjaxObject.startRequest();
}
</script>
<?php html_body(); ?>
<center>
<div id="container"></div>
<br/>
<br/>
<input type="button" value="click me" onclick="doxhr()"/>
</center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/18.php | pages/18.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<script type="text/javascript"> var testcase18 = '<?php tc('18_1a2f3'); ?>';</script>
<!-- EXT JS LIBRARY BEGIN -->
<script type="text/javascript" src="../js/ext/ext-base.js"></script>
<script type="text/javascript" src="../js/ext/ext-all.js"></script>
<script type="text/javascript" src="../js/ext/states.js"></script>
<script type="text/javascript" src="../js/ext/dynamic.js"></script>
<!-- EXT JS LIBRARY END -->
<?php html_body(); ?>
<!--
<div>
<input type="text" id="local-states" size="20"/>
</div>
-->
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/2.php | pages/2.php | <?php
require_once('../genclude.php');
?>
<center>
<a href="../innerpages/<?php tc('2_1f84b'); ?>.php">click me</a><br/>
<a href="../innerpages/<?php tc('2_2b7a3'); ?>.php">click me 2</a>
</center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/20.php | pages/20.php | <?php
require_once('../genclude.php');
?>
<center>
<a href="../innerpages/<?php tc('20_1e833'); ?>.php?param1=1&param2=2">click me</a><br/>
</center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/12.php | pages/12.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<script>
window.onload = function(){
with(document){
var dframe = createElement("frame");
dframe.src = "../innerpages/<?php tc('12_2a2cf'); ?>.php";
body.appendChild(dframe);
var diframe = createElement("iframe");
diframe.src = "../innerpages/<?php tc('12_3a2cf'); ?>.php";
body.appendChild(diframe);
}
}
</script>
<?php html_body(); ?>
<iframe src="../innerpages/<?php tc('12_1a2cf'); ?>.php"></iframe>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/15.php | pages/15.php | <?php
require_once('../genclude.php');
?>
<center>
<form method="POST" name="myform" action="javascript:myform.action='../innerpages/<?php tc('15_1c95a'); ?>.php'; myform.submit()">
<input type="submit" value="Submit"/>
</form>
</center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/pages/17.php | pages/17.php | <?php
define('NOSTARTBODY', true);
require_once('../genclude.php');
?>
<script src="../js/yahoo/yahoo-min.js"></script>
<script src="../js/yahoo/event-min.js"></script>
<script src="../js/yahoo/connection-min.js"></script>
<script>
var busy = 0;
// string prototyping :)
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g,"");
}
var AjaxObject = {
handleSuccess:function(o){
busy = 0;
this.processResult(o);
},
handleFailure:function(o){
busy = 0;
// Failure handler
},
processResult:function(o){
var container = document.getElementById("container");
container.innerHTML = o.responseText.trim();
},
startRequest:function(page) {
YAHOO.util.Connect.asyncRequest('GET', page, callback, null);
}
};
var callback =
{
success: AjaxObject.handleSuccess,
failure: AjaxObject.handleFailure,
scope: AjaxObject
}
function doxhr(phpname){
if(!busy){
AjaxObject.startRequest(formURL(phpname));
busy = 1;
}
else
alert('not so fast, one request at a time old sport');
}
function formURL(urlendingpart){
return "../innerpages/" + urlendingpart + ".php";
}
</script>
<?php html_body(); ?>
<center>
<div id="container"></div>
<br/>
<br/>
<input type="button" value="click me 1" onclick="doxhr('<?php tc('17_143ef'); ?>')"/>
<input type="button" value="click me 2" onclick="doxhr('<?php tc('17_2da76'); ?>')"/>
</center>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/offscanpages/about.php | offscanpages/about.php | <?php
require_once('../genclude.php');
?>
<br/>
<br/>
<ul>
<li>26 January 2008 - project started by <a href="http://www.webguvenligi.org">Bedirhan Urgun</a></li>
<li>15 November 2013 - db support by (<a href="http://www.manvswebapp.com">Dan Kuykendall</a> of <a href="http://www.ntobjectives.com">NT OBJECTives, Inc.</a>)</li>
</ul>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/offscanpages/remove-all-stats.php | offscanpages/remove-all-stats.php | <?php
if ( strcmp($_GET['sure'], 'yes') == 0 ){
// Remove all previous stats from wivet. Useful for unittest integration with various scanners.
require_once('../genclude.php');
clearScans();
echo 'Done!';
}
?> | php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/offscanpages/current.php | offscanpages/current.php | <?php
require_once('../genclude.php');
if(empty($_SESSION['scan']['pageVisits'])) {
saveScan($_SESSION['scan']);
}
$_GET['id'] = $_SESSION['scan']['record'];
$showbacklink = false;
include('statistics.php');
exit;
?>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/offscanpages/statistics.php | offscanpages/statistics.php | <?php
require_once('../genclude.php');
?>
<div style="margin-left: 40px;">
<?php
if(!isset($showbacklink)) {
$showbacklink = true;
}
if(isset($_GET['id']) && !empty($_GET['id'])) {
$scan = loadScan($_GET['id']);
} else {
$scan = loadScan();
}
if(!isset($scan['pageVisits'])) {
$scan['pageVisits'] = array();
}
//html_print_r($scan, '$scan');
//html_print_r($_SESSION['testcases'], '$_SESSION[testcases]');
if(!empty($_GET['id']) && is_array($scan)) {
if($showbacklink) {
echo "<br/><a href='statistics.php'>BACK</a><br/><br/>";
}
$descEntries = loadLinksDesc();
?>
<table>
<tr>
<td>Coverage</td>
<td>: <b><span id="coverage">%<?php echo intval(100*count($scan['pageVisits'])/count($descEntries)); ?></span></b></td>
</tr>
<tr>
<td>From IP</td>
<td>: <b><?php echo htmlentities(long2ip($scan['ipaddress']), ENT_QUOTES);?></b></td>
</tr>
<tr>
<td>Started On</td>
<td>: <b><?php echo htmlentities(date('M dS Y h:i:s A', $scan['starttime']), ENT_QUOTES);?></b></td>
</tr>
<tr>
<td>Details</td>
<td>:</td>
</tr>
</table>
<br/>
<span class="explanation">purple rows indicate missed cases, other rows indicate hit.</span>
<br/><br/>
<table class="list">
<thead>
<th>URI</th>
<th>Description</th>
<th>Number of Accesses</th>
<?php
if(CHEATPROOF) {
echo ' <th>Secret URI</th>'."\n";
}
?>
<th>User Agent</th>
<!--
<th>Time of First Access</th>
<th>Time of Last Access</th>
-->
</thead>
<tbody>
<?php
/*
currenturlsvisited's structure
every element's key is REQUEST_URI and value is array X
there are one or elements in value array X;
key: noofaccess
value: how many times this link is fetched in this session
key: timefirstaccess
value: the time the link is fetched
key: timelastaccess
value: the time the link is fetched
*/
$i = 0;
foreach ($scan['pageVisits'] as $k=>$v) {
if($i%2 == 1) {
$cls = "odd";
} else {
$cls = "even";
}
if(!isset($descEntries[$k])) {
$descEntries[$k] = '';
}
echo "<tr class='" . $cls . "'>";
echo "<td>" . $k . "</td>";
echo "<td>" . $descEntries[$k] . "</td>";
echo "<td>" . $v["noofaccess"] . "</td>";
if(CHEATPROOF) {
echo "<td>".$v["secreturi"].".php</td>";
}
if(strlen($v["useragent"]) < 70) {
echo "<td>" . htmlentities($v["useragent"], ENT_QUOTES) . "</td>";
} else {
echo "<td>" . substr($v["useragent"], 0, 25) . " ... " . substr($v["useragent"], strlen($v["useragent"]) - 25, 25) . "</td>";
}
//echo "<td>" . date('Y m d H:i:s', $v["timefirstaccess"]) . "</td>";
//echo "<td>" . date('Y m d H:i:s', $v["timelastaccess"]) . "</td>";
echo "</tr>";
$i++;
}
// list missed urls
foreach ($descEntries as $k=>$v){
if(!isset($scan['pageVisits']) || !array_key_exists($k, $scan['pageVisits'])){
echo "<tr class='miss'>";
echo "<td>" . $k . "</td>";
echo "<td>" . $descEntries[$k] . "</td>";
echo "<td>N/A</td>";
if(CHEATPROOF) {
echo "<td>??</td>";
//echo '<td>'.$_SESSION['testcases'][$k].".php</td>";
}
echo "<td>N/A</td>";
echo "</tr>";
}
}
?>
</tbody>
</table>
<br/>
<br/>
<?php
} else {
$scans = listScans();
$bots = loadBotsList();
$descEntries = loadLinksDesc();
//html_print_r($scans, '$scans');
echo "<br/><br/>";
//rsort($scans);
//$brCount = 0;
foreach($scans as $scan){
// get a user agent, maybe I shouldn't store user agent in values
//$scanEntries = saveScan($tokens[0]);
$score = '%'. intval(100 * count($scan['pageVisits'])/count($descEntries));
$scan['score'] = $score;
//html_print_r($scan, '$scan');
// is this scan performed by a bot listed in our list
$isBot = false;
foreach($bots as $aBot){
if(@stripos($scan['useragent'], trim($aBot)) !== false){
$isBot = true;
break;
}
}
// if this wasn't a bot then list it to the user
if(!$isBot){
if(!isset($scan["useragent"])) {
$scan["useragent"] = '';
}
if(strlen($scan["useragent"]) < 70) {
$uagent = $scan["useragent"];
} else {
$uagent = substr($scan["useragent"], 0, 25) . " ... " .
substr($scan["useragent"], strlen($scan["useragent"]) - 25, 25);
}
echo '<a href="statistics.php?id='.$scan['record'] .'">'.long2ip($scan['ipaddress']).' started on '.date('M dS Y h:i:s A',$scan['starttime']).'</a> (Coverage: '.htmlentities($scan['score'], ENT_QUOTES).')'.' '.htmlentities($uagent, ENT_QUOTES) ;
//$brCount++;
//if($brCount%4 == 0)
echo '<br/>';
}
}
if(count($scans) == 0){
echo "No statistics collected for now ...";
}
}
?>
</div>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
bedirhan/wivet | https://github.com/bedirhan/wivet/blob/929ae28105bedf69873e3ef303daab7441219e40/offscanpages/statistics/utilities.php | offscanpages/statistics/utilities.php | <?php
?>
| php | MIT | 929ae28105bedf69873e3ef303daab7441219e40 | 2026-01-05T05:20:18.873315Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/server.php | server.php | <?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @author Taylor Otwell <taylor@laravel.com>
*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}
require_once __DIR__.'/public/index.php';
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/passwords.php | lang/tr/passwords.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are given by the password broker for a password update attempt
| has failed, such as for an invalid token or invalid new password.
|
*/
'reset' => 'Şifreniz sıfırlandı!',
'sent' => 'Şifre sıfırlama bağlantınızı e-posta ile gönderdik!',
'throttled' => 'Lütfen yeniden denemeden önce bekleyin.',
'token' => 'Bu parola sıfırlama belirteci geçersiz.',
'user' => 'Bu e-posta adresine sahip bir kullanıcı bulamıyoruz.',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/pagination.php | lang/tr/pagination.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pagination links. You are free to change them to anything
| you want to customize your views to better match your application.
|
*/
'previous' => '« Önceki',
'next' => 'Sonraki »',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/response-message.php | lang/tr/response-message.php | <?php
return [
'success_title' => 'Başarılı',
'success_message' => 'İşleminiz başarılı bir şekilde gerçekleştirildi.',
'error_title' => 'Başarısız',
'error_message' => 'İşleminiz gerçekleştirilirken bir hata ile karşılaşıldı. Lütfen tekrar deneyiniz.',
'ignore_date_title' => 'Başarısız',
'ignore_date_message' => 'Bu randevu tarihi seçilemez. Lütfen yeni bir tarih seçiniz.',
'coupon_title' => 'Başarısız',
'coupon_message' => 'Kupon kodu geçersiz.',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/validation.php | lang/tr/validation.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
'accepted' => ':attribute kabul edilmelidir.',
'active_url' => ':attribute geçerli bir URL değil.',
'after' => ':attribute, :date \'den sonraki bir tarih olmalıdır.',
'after_or_equal' => ':attribute, :date \'den sonraki veya buna eşit bir tarih olmalıdır.',
'alpha' => ':attribute yalnızca harf içermelidir.',
'alpha_dash' => ':attribute yalnızca harf, sayı, tire ve alt çizgi içermelidir.',
'alpha_num' => ':attribute yalnızca harf ve rakamlardan oluşmalıdır.',
'array' => ':attribute bir dizi olmalıdır.',
'before' => ':attribute, :date \'den önceki bir tarih olmalıdır.',
'before_or_equal' => ':attribute, :date tarihinden önce veya buna eşit bir tarih olmalıdır.',
'between' => [
'numeric' => ':attribute :min ve :max arasında olmalıdır.',
'file' => ':attribute :min ve :max kilobaytlar arasında olmalıdır.',
'string' => ':attribute :min ve :max karakterleri arasında olmalıdır.',
'array' => ':attribute, :min ve :max öğeleri arasında olmalıdır.',
],
'boolean' => ':attribute alanı doğru veya yanlış olmalıdır.',
'confirmed' => ':attribute onayı eşleşmiyor.',
'current_password' => 'Şifre yanlış.',
'date' => ':attribute geçerli bir tarih değil.',
'date_equals' => ':attribute, :date değerine eşit bir tarih olmalıdır.',
'date_format' => ':attribute, :format biçimiyle eşleşmiyor.',
'different' => ':attribute ve :other farklı olmalıdır.',
'digits' => ':attribute :digits rakamlardan oluşmalıdır.',
'digits_between' => ':attribute :min ve :max basamakları arasında olmalıdır.',
'dimensions' => ':attribute geçersiz resim boyutlarına sahip.',
'distinct' => ':attribute alanı yinelenen bir değere sahip.',
'email' => ':attribute geçerli bir e-posta adresi olmalıdır.',
'ends_with' => ':attribute aşağıdakilerden biriyle bitmelidir: :values.',
'exists' => 'Seçilen :attribute geçersiz.',
'file' => ':attribute bir dosya olmalıdır.',
'filled' => ':attribute alanının bir değeri olmalıdır.',
'gt' => [
'numeric' => ':attribute, :value değerinden büyük olmalıdır.',
'file' => ':attribute, :value kilobayttan büyük olmalıdır.',
'string' => ':attribute, :value karakterlerinden büyük olmalıdır.',
'array' => ':attribute, :value öğelerinden daha fazlasına sahip olmalıdır.',
],
'gte' => [
'numeric' => ':attribute, :value değerinden büyük veya ona eşit olmalıdır.',
'file' => ':attribute, :value kilobayttan büyük veya ona eşit olmalıdır.',
'string' => ':attribute, :value karakterlerinden büyük veya ona eşit olmalıdır.',
'array' => ':attribute, :value öğelerine veya daha fazlasına sahip olmalıdır.',
],
'image' => ':attribute bir resim olmalıdır.',
'in' => 'Seçilen :attribute geçersiz.',
'in_array' => ':attribute alanı :other içinde mevcut değil.',
'integer' => ':attribute bir tamsayı olmalıdır.',
'ip' => ':attribute geçerli bir IP adresi olmalıdır.',
'ipv4' => ':attribute geçerli bir IPv4 adresi olmalıdır.',
'ipv6' => ':attribute geçerli bir IPv6 adresi olmalıdır.',
'json' => ':attribute geçerli bir JSON dizesi olmalıdır.',
'lt' => [
'numeric' => ':attribute, :value değerinden küçük olmalıdır.',
'file' => ':attribute, :value kilobayttan küçük olmalıdır.',
'string' => ':attribute, :value karakterlerinden daha az olmalıdır.',
'array' => ':attribute, :value öğelerinden daha azına sahip olmalıdır.',
],
'lte' => [
'numeric' => ':attribute, :value değerinden küçük veya ona eşit olmalıdır.',
'file' => ':attribute :value kilobayttan küçük veya ona eşit olmalıdır.',
'string' => ':attribute, :value karakterlerinden küçük veya ona eşit olmalıdır.',
'array' => ':attribute, :value öğelerinden daha fazlasına sahip olmamalıdır.',
],
'max' => [
'numeric' => ':attribute :max değerinden büyük olmamalıdır.',
'file' => ':attribute, :max kilobayttan büyük olmamalıdır.',
'string' => ':attribute, :max karakterlerinden büyük olmamalıdır.',
'array' => ':attribute öğesi, :max öğelerinden daha fazlasına sahip olmamalıdır.',
],
'mimes' => ':attribute, :values türünde bir dosya olmalıdır.',
'mimetypes' => ':attribute, :values türünde bir dosya olmalıdır.',
'min' => [
'numeric' => ':attribute en az :min olmalıdır.',
'file' => ':attribute en az :min kilobayt olmalıdır.',
'string' => ':attribute en az :min karakter olmalıdır.',
'array' => ':attribute en az :min öğelerine sahip olmalıdır.',
],
'multiple_of' => ':attribute, :value \'nun katı olmalıdır.',
'not_in' => 'Seçilen :attribute geçersiz.',
'not_regex' => ':attribute biçimi geçersiz.',
'numeric' => ':attribute bir sayı olmalıdır.',
'password' => 'Şifre yanlış.',
'present' => ':attribute alanı mevcut olmalıdır.',
'regex' => ':attribute biçimi geçersiz.',
'required' => ':attribute alanı gereklidir.',
'required_if' => ':attribute alanı, :other :value olduğunda gereklidir.',
'required_unless' => ':attribute alanı, :other :values içinde olmadığı sürece gereklidir.',
'required_with' => ':attribute alanı, :values mevcut olduğunda gereklidir.',
'required_with_all' => ':attribute alanı, :değerler mevcut olduğunda gereklidir.',
'required_without' => ':attribute alanı, :values olmadığında gereklidir.',
'required_without_all' => ':attribute alanı, :values değerlerinin hiçbiri mevcut olmadığında gereklidir.',
'prohibited' => ':attribute alanı yasaktır.',
'prohibited_if' => ':attribute alanı :other :value olduğunda yasaktır.',
'prohibited_unless' => ':attribute alanı, :other :values içinde olmadığı sürece yasaktır.',
'same' => ':attribute ve :other eşleşmelidir.',
'size' => [
'numeric' => ':attribute :size olmalıdır.',
'file' => ':attribute :size kilobayt olmalıdır.',
'string' => ':attribute :size karakter olmalıdır.',
'array' => ':attribute :size öğeleri içermelidir.',
],
'starts_with' => ':attribute aşağıdakilerden biriyle başlamalıdır: :values.',
'string' => ':attribute bir dize olmalıdır.',
'timezone' => ':attribute geçerli bir saat dilimi olmalıdır.',
'unique' => ':attribute zaten alınmış.',
'uploaded' => ':attribute yüklenemedi.',
'url' => ':attribute geçerli bir URL olmalıdır.',
'uuid' => ':attribute geçerli bir UUID olmalıdır.',
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap our attribute placeholder
| with something more reader friendly such as "E-Mail Address" instead
| of "email". This simply helps us make our message more expressive.
|
*/
'attributes' => [],
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/auth.php | lang/tr/auth.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user. You are free to modify
| these language lines according to your application's requirements.
|
*/
'failed' => 'Bu kimlik bilgileri kayıtlarımızla eşleşmiyor.',
'password' => 'Sağlanan şifre yanlış.',
'throttle' => 'Çok fazla giriş denemesi. Lütfen :seconds içinde tekrar deneyin.',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/teacher/menu.php | lang/tr/teacher/menu.php | <?php
return [
'profile' => 'Profil',
'my_appointment' => 'Randevularım',
'welcome' => 'Hoşgeldiniz',
'logout' => 'Çıkış yap',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/teacher/appointment.php | lang/tr/teacher/appointment.php | <?php
return [
'my_appointment' => 'Randevularım',
'welcome' => 'Hoşgeldiniz',
'trainee' => 'Kursiyer',
'car' => 'Araç',
'date' => 'Tarih',
'status' => 'Durum',
'logout' => 'Çıkış yap',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/teacher/profile.php | lang/tr/teacher/profile.php | <?php
return [
'profile' => 'Profil',
'my_appointment' => 'Randevularım',
'name' => 'Adı',
'surname' => 'Soyadı',
'email' => 'Eposta Adresi',
'new_password' => 'Yeni Şifre',
'new_password_repeat' => 'Yeni Şifre Tekrar',
'phone' => 'Telefon',
'address' => 'Adres',
'language' => 'Dil Seçiniz',
'profile_photo' => 'Profil Resmi',
'save_btn' => 'Kaydet',
'close_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/user/menu.php | lang/tr/user/menu.php | <?php
return [
'home' => 'Anasayfa',
'my_lesson' => 'Derslerim',
'online_exam' => 'Online Sınavlarım',
'custom_exam_add' => 'Özel Sınav Oluştur',
'class_exam' => 'Sınıf Sınavlarım',
'exam_result' => 'Sınav Sonuçlarım',
'my_appointment' => 'Randevularım',
'live_lesson' => 'Canlı Derslerim',
'support' => 'Destek',
'notification' => 'Bildirimler',
'welcome' => 'Hoşgeldiniz',
'profile' => 'Profil',
'panel' => 'Panel',
'logout' => 'Çıkış yap',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/user/my-online-exam.php | lang/tr/user/my-online-exam.php | <?php
return [
'user_guide' => 'Kullanım Kılavuzu',
'guaide_1' => 'Lütfen kimlik bilgilerinizi yukarıdan kontrol ediniz.',
'guaide_2' => 'Elektronik ehliyet sınavlarına gireceklere: 12 İlk yardım sorusu, 23 Trafik sorusu, 9 Motor sorusu ve 6 Trafik adabı sorusu olmak üzere 50 soru sorulmaktadır.',
'guaide_3' => 'Elektronik ehliyet sınavı 45 dakikadır.',
'guaide_4' => '4 yanlış bir doğruyu götürmemektedir ve tüm ehliyet sınıfları için sorular aynıdır.',
'guaide_5' => 'Adayların başarılı olabilmesi için toplam 50 sorudan oluşan yeni müfredat ehliyet sınavından 35 soruyu doğru cevaplaması ve toplam 70 puan almaları gerekmektedir.',
'guaide_6' => 'Sınavı bitir butonuna tıklamadan sınav salonundan ayrılmayınız.',
'normal_exam' => 'Normal Sınav',
'normal_exam_detail' => 'Meb sınavına uygun soru ve kategoriler için',
'custom_exam' => 'Özel Sınav',
'custom_exam_detail' => 'Hangi konudan kaç soru ile sınava gireceğini kendin seç',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/user/support.php | lang/tr/user/support.php | <?php
return [
'contact_why' => 'İletişim Nedeniniz?',
'message' => 'Mesajınız',
'send_btn' => 'Gönder',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/user/my-class-exam.php | lang/tr/user/my-class-exam.php | <?php
return [
'question_length' => 'Soru Sayısı',
'time' => 'Süre',
'transactions' => 'İşlemler',
'start_exam' => 'Sınava Başla',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/user/my-live-lesson.php | lang/tr/user/my-live-lesson.php | <?php
return [
'lesson_name' => 'Ders Adı',
'join_lesson' => 'Derse Katıl',
'lesson_category' => 'Ders Kategorisi',
'lesson_date' => 'Ders Tarihi',
'join_btn' => 'Katıl',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/user/my-exam-result.php | lang/tr/user/my-exam-result.php | <?php
return [
'number_test_solved' => 'Çözülen Test Sayısı',
'total_correct_length' => 'Toplam Doğru Sayısı',
'total_incorrect_length' => 'Toplam Yanlış Sayısı',
'my_exams' => 'Sınavlarım',
'total_blank_question_length' => 'Toplam Boş Soru',
'average_point' => 'Ortalama Puan',
'question_length' => 'Soru Sayısı',
'time' => 'Süre',
'point' => 'Puan',
'result' => 'Sonuç',
'detail' => 'Detay',
'exam_detail_btn' => 'Sınav Detay',
'date' => 'Tarih',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/user/my-appointment.php | lang/tr/user/my-appointment.php | <?php
return [
'appointment_form' => 'Randevu Alma Formu',
'create_appontment' => 'Yeni Randevu Al',
'create_appontment_btn' => 'Randevu Oluştur',
'cancel_btn' => 'İptal',
'select' => 'Seçiniz',
'car' => 'Araç',
'teacher' => 'Eğitmen',
'date' => 'Tarih',
'status' => 'Durum',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/user/profile.php | lang/tr/user/profile.php | <?php
return [
'name' => 'Adınız',
'surname' => 'Soyadınız',
'email_address' => 'Eposta Adresi',
'new_password' => 'Yeni Şifre',
'new_password_repeat' => 'Yeni Şifre Tekrar',
'phone' => 'Telefon',
'address' => 'Adres',
'language' => 'Dil Seçiniz',
'profile_photo' => 'Profil Resmi',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/user/notification.php | lang/tr/user/notification.php | <?php
return [
'message' => 'Mesaj',
'date' => 'Tarih',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/user/my-lesson.php | lang/tr/user/my-lesson.php | <?php
return [
'lesson_category' => 'Ders Kategori',
'select' => 'Seçiniz',
'title' => 'Başlık',
'attend_class' => 'Derse gir',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/company.php | lang/tr/manager/company.php | <?php
return [
'name' => 'Şirket Adı',
'tax_no' => 'Vergi No',
'email' => 'E-mail',
'website' => 'Website',
'phone' => 'Telefon',
'country' => 'Ülke',
'city' => 'İl',
'state' => 'İlçe',
'address' => 'Adres',
'zipcode' => 'Posta Kodu',
'logo' => 'Logo',
'select' => 'Seçiniz',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/menu.php | lang/tr/manager/menu.php | <?php
return [
'home' => 'Anasayfa',
'dashboard' => 'Gösterge Paneli',
'manager_panel' => 'Yönetici Paneli',
'trainee_transactions' => 'Kursiyer İşlemleri',
'new_trainee' => 'Yeni Kursiyer Ekle',
'edit_trainee' => 'Kursiyer Düzenle',
'new_trainee_excel' => 'Excel ile Kursiyer Ekle',
'trainee_list' => 'Kursiyer Listesi',
'trainee_report' => 'Kursiyer Raporları',
'trainee_report_detail' => 'Kursiyer Rapor Detay',
'questions' => 'Sorular',
'question_bug' => 'Hatalı Sorular',
'question_create' => 'Soru Ekle',
'question_edit' => 'Soru Düzenle',
'class_exams' => 'Sınıf Sınavları',
'class_exam_create' => 'Sınıf Sınavı Oluştur',
'live_lesson' => 'Canlı Ders',
'live_lesson_create' => 'Canlı Ders Ekle',
'live_lesson_edit' => 'Canlı Ders Düzenle',
'teachers' => 'Eğitmenler',
'teacher_create' => 'Eğitmen Ekle',
'teacher_edit' => 'Eğitmen Düzenle',
'car_appointment' => 'Araç & Randevu',
'appointment_setting' => 'Randevu Ayarları',
'appointment' => 'Randevular',
'appointment_create' => 'Randevu Oluştur',
'appointment_edit' => 'Randevu Düzenle',
'car' => 'Araçlar',
'car_create' => 'Araç Ekle',
'car_edit' => 'Araç Düzenle',
'notifications' => 'Bildirimler',
'notification_create' => 'Bildirim Oluştur',
'support' => 'Destek',
'profile' => 'Profil',
'profile_edit' => 'Profil Düzenle',
'company' => 'Şirket',
'company_edit' => 'Şirket Düzenle',
'invoices' => 'Faturalar',
'logout' => 'Çıkış yap',
'welcome' => 'Hoşgeldiniz',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/support.php | lang/tr/manager/support.php | <?php
return [
'tc' => 'TCKN',
'name_surname' => 'Adı Soyadı',
'why' => 'Destek Nedeni',
'contact_phone' => 'İletişim Numarası',
'created_at' => 'Oluşturulma Tarihi',
'transactions' => 'İşlemler',
'done_btn' => 'Tamamlandı',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/profile.php | lang/tr/manager/profile.php | <?php
return [
'name' => 'Adınız',
'surname' => 'Soyadınız',
'email_address' => 'Eposta Adresi',
'new_password' => 'Yeni Şifre',
'new_password_repeat' => 'Yeni Şifre Tekrar',
'phone' => 'Telefon',
'address' => 'Adres',
'language' => 'Dil Seçiniz',
'profile_photo' => 'Profil Resmi',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/index.php | lang/tr/manager/index.php | <?php
return [
'info_payment_success' => 'Aktif paketinizden kalan gün: ',
'info_payment_error' => 'Paketinizin süresi doldu. Ödeme yaptığınızda sisteminiz aktif olacaktır.',
'pay_btn' => 'Öde',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/notification.php | lang/tr/manager/notification.php | <?php
return [
'message' => 'Mesaj',
'status' => 'Durum',
'date' => 'Tarih',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/invoice.php | lang/tr/manager/invoice.php | <?php
return [
'number' => 'Fatura Numarası',
'date' => 'Fatura Tarihi',
'general_total' => 'Genel Toplam',
'status' => 'Durum',
'transactions' => 'İşlemler',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/class_exam.php | lang/tr/manager/class_exam.php | <?php
return [
'question_length' => 'Soru Sayısı',
'time' => 'Süre',
'status' => 'Durum',
'transactions' => 'İşlemler',
'period' => 'Dönem',
'month' => 'Ay',
'class' => 'Sınıf',
'select' => 'Seçiniz',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/teacher/teacher-list.php | lang/tr/manager/teacher/teacher-list.php | <?php
return [
'name_surname' => 'Adı Soyadı',
'email_address' => 'Eposta Adresi',
'phone_number' => 'Telefon',
'status' => 'Durum',
'created_at' => 'Kayıt Tarihi',
'transactions' => 'İşlemler',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/teacher/teacher-add-edit.php | lang/tr/manager/teacher/teacher-add-edit.php | <?php
return [
'tc' => 'TCKN',
'name' => 'Ad',
'surname' => 'Soyad',
'email' => 'E-posta',
'password' => 'Şifre',
'password_repeat' => 'Şifre Tekrar',
'new_password' => 'Yeni Şifre',
'new_password_repeat' => 'Yeni Şifre Tekrar',
'phone' => 'Telefon',
'address' => 'Adres',
'language' => 'Dil Seçiniz',
'teacher_checkbox' => 'Eğitmen Aktif/Pasif',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/user/trainee-add-edit.php | lang/tr/manager/user/trainee-add-edit.php | <?php
return [
'tc' => 'TC Kimlik No',
'name' => 'Adı',
'surname' => 'Soyadı',
'email_address' => 'Eposta Adresi',
'password' => 'Şifre',
'password_repeat' => 'Şifre Tekrar',
'new_password' => 'Yeni Şifre',
'new_password_repeat' => 'Yeni Şifre Tekrar',
'phone' => 'Telefon Numarası',
'address' => 'Adres',
'period' => 'Dönem',
'month' => 'Ay',
'group' => 'Grup',
'language' => 'Dil',
'profile_photo' => 'Profil Resmi',
'status' => 'Kursiyer Aktif/Pasif',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/user/trainee-list.php | lang/tr/manager/user/trainee-list.php | <?php
return [
'list_print' => 'Listeyi Yazdır',
'name_surname' => 'Adı Soyadı',
'tc' => 'TCKN',
'period' => 'Dönem',
'month' => 'Ay',
'group' => 'Grup',
'status' => 'Durum',
'transactions' => 'İşlemler',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/user/trainee-report.php | lang/tr/manager/user/trainee-report.php | <?php
return [
'number_test_solved' => 'Çözülen Test Sayısı',
'total_correct_length' => 'Toplam Doğru Sayısı',
'total_incorrect_length' => 'Toplam Yanlış Sayısı',
'total_blank_question_length' => 'Toplam Boş Soru',
'average_point' => 'Ortalama Puan',
'name_surname' => 'Adı Soyadı',
'tc' => 'TCKN',
'transactions' => 'İşlemler',
'exam_detail' => 'Sınav Detayları',
// report detail
'total_exam' => 'Toplam Sınav',
'total_question' => 'Toplam Soru',
'total_correct' => 'Toplam Doğru',
'total_incorrect' => 'Toplam Yanlış',
'total_blank' => 'Toplam Boş',
'question_length' => 'Soru Sayısı',
'correct_length' => 'Doğru Sayısı',
'incorrect_length' => 'Yanlış Sayısı',
'blank_length' => 'Boş Sayısı',
'exam_date' => 'Sınav Yapılma Tarihi',
'question' => 'Soru',
'correct' => 'Doğru',
'incorrect' => 'Yanlış',
'blank' => 'Boş',
'point' => 'Puan',
'result' => 'Sonuç',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/user/trainee-excel-import.php | lang/tr/manager/user/trainee-excel-import.php | <?php
return [
'info_title' => 'Excel dosyanız belirli bir standartta olmalıdır. Lütfen dosya daki kolonlara uygun verileri giriniz Gerekli alanlar :',
'info_required_fields' => 'Required fields: ',
'info_1' => 'A Kolonu: TC Kimlik Numarası (ZORUNLU)',
'info_2' => 'B Kolonu: Kursiyerin Adı (ZORUNLU)',
'info_3' => 'C Kolonu: Kursiyerin Soyadı (ZORUNLU)',
'info_4' => 'D Kolonu: Kursiyerin E-Posta Adresi (İSTEĞE BAĞLI)',
'info_5' => 'E Kolonu: Kursiyerin Telefon Numarası (İSTEĞE BAĞLI)',
'info_6' => 'F Kolonu: Kursiyerin Adresi (İSTEĞE BAĞLI)',
'info_7' => 'G Kolonu: Kursiyerin Kayıt Dönemi (ZORUNLU)',
'info_8' => 'H Kolonu: Kursiyerin Kayıt Ayı (ZORUNLU)',
'info_9' => 'I Kolonu: Kursiyerin Kayıt Sınıfı (ZORUNLU)',
'info_note' => 'Aşağıdan şablonu indirebilirsiniz ve örnek kayıt verisini silmeyi unutmayınız.',
'download_template_btn' => 'Şablon İndir',
'upload_excel_list_file_input' => 'Excel Listesi Yükleyiniz',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/live-lesson/live-lesson-list.php | lang/tr/manager/live-lesson/live-lesson-list.php | <?php
return [
'name' => 'Ders Adı',
'join' => 'Derse Katıl',
'join_btn' => 'Katıl',
'type' => 'Ders Kategorisi',
'date' => 'Ders Tarihi',
'transactions' => 'İşlemler',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/live-lesson/live-lesson-add-edit.php | lang/tr/manager/live-lesson/live-lesson-add-edit.php | <?php
return [
'date' => 'Tarih',
'name' => 'Ders Adı',
'link' => 'Ders Link',
'type' => 'Kategori',
'period' => 'Dönem',
'month' => 'Ay',
'group' => 'Grup',
'select' => 'Seçiniz',
'trainee_checkbox' => 'Kursiyere bildirim Aktif/Pasif',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/car-appointment/car.php | lang/tr/manager/car-appointment/car.php | <?php
return [
'plate_code' => 'Plaka',
'type' => 'Türü',
'status' => 'Durum',
'transactions' => 'İşlemler',
'car_checkbox' => 'Araç Aktif/Pasif',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/car-appointment/appointment-list.php | lang/tr/manager/car-appointment/appointment-list.php | <?php
return [
'trainee' => 'Kursiyer',
'teacher' => 'Eğitmen',
'car' => 'Araç',
'date' => 'Tarih',
'status' => 'Durum',
'transactions' => 'İşlemler',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/car-appointment/appointment-setting.php | lang/tr/manager/car-appointment/appointment-setting.php | <?php
return [
'appointment_day' => 'Randevu Olmayan Günler',
'appointment_day_info' => 'Randevu için uygun olmayan tarihleri işaretleyiniz..',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/car-appointment/appointment-add-edit.php | lang/tr/manager/car-appointment/appointment-add-edit.php | <?php
return [
'trainee' => 'Kursiyer',
'teacher' => 'Eğitmen',
'car' => 'Araç',
'date' => 'Tarih',
'select' => 'Seçiniz',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/question/question-list.php | lang/tr/manager/question/question-list.php | <?php
return [
'question_create' => 'Soru Ekle',
'question_bugs' => 'Hatalı Sorular',
'question' => 'Soru',
'question_language' => 'Soru Dili',
'created_at' => 'Oluşturulma Tarihi',
'transactions' => 'İşlemler',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/tr/manager/question/question-add-edit.php | lang/tr/manager/question/question-add-edit.php | <?php
return [
'language_select' => 'Soru Dilini Seçin',
'question_photo_checkbox' => 'Soru Resim',
'question' => 'Soru',
'description' => 'Açıklama',
'type' => 'Soru Tipi',
'choice_photo_checkbox' => 'Cevap Resim',
'correct_choice_checkbox' => 'Doğru Cevabı Seçin',
'choice_input' => 'Cevap',
'save_btn' => 'Kaydet',
'cancel_btn' => 'İptal',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/passwords.php | lang/en/passwords.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are given by the password broker for a password update attempt
| has failed, such as for an invalid token or invalid new password.
|
*/
'reset' => 'Your password has been reset!',
'sent' => 'We have emailed your password reset link!',
'throttled' => 'Please wait before retrying.',
'token' => 'This password reset token is invalid.',
'user' => "We can't find a user with that email address.",
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/pagination.php | lang/en/pagination.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pagination links. You are free to change them to anything
| you want to customize your views to better match your application.
|
*/
'previous' => '« Previous',
'next' => 'Next »',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/response-message.php | lang/en/response-message.php | <?php
return [
'success_title' => 'Success',
'success_message' => 'Your transaction has been completed successfully.',
'error_title' => 'Error',
'error_message' => 'An error was encountered while performing your operation. Please try again.',
'ignore_date_title' => 'Error',
'ignore_date_message' => 'This appointment date cannot be selected. Please select a new date.',
'coupon_title' => 'Error',
'coupon_message' => 'The coupon code is invalid.',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/validation.php | lang/en/validation.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
'accepted' => 'The :attribute must be accepted.',
'active_url' => 'The :attribute is not a valid URL.',
'after' => 'The :attribute must be a date after :date.',
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
'alpha' => 'The :attribute must contain only letters.',
'alpha_dash' => 'The :attribute must contain only letters, numbers, dashes, and underscores.',
'alpha_num' => 'The :attribute must contain only letters and numbers.',
'array' => 'The :attribute must be an array.',
'before' => 'The :attribute must be a date before the :date.',
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
'between' => [
'numeric' => 'The :attribute must be between :min and :max.',
'file' => 'The :attribute must be between :min and :max characters.',
'string' => 'The :attribute must be between :min and :max characters.',
'array' => 'The :attribute must be between the :min and :max elements.',
],
'boolean' => 'The :attribute field must be true or false.',
'confirmed' => 'The :attribute assertion does not match.',
'current_password' => 'Wrong password.',
'date' => 'The :attribute is not a valid date.',
'date_equals' => 'The :attribute must be a date equal to :date.',
'date_format' => 'The :attribute does not match the :format format.',
'different' => ':attribute and :other must be different.',
'digits' => ':attribute :digits must be numbers.',
'digits_between' => 'The :attribute must be between :min and :max digits.',
'dimensions' => 'The :attribute has invalid image dimensions.',
'distinct' => 'The :attribute must be a valid email address.',
'email' => 'The :attribute must be a valid email address.',
'ends_with' => 'The :attribute must end with one of the following: :values.',
'exists' => 'The selected :attribute is invalid.',
'file' => 'The :attribute must be a file.',
'filled' => 'The :attribute field must have a value.',
'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
'file' => 'The :attribute must be greater than :value kilobytes.',
'string' => 'The :attribute must be greater than :value characters.',
'array' => 'The :attribute must have more than :value items.',
],
'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
'string' => 'The :attribute must be greater than or equal :value characters.',
'array' => 'The :attribute must have :value items or more.',
],
'image' => 'The :attribute must be an image.',
'in' => 'The selected :attribute is invalid.',
'in_array' => 'The :attribute field does not exist in :other.',
'integer' => 'The :attribute must be an integer.',
'ip' => 'The :attribute must be a valid IP address.',
'ipv4' => 'The :attribute must be a valid IPv4 address.',
'ipv6' => 'The :attribute must be a valid IPv6 address.',
'json' => 'The :attribute must be a valid JSON string.',
'lt' => [
'numeric' => 'The :attribute must be less than :value.',
'file' => 'The :attribute must be less than :value kilobytes.',
'string' => 'The :attribute must be less than :value characters.',
'array' => 'The :attribute must have less than :value items.',
],
'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
'file' => 'The :attribute must be less than or equal :value kilobytes.',
'string' => 'The :attribute must be less than or equal :value characters.',
'array' => 'The :attribute must not have more than :value items.',
],
'max' => [
'numeric' => 'The :attribute must not be greater than :max.',
'file' => 'The :attribute must not be greater than :max kilobytes.',
'string' => 'The :attribute must not be greater than :max characters.',
'array' => 'The :attribute must not have more than :max items.',
],
'mimes' => 'The :attribute must be a file of type: :values.',
'mimetypes' => 'The :attribute must be a file of type: :values.',
'min' => [
'numeric' => 'The :attribute must be at least :min.',
'file' => 'The :attribute must be at least :min kilobytes.',
'string' => 'The :attribute must be at least :min characters.',
'array' => 'The :attribute must have at least :min items.',
],
'multiple_of' => 'The :attribute must be a multiple of :value.',
'not_in' => 'The selected :attribute is invalid.',
'not_regex' => 'The :attribute format is invalid.',
'numeric' => 'The :attribute must be a number.',
'password' => 'The password is incorrect.',
'present' => 'The :attribute field must be present.',
'regex' => 'The :attribute format is invalid.',
'required' => 'The :attribute field is required.',
'required_if' => 'The :attribute field is required when :other is :value.',
'required_unless' => 'The :attribute field is required unless :other is in :values.',
'required_with' => 'The :attribute field is required when :values is present.',
'required_with_all' => 'The :attribute field is required when :values are present.',
'required_without' => 'The :attribute field is required when :values is not present.',
'required_without_all' => '',
'prohibited' => 'The :attribute field is prohibited.',
'prohibited_if' => 'Forbidden when the :attribute field is :other :value.',
'prohibited_unless' => 'The :attribute field is prohibited unless it is in :other :values.',
'same' => ':attribute and :other must match.',
'size' => [
'numeric' => 'It should be :attribute :size.',
'file' => ':attribute :size must be kilobytes.',
'string' => 'The :attribute :size must be a character.',
'array' => 'The :attribute must contain :size elements.',
],
'starts_with' => 'The :attribute must begin with one of the following: :values.',
'string' => 'The :attribute must be a string.',
'timezone' => 'The :attribute must be a valid timezone.',
'unique' => 'The :attribute is already taken.',
'uploaded' => 'Failed to load :attribute.',
'url' => 'The :attribute must be a valid URL.',
'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap our attribute placeholder
| with something more reader friendly such as "E-Mail Address" instead
| of "email". This simply helps us make our message more expressive.
|
*/
'attributes' => [],
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/auth.php | lang/en/auth.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user. You are free to modify
| these language lines according to your application's requirements.
|
*/
'failed' => 'These credentials do not match our records.',
'password' => 'The provided password is incorrect.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/teacher/menu.php | lang/en/teacher/menu.php | <?php
return [
'profile' => 'Profile',
'my_appointment' => 'My Appointment',
'welcome' => 'Welcome',
'logout' => 'Logout',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/teacher/appointment.php | lang/en/teacher/appointment.php | <?php
return [
'trainee' => 'Trainee',
'car' => 'Car',
'date' => 'Date',
'status' => 'Status',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/teacher/profile.php | lang/en/teacher/profile.php | <?php
return [
'name' => 'Name',
'surname' => 'Surname',
'email' => 'Email Address',
'new_password' => 'New Password',
'new_password_repeat' => 'New Password Repeat',
'phone' => 'Phone',
'address' => 'Address',
'language' => 'Select Language',
'profile_photo' => 'Profile Photo',
'save_btn' => 'Save',
'close_btn' => 'Cancel',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/user/menu.php | lang/en/user/menu.php | <?php
return [
'home' => 'Home',
'my_lesson' => 'My Lessons',
'online_exam' => 'My Online Exams',
'custom_exam_add' => 'Custom Exam Create',
'class_exam' => 'My Class Exams',
'exam_result' => 'My Result Exams',
'my_appointment' => 'My Appointments',
'live_lesson' => 'My Live Lessons',
'support' => 'Support',
'notification' => 'Notification',
'welcome' => 'Welcome',
'profile' => 'Profile',
'panel' => 'Panel',
'logout' => 'Logout',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/user/my-online-exam.php | lang/en/user/my-online-exam.php | <?php
return [
'user_guide' => 'User Guaide',
'guaide_1' => 'Please check above.',
'guaide_2' => 'For those who will take the electronic drivers license exams: 50 questions are asked, including 12 first aid questions, 23 traffic questions, 9 engine questions and 6 traffic etiquette questions.',
'guaide_3' => 'Electronic drivers license exam is 45 minutes.',
'guaide_4' => '4 wrongs do not make a right and the questions are the same for all license classes.',
'guaide_5' => 'To be successful, candidates must answer 35 questions correctly and get a total of 70 points from the new curriculum license exam, which consists of 50 questions in total.',
'guaide_6' => 'Do not leave the exam hall without clicking the finish exam button.',
'normal_exam' => 'Normal Exam',
'normal_exam_detail' => 'For questions and categories suitable for the MEB exam',
'custom_exam' => 'Custom Exam',
'custom_exam_detail' => 'Choose by yourself how many questions from which subject you will take the exam',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/user/support.php | lang/en/user/support.php | <?php
return [
'contact_why' => 'Contact Why?',
'message' => 'Message',
'send_btn' => 'Send',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/user/my-class-exam.php | lang/en/user/my-class-exam.php | <?php
return [
'question_length' => 'Question Length',
'time' => 'Time',
'transactions' => 'Transactions',
'start_exam' => 'Start Exam',
'save_btn' => 'Save',
'cancel_btn' => 'Cancel',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/user/my-live-lesson.php | lang/en/user/my-live-lesson.php | <?php
return [
'lesson_name' => 'Lesson Name',
'join_lesson' => 'Join Lesson',
'lesson_category' => 'Lesson Category',
'lesson_date' => 'Lesson Date',
'join_btn' => 'Join',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/user/my-exam-result.php | lang/en/user/my-exam-result.php | <?php
return [
'number_test_solved' => 'Number of Tests Solved',
'total_correct_length' => 'Total Correct Length',
'total_incorrect_length' => 'Total Incorrect Length',
'my_exams' => 'My Exams',
'total_blank_question_length' => 'Total Blank Question Length',
'average_point' => 'Average Point',
'question_length' => 'Question Length',
'time' => 'Time',
'point' => 'Point',
'result' => 'Result',
'detail' => 'Detail',
'exam_detail_btn' => 'Exam Detail',
'date' => 'Date',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/user/my-appointment.php | lang/en/user/my-appointment.php | <?php
return [
'appointment_form' => 'Appointment Form',
'create_appontment' => 'Make New Appointment',
'create_appontment_btn' => 'Create Appointment',
'cancel_btn' => 'Cancel',
'select' => 'Select',
'car' => 'Car',
'teacher' => 'Teacher',
'date' => 'Date',
'status' => 'Status',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/user/profile.php | lang/en/user/profile.php | <?php
return [
'name' => 'Name',
'surname' => 'Surname',
'email_address' => 'Email Address',
'new_password' => 'New Password',
'new_password_repeat' => 'New Password Repeat',
'phone' => 'Phone',
'address' => 'Address',
'language' => 'Language Select',
'profile_photo' => 'Profile Photo',
'save_btn' => 'Save',
'cancel_btn' => 'Cancel',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/user/notification.php | lang/en/user/notification.php | <?php
return [
'message' => 'Message',
'date' => 'Date',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/user/my-lesson.php | lang/en/user/my-lesson.php | <?php
return [
'lesson_category' => 'Lesson Category',
'select' => 'Select',
'title' => 'Title',
'attend_class' => 'Attend Class',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/manager/company.php | lang/en/manager/company.php | <?php
return [
'name' => 'Company Name',
'tax_no' => 'Tax Number',
'email' => 'Email',
'website' => 'Website',
'phone' => 'Phone',
'country' => 'Country',
'city' => 'City',
'state' => 'State',
'address' => 'Address',
'zipcode' => 'Zip Code',
'logo' => 'Logo',
'select' => 'Select',
'save_btn' => 'Save',
'cancel_btn' => 'Cancel',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/manager/menu.php | lang/en/manager/menu.php | <?php
return [
'home' => 'Home',
'dashboard' => 'Dashboard',
'manager_panel' => 'Manager Panel',
'trainee_transactions' => 'Trainee Transactions',
'new_trainee' => 'New Trainee Create',
'edit_trainee' => 'Edit Trainee',
'new_trainee_excel' => 'Add Trainees with Excel',
'trainee_list' => 'Trainee List',
'trainee_report' => 'Trainee Reports',
'trainee_report_detail' => 'Trainee Report Detail',
'questions' => 'Questions',
'question_bug' => 'Bug Questions',
'question_create' => 'Question Create',
'question_edit' => 'Question Edit',
'class_exams' => 'Class Exams',
'class_exam_create' => 'Class Exam Create',
'live_lesson' => 'Live Lesson',
'live_lesson_create' => 'Live Lesson Create',
'live_lesson_edit' => 'Live Lesson Edit',
'teachers' => 'Teachers',
'teacher_create' => 'Teacher Create',
'teacher_edit' => 'Teacher Edit',
'car_appointment' => 'Car & Appointment',
'appointment_setting' => 'Appointment Setting',
'appointment' => 'Appointments',
'appointment_create' => 'Appointment Create',
'appointment_edit' => 'Appointment Edit',
'car' => 'Cars',
'car_create' => 'Car Create',
'car_edit' => 'Car Edit',
'notifications' => 'Notifications',
'notification_create' => 'Notification Create',
'support' => 'Support',
'profile' => 'Profile',
'profile_edit' => 'Profile Edit',
'company' => 'Company',
'company_edit' => 'Company Edit',
'invoices' => 'Invoices',
'logout' => 'Logout',
'welcome' => 'Welcome',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/manager/support.php | lang/en/manager/support.php | <?php
return [
'tc' => 'TC Identification Number',
'name_surname' => 'Name Surname',
'why' => 'Support Why',
'contact_phone' => 'Contact Phone',
'created_at' => 'Created At',
'transactions' => 'Transactions',
'done_btn' => 'Done',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/manager/profile.php | lang/en/manager/profile.php | <?php
return [
'name' => 'Name',
'surname' => 'Surname',
'email_address' => 'Email Address',
'new_password' => 'New Password',
'new_password_repeat' => 'New Password Repeat',
'phone' => 'Phone',
'address' => 'Address',
'language' => 'Language Select',
'profile_photo' => 'Profile Photo',
'save_btn' => 'Save',
'cancel_btn' => 'Cancel',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/manager/index.php | lang/en/manager/index.php | <?php
return [
'info_payment_success' => 'Time remaining from your active pack : ',
'info_payment_error' => 'Your package has expired. When you make the payment system will be active.',
'pay_btn' => 'Pay',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/manager/notification.php | lang/en/manager/notification.php | <?php
return [
'message' => 'Message',
'status' => 'Status',
'date' => 'Date',
'save_btn' => 'Save',
'cancel_btn' => 'Cancel',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/manager/invoice.php | lang/en/manager/invoice.php | <?php
return [
'number' => 'Invoice Number',
'date' => 'Invoice Date',
'general_total' => 'General Total',
'status' => 'Status',
'transactions' => 'Transactions',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/manager/class_exam.php | lang/en/manager/class_exam.php | <?php
return [
'question_length' => 'Question Length',
'time' => 'Time',
'status' => 'Status',
'transactions' => 'Transactions',
'period' => 'Period',
'month' => 'Month',
'class' => 'Class',
'select' => 'Select',
'save_btn' => 'Save',
'cancel_btn' => 'Cancel',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/manager/teacher/teacher-list.php | lang/en/manager/teacher/teacher-list.php | <?php
return [
'name_surname' => 'Name Surname',
'email_address' => 'Email',
'phone_number' => 'Phone',
'status' => 'Status',
'created_at' => 'Created At',
'transactions' => 'Transactions',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/manager/teacher/teacher-add-edit.php | lang/en/manager/teacher/teacher-add-edit.php | <?php
return [
'tc' => 'TC Identification Number',
'name' => 'Name',
'surname' => 'Surname',
'email' => 'Email',
'password' => 'Password',
'password_repeat' => 'Password Repeat',
'new_password' => 'Password',
'new_password_repeat' => 'Password Repeat',
'phone' => 'Phone',
'address' => 'Address',
'language' => 'Language Select',
'teacher_checkbox' => 'Teacher Active/Passive',
'save_btn' => 'Save',
'cancel_btn' => 'Cancel',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/manager/user/trainee-add-edit.php | lang/en/manager/user/trainee-add-edit.php | <?php
return [
'tc' => 'TC Identification Number',
'name' => 'Name',
'surname' => 'Surname',
'email_address' => 'Email Address',
'password' => 'Password',
'password_repeat' => 'Password Repeat',
'new_password' => 'New Password',
'new_password_repeat' => 'New Password Repeat',
'phone' => 'Phone Number',
'address' => 'Address',
'period' => 'Period',
'month' => 'Month',
'group' => 'Group',
'language' => 'Language',
'profile_photo' => 'Profile Photo',
'status' => 'Trainee Active/Passive',
'save_btn' => 'Save',
'cancel_btn' => 'Cancel',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/lang/en/manager/user/trainee-list.php | lang/en/manager/user/trainee-list.php | <?php
return [
'list_print' => 'Print List',
'name_surname' => 'Name Surname',
'tc' => 'TC Identity Number',
'period' => 'Period',
'month' => 'Month',
'group' => 'Group',
'status' => 'Status',
'transactions' => 'Transactions',
];
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.