搜索
开启左侧

翻译成中文 保留源代码

[复制链接]
猪猪侠 发表于 2024-9-23 15:42:56 | 显示全部楼层 |阅读模式

                            <span class="text-center page-title">Billing Menu</span>
                            <hr>
                            <div id="normalMenu">
                                <div class="row" id="menu"></div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>

        <div class="loading_menu">
            <div class="card loading_card">
                <div class="card-body loading_card-body d-flex justify-content-center flex-column align-items-center">
                    <span class="load"></span>
                    <br>
                    <div class="ldata-txt">Loading Data...</div>
                </div>
            </div>
        </div>

        <div class="invoices_menu">
            <div class="card invoices_card">
                <div class="card-body invoices_card-body">
                    <span class="close-button" id="closeInvoicesMenu"><i class="fas fa-times"></i></span>
                    <div class="row h-100">
                        <div class="col-md-12 section">
                            <span class="text-center page-title">My Invoices</span>
                            <hr>
                            <table id="invoicesTable">
                                <thead>
                                    <tr>
                                        <th class="text-center">#</th>
                                        <th class="text-center">Status</th>
                                        <th class="text-center">Author</th>
                                        <th class="text-center">Amount</th>
                                        <th class="text-center">Actions</th>
                                    </tr>
                                </thead>
                                <tbody id="invoicesTableData"></tbody>
                            </table>
                            <button type="button" class="btn btn-blue" id="view_invoice_payall" data-bs-dismiss="modal">PAY ALL (812.600€)</button>
                        </div>
                    </div>
                </div>
            </div>
        </div>

        <div class="societyinvoices_menu">
            <div class="card societyinvoices_card">
                <div class="card-body societyinvoices_card-body">
                    <span class="close-button" id="closeSocietyInvoicesMenu"><i class="fas fa-times"></i></span>
                    <div class="row h-100">
                        <div class="col-md-12 section">
                            <span class="text-center page-title">Society Invoices</span>
                            <hr>
                            <div class="pendingdiv">
                                Pending: <span id="totalpending_value">0</span></span>
                            </div>
                            <table id="societyInvoicesTable">
                                <thead>
                                    <tr>
                                        <th class="text-center">#</th>
                                        <th class="text-center">Status</th>
                                        <th class="text-center">Author</th>
                                        <th class="text-center">Amount</th>
                                        <th class="text-center">Actions</th>
                                    </tr>
                                </thead>
                                <tbody id="societyInvoicesTableData">
                                    
                                </tbody>
                            </table>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <div class="cityinvoices_menu">
            <div class="card cityinvoices_card">
                <div class="card-body cityinvoices_card-body">
                    <span class="close-button" id="closeCityInvoicesMenu"><i class="fas fa-times"></i></span>
                    <div class="row h-100">
                        <div class="col-md-12 section">
                            <span class="text-center page-title">City Invoices</span>
                            <hr>
                            <table id="courtTable">
                                <thead>
                                    <tr>
                                        <th class="text-center">#</th>
                                        <th class="text-center">Status</th>
                                        <th class="text-center">Author</th>
                                        <th class="text-center">Amount</th>
                                        <th class="text-center">Actions</th>
                                    </tr>
                                </thead>
                                <tbody id="courtTableData">
                                    
                                </tbody>
                            </table>
                        </div>
                    </div>
                </div>
            </div>
        </div>

        <div class="createinvoice_menu">
            <div class="card createinvoice_card">
                <div class="card-body createinvoice_card-body">
                    <span class="close-button" id="closeCreateInvoiceMenu"><i class="fas fa-times"></i></span>
                    <div class="row h-100">
                        <div class="col-md-12 section">
                            <span class="text-center page-title">Create Invoice</span>
                            <hr>
                            <div id="invoiceNormal">
                                <div id="createinvoice_options">
                                    <input type="text" id="normal_createinvoice_item" class="form-control" placeholder="Item" onkeyup="checkIfEmpty()">
                                    <input type="number" id="normal_createinvoice_price" class="form-control mt-3" placeholder="Amount" onkeyup="checkIfEmpty()">
                                    <input type="text" id="normal_createinvoice_note" maxlength="255" class="form-control mt-3" placeholder="Note" onkeyup="checkIfEmpty()">
                                </div>
                            </div>
                            <div id="invoiceBillsList">
                                <div class="d-flex" id="invoicesFirstMenu">
                                    <button type="button" class="btn btn-blue w-50 me-2 ci-option">JOB</button>
                                    <button type="button" id="openCustomInvoice" class="btn btn-odark w-50 ms-2 ci-option">PERSONAL</button>
                                </div>
                                <div id="createinvoice_options" class="mt-3">
                                    <select name="stp_item" id="stp_item" class="form-select">
                                    </select>
                                    <input type="number" id="bill_createinvoice_price" readonly class="form-control mt-3" placeholder="Amount">
                                    <input type="text" id="bill_createinvoice_note" maxlength="255" class="form-control mt-3" placeholder="Note" onkeyup="checkIfEmpty()">
                                </div>
                            </div>
                            <div id="invoiceCustom">
                                <div class="d-flex" id="invoicesSecondMenu">
                                    <button type="button" id="openBillsListInvoice" class="btn btn-odark w-50 me-2 ci-option">JOB</button>
                                    <button type="button" class="btn btn-blue w-50 ms-2 ci-option">PERSONAL</button>
                                </div>
                                <div id="createinvoice_options" class="mt-3">
                                    <input type="text" id="custom_createinvoice_item" class="form-control" placeholder="Item" onkeyup="checkIfEmpty()">
                                    <input type="text" id="custom_createinvoice_price" class="form-control mt-3" placeholder="Amount" onkeyup="checkIfEmpty()">
                                    <input type="text" id="custom_createinvoice_note" maxlength="255" class="form-control mt-3" placeholder="Note" onkeyup="checkIfEmpty()">
                                </div>
                            </div>
                            <div class="d-flex justify-content-center mt-3">
                                <button type="button" class="btn btn-blue w-100" disabled id="createinvoice">CREATE</button>


回复 论坛版权

使用道具 举报

ChatGPT 发表于 2024-9-23 15:43:01 | 显示全部楼层
翻译如下:
账单菜单
                            
                            
                                
                                
                        
                    
                
            
        


        
            
                
                    
                    
                    正在加载数据...
                
            
        


        
            
                
                    
                    
                        
                            我的发票
                            
                            
                                
                                    
                                        #
                                        状态
                                        作者
                                        金额
                                        操作
                                    
    
                                
            
                            支付全部 (812.600€)
                        
                    
                
            
        


        
            
                
                    
                    
                        
                            社会发票
                            
                            
                                待处理: 0€
                            
                            
                                
                                    
                                        #
                                        状态
                                        作者
                                        金额
                                        操作
                                    
    
                                
            
                                    
    
                        
                    
                
            
        
        
            
                
                    
                    
                        
                            城市发票
                            
                            
                                
                                    
                                        #
                                        状态
                                        作者
                                        金额
                                        操作
                                    
    
                                
            
                                    
    
                        
                    
                
            
        


        
            
                
                    
                    
                        
                            创建发票
                            
                            
                                
                                    
                                    
                                    
                                
                            
                            
                                
                                    工作
                                    个人
                                
                                
    
                                    
                                    
                                    
                                
                            
                            
                                
                                    工作
                                    个人
                                
                                
    
                                    
                                    
                                    
                                
                            
                            
                                创建

请注意,以上翻译保留了源代码的格式。
回复

使用道具 举报

文明发言,和谐互动
文明发言,和谐互动
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|首页 ( 冀ICP备2021005225号-1 ) |网站地图

GMT+8, 2025-2-9 02:22 , Processed in 0.130567 second(s), 9 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

© 2001-2013 ELITE论坛【技术无价-分享快乐】

快速回复 返回顶部 返回列表